@zeniai/web-components 4.1.40 → 4.1.41-betaAK1
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/{SessionTimeoutPopup-CkH-hPbZ.cjs → SessionTimeoutPopup-D6HvNkd5.cjs} +15303 -14329
- package/dist/{SessionTimeoutPopup-CnaGjerj.js → SessionTimeoutPopup-DYgosay6.js} +79438 -76095
- package/dist/appLocale.d.ts +198 -0
- package/dist/assets/illustrative/no-search-result.svg +24 -0
- package/dist/cockpit.cjs.js +2 -2
- package/dist/cockpit.esm.js +255 -251
- package/dist/components/cockpit/common/cockpitFilters/commonTypes.d.ts +1 -1
- package/dist/components/common/StyledCapsule.d.ts +1 -1
- package/dist/components/{cockpit/common/cockpitFilters/components → common/filters}/FiltersPopover.d.ts +1 -1
- package/dist/components/common/filters/GenericFilters.d.ts +75 -0
- package/dist/components/common/filters/components/GenericFiltersSelection.d.ts +58 -0
- package/dist/components/common/filters/genericFilterTypes.d.ts +62 -0
- package/dist/components/common/listPageSearchInputBox/ListPageSearchInputBox.d.ts +3 -1
- package/dist/components/common/listPageSearchSection/ListPageSearchSection.d.ts +13 -0
- package/dist/components/expenseAutomation/ExpenseAutomationPage.d.ts +19 -1
- package/dist/components/expenseAutomation/components/EmptyTableSection.d.ts +6 -0
- package/dist/components/expenseAutomation/components/ExpenseAutomationSubTabSwitcher.d.ts +17 -0
- package/dist/components/expenseAutomation/components/NavBarWithHeader.d.ts +21 -1
- package/dist/components/expenseAutomation/components/TableSection.d.ts +2 -1
- package/dist/components/expenseAutomation/components/filters/AmountFilterValueField.d.ts +8 -0
- package/dist/components/expenseAutomation/components/filters/AmountMatchingOperatorDropdown.d.ts +8 -0
- package/dist/components/expenseAutomation/components/filters/TransactionFiltersComponent.d.ts +17 -0
- package/dist/components/expenseAutomation/components/filters/amountFilterConstants.d.ts +19 -0
- package/dist/components/expenseAutomation/components/filters/transactionFiltersHelpers.d.ts +24 -0
- package/dist/components/expenseAutomation/components/navbarHeaderData.d.ts +2 -2
- package/dist/components/expenseAutomation/sections/missingReceipts/MissingReceiptsPage.d.ts +6 -0
- package/dist/components/expenseAutomation/sections/transactionCategorization/transactionCategorizationCompletedSubTabs.d.ts +7 -0
- package/dist/components/formElements/filterValuesDropdownField/FilterValuesDropdownField.d.ts +5 -14
- package/dist/components/spendManagement/autoTransferRules/AutoTransferRulePage.d.ts +7 -1
- package/dist/components/spendManagement/cashManagement/AutoSweepFlow.d.ts +50 -0
- package/dist/components/spendManagement/cashManagement/AutoSweepReviewPage.d.ts +43 -0
- package/dist/components/spendManagement/cashManagement/AutoSweepSetupPage.d.ts +117 -0
- package/dist/components/spendManagement/cashManagement/CashManagementBanner.d.ts +20 -0
- package/dist/components/spendManagement/cashManagement/CashManagementNavCTA.d.ts +14 -0
- package/dist/components/spendManagement/cashManagement/CashOverview.d.ts +53 -0
- package/dist/components/spendManagement/cashManagement/OutflowSection.d.ts +8 -0
- package/dist/components/spendManagement/cashManagement/SweepAmountCard.d.ts +11 -0
- package/dist/components/spendManagement/cashManagement/SweepFlowRow.d.ts +29 -0
- package/dist/components/spendManagement/common/filters/spendManagementFiltersHelpers.d.ts +1 -1
- package/dist/components/spendManagement/treasury/TreasuryNavBarPieces.d.ts +2 -1
- package/dist/components/spendManagement/treasury/TreasuryOverviewPage.d.ts +8 -0
- package/dist/components/spendManagement/zeniAccounts/ZeniAccountHelper.d.ts +10 -1
- package/dist/components/spendManagement/zeniAccounts/ZeniAccountListViewPage.d.ts +9 -1
- package/dist/components/spendManagement/zeniAccounts/ZeniAccountNavBarPieces.d.ts +2 -1
- package/dist/components/transactionDetail/items/TransactionLineWithAccountAndClass.d.ts +3 -2
- package/dist/context/featureProvider/FeatureGateNameConstants.d.ts +4 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +10 -0
- package/dist/index.esm.js +283 -279
- package/dist/strings/strings.d.ts +198 -0
- package/package.json +11 -8
- package/dist/components/common/skeletons/StatementListSkeleton.d.ts +0 -5
|
@@ -83,10 +83,13 @@ export declare const zeniStrings: {
|
|
|
83
83
|
unreview: string;
|
|
84
84
|
download: string;
|
|
85
85
|
search: string;
|
|
86
|
+
searchShortcutCmd: string;
|
|
87
|
+
searchShortcutCtrl: string;
|
|
86
88
|
delete: string;
|
|
87
89
|
reload: string;
|
|
88
90
|
goHome: string;
|
|
89
91
|
refresh: string;
|
|
92
|
+
filter: string;
|
|
90
93
|
name: string;
|
|
91
94
|
select: string;
|
|
92
95
|
goBack: string;
|
|
@@ -7199,6 +7202,156 @@ export declare const zeniStrings: {
|
|
|
7199
7202
|
termsLink: string;
|
|
7200
7203
|
};
|
|
7201
7204
|
};
|
|
7205
|
+
cashManagement: {
|
|
7206
|
+
navCTA: {
|
|
7207
|
+
label: string;
|
|
7208
|
+
ariaLabel: string;
|
|
7209
|
+
};
|
|
7210
|
+
banner: {
|
|
7211
|
+
notSetUp: {
|
|
7212
|
+
moveToTreasuryPrefix: string;
|
|
7213
|
+
moveToTreasurySuffix: string;
|
|
7214
|
+
toEarnPrefix: string;
|
|
7215
|
+
toEarnSuffix: string;
|
|
7216
|
+
approxPrefix: string;
|
|
7217
|
+
recommended: string;
|
|
7218
|
+
setUpAutoSweep: string;
|
|
7219
|
+
bufferIntroPrefix: string;
|
|
7220
|
+
bufferIntroAboveBuffer: string;
|
|
7221
|
+
bufferIntroSuffix: string;
|
|
7222
|
+
payrollProjectionPrefix: string;
|
|
7223
|
+
payrollProjectionAmountOpen: string;
|
|
7224
|
+
payrollProjectionAmountClose: string;
|
|
7225
|
+
payrollProjectionSuffix: string;
|
|
7226
|
+
ourAgentWill: string;
|
|
7227
|
+
features: {
|
|
7228
|
+
minimum: string;
|
|
7229
|
+
detect: string;
|
|
7230
|
+
consolidate: string;
|
|
7231
|
+
sweep: string;
|
|
7232
|
+
};
|
|
7233
|
+
};
|
|
7234
|
+
inProgress: {
|
|
7235
|
+
titlePrefix: string;
|
|
7236
|
+
titleSuffix: string;
|
|
7237
|
+
initiatedPrefix: string;
|
|
7238
|
+
pendingBadge: string;
|
|
7239
|
+
};
|
|
7240
|
+
complete: {
|
|
7241
|
+
titlePrefix: string;
|
|
7242
|
+
titleSuffix: string;
|
|
7243
|
+
completeBadge: string;
|
|
7244
|
+
nextAutoSweepPrefix: string;
|
|
7245
|
+
};
|
|
7246
|
+
footer: {
|
|
7247
|
+
frequencyPrefix: string;
|
|
7248
|
+
defaultFrequencyLabel: string;
|
|
7249
|
+
defaultEstimatedDaysLabel: string;
|
|
7250
|
+
dotSeparator: string;
|
|
7251
|
+
};
|
|
7252
|
+
};
|
|
7253
|
+
sweepAmountCard: {
|
|
7254
|
+
title: string;
|
|
7255
|
+
coversLabel: string;
|
|
7256
|
+
sweepFrequencyLabel: string;
|
|
7257
|
+
daysSuffix: string;
|
|
7258
|
+
payrollAndBillsPrefix: string;
|
|
7259
|
+
payrollAndBillsSuffix: string;
|
|
7260
|
+
};
|
|
7261
|
+
sweepFlowRow: {
|
|
7262
|
+
moveFundsFrom: string;
|
|
7263
|
+
to: string;
|
|
7264
|
+
treasury: string;
|
|
7265
|
+
bubbleMorePrefix: string;
|
|
7266
|
+
};
|
|
7267
|
+
setupPage: {
|
|
7268
|
+
title: string;
|
|
7269
|
+
askAiCfo: string;
|
|
7270
|
+
sourceAccountsHeader: string;
|
|
7271
|
+
sweepAmountHeader: string;
|
|
7272
|
+
primaryAccount: string;
|
|
7273
|
+
descriptionPrefix: string;
|
|
7274
|
+
descriptionSuffix: string;
|
|
7275
|
+
riskLabel: string;
|
|
7276
|
+
riskAdditional: string;
|
|
7277
|
+
memoLabel: string;
|
|
7278
|
+
memoPlaceholder: string;
|
|
7279
|
+
frequencyLabel: string;
|
|
7280
|
+
frequencyAdditionalPrefix: string;
|
|
7281
|
+
bufferAmountSuffix: string;
|
|
7282
|
+
cancel: string;
|
|
7283
|
+
reviewSweep: string;
|
|
7284
|
+
viewMore: string;
|
|
7285
|
+
viewLess: string;
|
|
7286
|
+
riskOptions: {
|
|
7287
|
+
low: string;
|
|
7288
|
+
moderate: string;
|
|
7289
|
+
high: string;
|
|
7290
|
+
};
|
|
7291
|
+
frequencyOptions: {
|
|
7292
|
+
daily: string;
|
|
7293
|
+
weekly: string;
|
|
7294
|
+
biweekly: string;
|
|
7295
|
+
monthly: string;
|
|
7296
|
+
};
|
|
7297
|
+
};
|
|
7298
|
+
reviewPage: {
|
|
7299
|
+
title: string;
|
|
7300
|
+
askAiCfo: string;
|
|
7301
|
+
descriptionPrefix: string;
|
|
7302
|
+
descriptionMiddle: string;
|
|
7303
|
+
descriptionSuffix: string;
|
|
7304
|
+
defaultEstimatedDaysLabel: string;
|
|
7305
|
+
safetyCheck: string;
|
|
7306
|
+
risk: string;
|
|
7307
|
+
bufferCushion: string;
|
|
7308
|
+
bufferCushionPrefix: string;
|
|
7309
|
+
bufferCushionSuffix: string;
|
|
7310
|
+
operatingBalance: string;
|
|
7311
|
+
minimumRequired: string;
|
|
7312
|
+
edit: string;
|
|
7313
|
+
confirmSweep: string;
|
|
7314
|
+
disclaimer: string;
|
|
7315
|
+
bufferAmountWrapPrefix: string;
|
|
7316
|
+
bufferAmountWrapSuffix: string;
|
|
7317
|
+
riskLabels: {
|
|
7318
|
+
low: string;
|
|
7319
|
+
moderate: string;
|
|
7320
|
+
high: string;
|
|
7321
|
+
};
|
|
7322
|
+
};
|
|
7323
|
+
overview: {
|
|
7324
|
+
title: string;
|
|
7325
|
+
tabs: {
|
|
7326
|
+
overview: string;
|
|
7327
|
+
autoTransferRules: string;
|
|
7328
|
+
};
|
|
7329
|
+
emptyAutoTransferRules: string;
|
|
7330
|
+
totalCash: string;
|
|
7331
|
+
cashBalance: string;
|
|
7332
|
+
treasury: string;
|
|
7333
|
+
cashFlow: string;
|
|
7334
|
+
outflows: string;
|
|
7335
|
+
inflows: string;
|
|
7336
|
+
cashBalanceProjection: string;
|
|
7337
|
+
legend: {
|
|
7338
|
+
expectedInflow: string;
|
|
7339
|
+
expectedOutflow: string;
|
|
7340
|
+
safetyBuffer: string;
|
|
7341
|
+
};
|
|
7342
|
+
bufferLabelPrefix: string;
|
|
7343
|
+
granularity: {
|
|
7344
|
+
daily: string;
|
|
7345
|
+
weekly: string;
|
|
7346
|
+
monthly: string;
|
|
7347
|
+
};
|
|
7348
|
+
outflowSection: {
|
|
7349
|
+
outflow: string;
|
|
7350
|
+
paymentDate: string;
|
|
7351
|
+
amount: string;
|
|
7352
|
+
};
|
|
7353
|
+
};
|
|
7354
|
+
};
|
|
7202
7355
|
};
|
|
7203
7356
|
taskManagement: {
|
|
7204
7357
|
common: {
|
|
@@ -8496,6 +8649,11 @@ export declare const zeniStrings: {
|
|
|
8496
8649
|
completed: string;
|
|
8497
8650
|
autoCategorized: string;
|
|
8498
8651
|
};
|
|
8652
|
+
completedSubTabs: {
|
|
8653
|
+
all: string;
|
|
8654
|
+
aiAccountant: string;
|
|
8655
|
+
manual: string;
|
|
8656
|
+
};
|
|
8499
8657
|
subTitles: {
|
|
8500
8658
|
review: {
|
|
8501
8659
|
item1: {
|
|
@@ -8530,6 +8688,46 @@ export declare const zeniStrings: {
|
|
|
8530
8688
|
title: string;
|
|
8531
8689
|
subTitle: string;
|
|
8532
8690
|
};
|
|
8691
|
+
emptyStates: {
|
|
8692
|
+
noSearchResults: {
|
|
8693
|
+
title: string;
|
|
8694
|
+
subTitle: string;
|
|
8695
|
+
};
|
|
8696
|
+
};
|
|
8697
|
+
filters: {
|
|
8698
|
+
categoryLabels: {
|
|
8699
|
+
paymentAccountName: string;
|
|
8700
|
+
paymentAccountType: string;
|
|
8701
|
+
payee: string;
|
|
8702
|
+
category: string;
|
|
8703
|
+
class: string;
|
|
8704
|
+
amount: string;
|
|
8705
|
+
};
|
|
8706
|
+
amountOperators: {
|
|
8707
|
+
lessThan: string;
|
|
8708
|
+
greaterThan: string;
|
|
8709
|
+
isEqual: string;
|
|
8710
|
+
inBetween: string;
|
|
8711
|
+
placeholder: string;
|
|
8712
|
+
};
|
|
8713
|
+
amountInputPlaceholders: {
|
|
8714
|
+
enterAmount: string;
|
|
8715
|
+
from: string;
|
|
8716
|
+
to: string;
|
|
8717
|
+
};
|
|
8718
|
+
filterOptions: {
|
|
8719
|
+
transactionAmountOptions: {
|
|
8720
|
+
label: string;
|
|
8721
|
+
value: string;
|
|
8722
|
+
}[];
|
|
8723
|
+
transactionTypeOptions: {
|
|
8724
|
+
label: string;
|
|
8725
|
+
value: string;
|
|
8726
|
+
}[];
|
|
8727
|
+
};
|
|
8728
|
+
selectPaymentAccountNamePlaceholder: string;
|
|
8729
|
+
searchForPayeePlaceholder: string;
|
|
8730
|
+
};
|
|
8533
8731
|
addCategory: string;
|
|
8534
8732
|
addClass: string;
|
|
8535
8733
|
addProject: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/web-components",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.41-betaAK1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"@statsig/react-bindings": "^3.14.0",
|
|
50
50
|
"@stripe/react-stripe-js": "^2.7.3",
|
|
51
51
|
"@stripe/stripe-js": "^4.4.0",
|
|
52
|
-
"@zeniai/client-analytics": "2.0.
|
|
53
|
-
"@zeniai/client-epic-state": "5.0.
|
|
52
|
+
"@zeniai/client-analytics": "2.0.19",
|
|
53
|
+
"@zeniai/client-epic-state": "5.0.77-betaAK1",
|
|
54
54
|
"autosuggest-highlight": "^3.2.1",
|
|
55
55
|
"browser-image-compression": "^2.0.2",
|
|
56
56
|
"countries-list": "^2.6.1",
|
|
@@ -208,8 +208,8 @@
|
|
|
208
208
|
"@types/color": "^3.0.2",
|
|
209
209
|
"@types/react-select": "^4.0.18",
|
|
210
210
|
"@types/react-window": "^1.8.8",
|
|
211
|
-
"@zeniai/client-analytics": "2.0.
|
|
212
|
-
"@zeniai/client-epic-state": "5.0.
|
|
211
|
+
"@zeniai/client-analytics": "2.0.19",
|
|
212
|
+
"@zeniai/client-epic-state": "5.0.77",
|
|
213
213
|
"color": "^3.1.3",
|
|
214
214
|
"react": "18.3.1",
|
|
215
215
|
"react-dom": "18.3.1",
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"scripts": {
|
|
249
249
|
"clean": "rimraf build",
|
|
250
250
|
"build-stories": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit",
|
|
251
|
-
"test": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit && bash ./scripts/test-storybook-watch.sh",
|
|
251
|
+
"test": "export NODE_OPTIONS=--max-old-space-size=8192 && pnpm lint-modified-files && tsc --noEmit && bash ./scripts/test-storybook-watch.sh",
|
|
252
252
|
"test-all": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit && test-storybook --updateSnapshot --maxWorkers 2 --testTimeout 30000",
|
|
253
253
|
"test-modified-files": "export NODE_OPTIONS=--max-old-space-size=8192 && chmod +x ./scripts/track_modified_files.sh && ./scripts/track_modified_files.sh && pnpm test && pnpm format-watch",
|
|
254
254
|
"storybook": "export NODE_OPTIONS=--max-old-space-size=8192 && storybook dev -p 6006",
|
|
@@ -256,8 +256,11 @@
|
|
|
256
256
|
"circular-dependency": "npx madge --circular --extensions ts ./src",
|
|
257
257
|
"lint": "export NODE_OPTIONS=--max-old-space-size=8192 && time eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
|
|
258
258
|
"lint:fix": "chmod +x ./scripts/fix-lint.sh && ./scripts/fix-lint.sh",
|
|
259
|
-
"lint
|
|
260
|
-
"
|
|
259
|
+
"lint-modified-files": "chmod +x ./scripts/lint-modified-files.sh && ./scripts/lint-modified-files.sh",
|
|
260
|
+
"lint:fix-modified-files": "chmod +x ./scripts/lint-modified-files.sh && LINT_FIX=true ./scripts/lint-modified-files.sh",
|
|
261
|
+
"tsc-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && ./scripts/tsc-modified-files.sh",
|
|
262
|
+
"typecheck": "tsc --noEmit",
|
|
263
|
+
"build": "export NODE_OPTIONS=--max-old-space-size=8192 && pnpm lint-modified-files && pnpm tsc-modified-files && vite build",
|
|
261
264
|
"format": "prettier --write --ignore-unknown \"src/**/*\" && pnpm lint",
|
|
262
265
|
"format-watch": "(git diff --name-only --diff-filter=ACM && git ls-files --others --exclude-standard) | grep -E '\\.(ts|tsx|js)$' | xargs prettier --write || true",
|
|
263
266
|
"format-staged": "git diff --cached --name-only --diff-filter=ACM | grep -E '\\.(ts|tsx|js)$' | xargs prettier --write || true",
|