@entropy-softworks/ui 2026.8.35 → 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/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 +5 -1
- package/lib/services/auth.service.d.ts.map +1 -1
- package/lib/services/auth.service.js +5 -1
- 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 +13 -2
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared product demos.
|
|
3
|
+
*
|
|
4
|
+
* Deliberately its own entry point rather than part of the root barrel: these
|
|
5
|
+
* are large, sample-data-driven recreations that only the marketing site and a
|
|
6
|
+
* couple of unauthenticated screens want, and pulling them into every consumer
|
|
7
|
+
* of `@entropy-softworks/ui` would put a thousand lines of demo in every app
|
|
8
|
+
* bundle that imports a Button.
|
|
9
|
+
*/
|
|
10
|
+
export {
|
|
11
|
+
ExtensionPopup,
|
|
12
|
+
EXTENSION_POPUP_HEIGHT,
|
|
13
|
+
EXTENSION_POPUP_MIN_HEIGHT,
|
|
14
|
+
EXTENSION_POPUP_WIDTH,
|
|
15
|
+
// Internals the marketing site's other scenes compose with, exported so
|
|
16
|
+
// there is exactly one copy of each rather than a second set on that side.
|
|
17
|
+
favicon,
|
|
18
|
+
FieldRow,
|
|
19
|
+
host,
|
|
20
|
+
ItemDetail,
|
|
21
|
+
ItemIcon,
|
|
22
|
+
ITEMS,
|
|
23
|
+
RingCountdown,
|
|
24
|
+
SORT_OPTIONS,
|
|
25
|
+
totpCode,
|
|
26
|
+
useCopy,
|
|
27
|
+
useInk,
|
|
28
|
+
useTotp,
|
|
29
|
+
VaultItemRow,
|
|
30
|
+
VaultList,
|
|
31
|
+
VaultMark,
|
|
32
|
+
vaultVars,
|
|
33
|
+
type Account,
|
|
34
|
+
type ExtensionPopupController,
|
|
35
|
+
type ExtRoute,
|
|
36
|
+
type Item,
|
|
37
|
+
type Tag,
|
|
38
|
+
} from "./extension-popup";
|