@entropy-softworks/ui 2026.8.34 → 2026.8.36
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/CHANGELOG.md +30 -0
- package/lib/components/auth/PasswordStrengthMeter.d.ts +9 -0
- package/lib/components/auth/PasswordStrengthMeter.d.ts.map +1 -1
- package/lib/components/auth/PasswordStrengthMeter.jsx +10 -4
- package/lib/components/auth/PasswordStrengthMeter.jsx.map +1 -1
- package/lib/components/profile/SecurityTab.d.ts +5 -1
- package/lib/components/profile/SecurityTab.d.ts.map +1 -1
- package/lib/components/profile/SecurityTab.jsx.map +1 -1
- package/lib/components/segmented-toggle.d.ts +9 -0
- package/lib/components/segmented-toggle.d.ts.map +1 -1
- package/lib/components/segmented-toggle.jsx +4 -0
- package/lib/components/segmented-toggle.jsx.map +1 -1
- package/lib/components/social-connections.d.ts +22 -5
- package/lib/components/social-connections.d.ts.map +1 -1
- package/lib/components/social-connections.jsx +37 -11
- package/lib/components/social-connections.jsx.map +1 -1
- package/lib/context/AppConfigContext.d.ts +27 -0
- package/lib/context/AppConfigContext.d.ts.map +1 -1
- package/lib/context/AppConfigContext.jsx.map +1 -1
- package/lib/demos/extension-popup.d.ts +212 -0
- package/lib/demos/extension-popup.d.ts.map +1 -0
- package/lib/demos/extension-popup.jsx +1172 -0
- package/lib/demos/extension-popup.jsx.map +1 -0
- package/lib/demos/index.d.ts +11 -0
- package/lib/demos/index.d.ts.map +1 -0
- package/lib/demos/index.js +14 -0
- package/lib/demos/index.js.map +1 -0
- package/lib/screens/auth/AuthScreen.d.ts +75 -1
- package/lib/screens/auth/AuthScreen.d.ts.map +1 -1
- package/lib/screens/auth/AuthScreen.jsx +356 -122
- package/lib/screens/auth/AuthScreen.jsx.map +1 -1
- package/lib/services/auth.service.d.ts +41 -1
- package/lib/services/auth.service.d.ts.map +1 -1
- package/lib/services/auth.service.js +53 -7
- package/lib/services/auth.service.js.map +1 -1
- package/package.json +7 -1
- package/src/components/auth/PasswordStrengthMeter.tsx +25 -3
- package/src/components/profile/SecurityTab.tsx +11 -1
- package/src/components/segmented-toggle.tsx +13 -0
- package/src/components/social-connections.tsx +66 -20
- package/src/context/AppConfigContext.tsx +27 -0
- package/src/demos/extension-popup.tsx +2051 -0
- package/src/demos/index.ts +38 -0
- package/src/screens/auth/AuthScreen.tsx +701 -312
- package/src/services/auth.service.ts +62 -8
|
@@ -34,6 +34,17 @@ export type LogoComponent = React.ComponentType<{
|
|
|
34
34
|
*/
|
|
35
35
|
color?: string;
|
|
36
36
|
style?: StyleProp<ViewStyle> | StyleProp<ImageStyle>;
|
|
37
|
+
/**
|
|
38
|
+
* Render the mark flush to its box, without whatever internal padding it
|
|
39
|
+
* normally carries.
|
|
40
|
+
*
|
|
41
|
+
* A mark usually bakes in breathing room so it drops into arbitrary layouts
|
|
42
|
+
* safely. In a lockup that padding fights the layout instead: the caller is
|
|
43
|
+
* already controlling the gap, and the baked margin makes the mark read as
|
|
44
|
+
* smaller than the text it is supposed to match. Logos that have no internal
|
|
45
|
+
* padding can ignore this.
|
|
46
|
+
*/
|
|
47
|
+
bleed?: boolean;
|
|
37
48
|
}>;
|
|
38
49
|
|
|
39
50
|
export interface AppConfig {
|
|
@@ -48,6 +59,22 @@ export interface AppConfig {
|
|
|
48
59
|
* a generic "An Entropy Softworks platform".
|
|
49
60
|
*/
|
|
50
61
|
tagline?: string;
|
|
62
|
+
/**
|
|
63
|
+
* How to set the tagline against the app name. Omit for the default: stacked
|
|
64
|
+
* centred underneath, no rule.
|
|
65
|
+
*
|
|
66
|
+
* "inline" — same line, pipe-separated: `Vault | Password Manager`
|
|
67
|
+
* "ruled" — under the name, hairline rule between the two
|
|
68
|
+
* "lockup" — logo to the LEFT of the name and tagline stacked, with the
|
|
69
|
+
* mark sized to the height of those two lines together. The
|
|
70
|
+
* conventional app lockup, and the tidiest option when the
|
|
71
|
+
* tagline is a short category label.
|
|
72
|
+
*
|
|
73
|
+
* `"inline"` and `"lockup"` both need an app-name text to set against, so a
|
|
74
|
+
* `logoIsWordmark` mark — which renders alone at its natural width — falls
|
|
75
|
+
* back to `"ruled"`.
|
|
76
|
+
*/
|
|
77
|
+
taglineLayout?: "inline" | "ruled" | "lockup";
|
|
51
78
|
/**
|
|
52
79
|
* Optional terms-of-service markdown / plain text. Welcome screen and
|
|
53
80
|
* the dedicated terms screen render this. When omitted, the screens
|