nucleus-core-ts 0.9.150 → 0.9.153

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.
@@ -897,7 +897,7 @@ export function VerificationFlowPage({ entityName, title, subtitle, flowListActi
897
897
  strokeWidth: "1.5",
898
898
  strokeLinecap: "round",
899
899
  strokeLinejoin: "round",
900
- className: "text-white/20 group-hover:text-white/40 transition-colors mb-3",
900
+ className: theme.flowList.createButtonIcon,
901
901
  "aria-hidden": "true",
902
902
  children: [
903
903
  /*#__PURE__*/ _jsx("title", {
@@ -912,7 +912,7 @@ export function VerificationFlowPage({ entityName, title, subtitle, flowListActi
912
912
  ]
913
913
  }),
914
914
  /*#__PURE__*/ _jsx("span", {
915
- className: "text-[12px] font-medium text-white/30 group-hover:text-white/50 transition-colors",
915
+ className: theme.flowList.createButtonText,
916
916
  children: "Create New Flow"
917
917
  })
918
918
  ]
@@ -157,6 +157,8 @@ export type VerificationFlowPageTheme = {
157
157
  container: string;
158
158
  grid: string;
159
159
  createButton: string;
160
+ createButtonIcon: string;
161
+ createButtonText: string;
160
162
  card: {
161
163
  container: string;
162
164
  header: string;
@@ -157,6 +157,8 @@ export const verificationFlowPageTheme = {
157
157
  container: 'flex-1 overflow-auto p-6',
158
158
  grid: 'grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 max-w-6xl mx-auto',
159
159
  createButton: 'group flex flex-col items-center justify-center rounded-xl border-2 border-dashed border-white/[0.08] bg-white/[0.02] p-8 min-h-[180px] cursor-pointer hover:border-white/[0.15] hover:bg-white/[0.04] transition-all',
160
+ createButtonIcon: 'text-white/20 group-hover:text-white/40 transition-colors mb-3',
161
+ createButtonText: 'text-[12px] font-medium text-white/30 group-hover:text-white/50 transition-colors',
160
162
  card: {
161
163
  container: 'rounded-xl border border-white/[0.06] bg-white/[0.02] p-5 hover:bg-white/[0.04] hover:border-white/[0.1] transition-all group cursor-pointer',
162
164
  header: 'flex items-start justify-between gap-3 mb-3',
@@ -330,7 +332,9 @@ export const verificationFlowPageLightTheme = {
330
332
  flowList: {
331
333
  container: 'flex-1 overflow-auto p-6',
332
334
  grid: 'grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 max-w-6xl mx-auto',
333
- createButton: 'group flex flex-col items-center justify-center rounded-xl border-2 border-dashed border-gray-200 bg-gray-50 p-8 min-h-[180px] cursor-pointer hover:border-gray-300 hover:bg-gray-100 transition-all',
335
+ createButton: 'group flex flex-col items-center justify-center rounded-xl border-2 border-dashed border-gray-300 bg-gray-50 p-8 min-h-[180px] cursor-pointer hover:border-gray-400 hover:bg-gray-100 transition-all',
336
+ createButtonIcon: 'text-gray-400 group-hover:text-gray-600 transition-colors mb-3',
337
+ createButtonText: 'text-[12px] font-medium text-gray-500 group-hover:text-gray-700 transition-colors',
334
338
  card: {
335
339
  container: 'rounded-xl border border-gray-200 bg-white p-5 hover:bg-gray-50 hover:border-gray-300 transition-all group cursor-pointer shadow-sm',
336
340
  header: 'flex items-start justify-between gap-3 mb-3',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nucleus-core-ts",
3
- "version": "0.9.150",
3
+ "version": "0.9.153",
4
4
  "description": "Production-ready, enterprise-grade TypeScript framework for building multi-tenant APIs",
5
5
  "author": "Hidayet Can Özcan <hidayetcan@gmail.com>",
6
6
  "license": "SEE LICENSE IN LICENSE",