@stridge/kit 0.1.0-alpha.6 → 0.1.0-alpha.61
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/README.md +22 -6
- package/dist/KitProvider.d.ts +40 -0
- package/dist/KitProvider.js +1 -1
- package/dist/_internal/activity/driver/index.d.ts +3 -0
- package/dist/_internal/activity/driver/index.js +1 -0
- package/dist/_internal/deposit/driver/index.d.ts +3 -3
- package/dist/_internal/drivers/stridge/index.d.ts +4 -2
- package/dist/_internal/drivers/stridge/index.js +1 -1
- package/dist/_internal/drivers/stridge-mock/index.d.ts +4 -2
- package/dist/_internal/drivers/stridge-mock/index.js +1 -1
- package/dist/_internal/withdraw/driver/index.d.ts +2 -2
- package/dist/activity/compound/index.d.ts +19 -0
- package/dist/activity/compound/index.js +1 -0
- package/dist/activity/dialog/index.d.ts +4 -0
- package/dist/activity/dialog/index.js +1 -0
- package/dist/activity/widgets/index.d.ts +5 -0
- package/dist/activity/widgets/index.js +1 -0
- package/dist/deposit/compound/index.d.ts +25 -15
- package/dist/deposit/compound/index.js +1 -1
- package/dist/deposit/dialog/index.d.ts +2 -1
- package/dist/deposit/widgets/index.d.ts +17 -0
- package/dist/deposit/widgets/index.js +1 -0
- package/dist/drivers/stridge/catalog.d.ts +54 -0
- package/dist/drivers/stridge/catalog.js +1 -0
- package/dist/drivers/stridge/createStridgeActivityDriver.d.ts +44 -0
- package/dist/drivers/stridge/createStridgeActivityDriver.js +1 -0
- package/dist/drivers/stridge/createStridgeDepositDriver.d.ts +10 -1
- package/dist/drivers/stridge/createStridgeDepositDriver.js +1 -1
- package/dist/drivers/stridge/createStridgeWithdrawDriver.d.ts +37 -14
- package/dist/drivers/stridge/createStridgeWithdrawDriver.js +1 -1
- package/dist/drivers/stridge/internal/ensureWalletChain.js +1 -0
- package/dist/drivers/stridge/internal/pollOnce.js +1 -1
- package/dist/drivers/stridge/internal/resolveAddEthereumChain.js +1 -0
- package/dist/drivers/stridge/internal/retry.js +1 -0
- package/dist/drivers/stridge/internal/supportedChains.js +1 -0
- package/dist/drivers/stridge/types.d.ts +20 -14
- package/dist/drivers/stridge/types.js +1 -1
- package/dist/drivers/stridge/wagmiSigner.js +1 -1
- package/dist/drivers/stridge-mock/checkoutChannel.d.ts +31 -0
- package/dist/drivers/stridge-mock/checkoutChannel.js +1 -0
- package/dist/drivers/stridge-mock/createStridgeMockActivityDriver.d.ts +44 -0
- package/dist/drivers/stridge-mock/createStridgeMockActivityDriver.js +1 -0
- package/dist/drivers/stridge-mock/createStridgeMockDriver.d.ts +30 -2
- package/dist/drivers/stridge-mock/createStridgeMockDriver.js +1 -1
- package/dist/drivers/stridge-mock/createStridgeMockWithdrawDriver.d.ts +15 -3
- package/dist/drivers/stridge-mock/createStridgeMockWithdrawDriver.js +1 -1
- package/dist/drivers/stridge-mock/fixtures.d.ts +19 -13
- package/dist/drivers/stridge-mock/fixtures.js +1 -1
- package/dist/drivers/stridge-mock/triggers.d.ts +12 -0
- package/dist/events/bus/createBus.d.ts +26 -0
- package/dist/events/bus/createBus.js +1 -0
- package/dist/events/bus/flowIdRegistry.d.ts +17 -0
- package/dist/events/bus/flowIdRegistry.js +1 -0
- package/dist/events/bus/index.js +1 -0
- package/dist/events/bus/metadata.js +1 -0
- package/dist/events/context.js +1 -0
- package/dist/events/emit/index.js +1 -0
- package/dist/events/emit/mapFailure.js +1 -0
- package/dist/events/emit/useActivityEmissions.js +1 -0
- package/dist/events/emit/useDepositEmissions.js +1 -0
- package/dist/events/emit/useKitEmitter.js +1 -0
- package/dist/events/emit/useWithdrawEmissions.js +1 -0
- package/dist/events/hooks/index.d.ts +6 -0
- package/dist/events/hooks/index.js +1 -0
- package/dist/events/hooks/useCurrentFlowId.d.ts +6 -0
- package/dist/events/hooks/useCurrentFlowId.js +1 -0
- package/dist/events/hooks/useStableHandler.js +1 -0
- package/dist/events/hooks/useStridgeEvent.d.ts +9 -0
- package/dist/events/hooks/useStridgeEvent.js +1 -0
- package/dist/events/hooks/useStridgeEventBus.d.ts +34 -0
- package/dist/events/hooks/useStridgeEventBus.js +1 -0
- package/dist/events/hooks/useStridgeEvents.d.ts +7 -0
- package/dist/events/hooks/useStridgeEvents.js +1 -0
- package/dist/events/hooks/useStridgeFlowEvent.d.ts +8 -0
- package/dist/events/hooks/useStridgeFlowEvent.js +1 -0
- package/dist/events/hooks/useStridgeFlowEvents.d.ts +6 -0
- package/dist/events/hooks/useStridgeFlowEvents.js +1 -0
- package/dist/events/index.d.ts +17 -0
- package/dist/events/index.js +1 -0
- package/dist/events/publish.js +1 -0
- package/dist/events/redact.d.ts +34 -0
- package/dist/events/redact.js +1 -0
- package/dist/events/types/activity.d.ts +53 -0
- package/dist/events/types/deposit.d.ts +235 -0
- package/dist/events/types/envelope.d.ts +145 -0
- package/dist/events/types/index.d.ts +32 -0
- package/dist/events/types/kit.d.ts +23 -0
- package/dist/events/types/withdraw.d.ts +150 -0
- package/dist/flows/activity/compound/ActivityFlow.d.ts +46 -0
- package/dist/flows/activity/compound/ActivityFlow.js +1 -0
- package/dist/flows/activity/compound/components/Boundary.d.ts +29 -0
- package/dist/flows/activity/compound/components/Boundary.js +1 -0
- package/dist/flows/activity/compound/components/Steps.d.ts +24 -0
- package/dist/flows/activity/compound/components/Steps.js +1 -0
- package/dist/flows/activity/dialog/ActivityDialog.d.ts +55 -0
- package/dist/flows/activity/dialog/ActivityDialog.js +1 -0
- package/dist/flows/activity/dialog/ActivityFlowBoundary.d.ts +1 -0
- package/dist/flows/activity/dialog/ActivityFlowBoundary.js +1 -0
- package/dist/flows/activity/driver/context.d.ts +38 -0
- package/dist/flows/activity/driver/context.js +1 -0
- package/dist/flows/activity/driver/types.d.ts +58 -0
- package/dist/flows/activity/orchestrator/controller.d.ts +11 -0
- package/dist/flows/activity/orchestrator/controller.js +1 -0
- package/dist/flows/activity/orchestrator/index.d.ts +4 -0
- package/dist/flows/activity/orchestrator/index.js +1 -0
- package/dist/flows/activity/orchestrator/reducer.d.ts +1 -0
- package/dist/flows/activity/orchestrator/reducer.js +1 -0
- package/dist/flows/activity/orchestrator/types.d.ts +71 -0
- package/dist/flows/activity/orchestrator/useActivity.d.ts +94 -0
- package/dist/flows/activity/orchestrator/useActivity.js +1 -0
- package/dist/flows/activity/widgets/ActivityDetail.d.ts +41 -0
- package/dist/flows/activity/widgets/ActivityDetail.js +1 -0
- package/dist/flows/activity/widgets/ActivityList.d.ts +38 -0
- package/dist/flows/activity/widgets/ActivityList.js +1 -0
- package/dist/flows/activity/widgets/useStandaloneActivitySource.js +1 -0
- package/dist/flows/deposit/dialog/DepositBootstrapErrorState.js +1 -1
- package/dist/flows/deposit/dialog/DepositDialog.d.ts +26 -79
- package/dist/flows/deposit/dialog/DepositDialog.js +1 -1
- package/dist/flows/deposit/dialog/WalletRequiredState.js +1 -0
- package/dist/flows/deposit/dialog/WalletRequiredState.styles.js +1 -0
- package/dist/flows/deposit/driver/payloads.d.ts +109 -5
- package/dist/flows/deposit/driver/transformers/balanceToBalancesPayload.d.ts +2 -0
- package/dist/flows/deposit/driver/transformers/balanceToBalancesPayload.js +1 -1
- package/dist/flows/deposit/driver/transformers/index.d.ts +1 -0
- package/dist/flows/deposit/driver/transformers/quoteToPayload.d.ts +2 -0
- package/dist/flows/deposit/driver/transformers/settlementToPayload.d.ts +25 -0
- package/dist/flows/deposit/driver/transformers/settlementToPayload.js +1 -1
- package/dist/flows/deposit/driver/transformers/startToAddressesPayload.d.ts +2 -0
- package/dist/flows/deposit/driver/transformers/startToAddressesPayload.js +1 -1
- package/dist/flows/deposit/driver/transformers/startToBrandPayload.d.ts +1 -0
- package/dist/flows/deposit/driver/transformers/startToTargetPayload.d.ts +2 -0
- package/dist/flows/deposit/driver/transformers/startToTargetPayload.js +1 -1
- package/dist/flows/deposit/driver/transformers/walletAddressToWalletPayload.d.ts +1 -0
- package/dist/flows/deposit/driver/types.d.ts +92 -5
- package/dist/flows/deposit/orchestrator/controller.js +1 -1
- package/dist/flows/deposit/orchestrator/index.d.ts +5 -0
- package/dist/flows/deposit/orchestrator/reducer.d.ts +1 -0
- package/dist/flows/deposit/orchestrator/reducer.js +1 -1
- package/dist/flows/deposit/orchestrator/types.d.ts +276 -12
- package/dist/flows/deposit/orchestrator/useDeposit.d.ts +45 -1
- package/dist/flows/deposit/orchestrator/useDeposit.js +1 -1
- package/dist/flows/deposit/shared/checkoutPopup.js +1 -0
- package/dist/flows/deposit/shared/onramp.js +1 -0
- package/dist/flows/deposit/widgets/activity/DepositActivityDetail.d.ts +40 -0
- package/dist/flows/deposit/widgets/activity/DepositActivityDetail.js +1 -0
- package/dist/flows/deposit/widgets/activity/DepositActivityList.d.ts +38 -0
- package/dist/flows/deposit/widgets/activity/DepositActivityList.js +1 -0
- package/dist/flows/deposit/widgets/activity/index.d.ts +2 -0
- package/dist/flows/deposit/widgets/activity/index.js +1 -0
- package/dist/flows/deposit/widgets/activity/useDepositActivitySource.js +1 -0
- package/dist/flows/deposit/widgets/amount-entry/AmountEntry.d.ts +32 -5
- package/dist/flows/deposit/widgets/amount-entry/AmountEntry.js +1 -1
- package/dist/flows/deposit/widgets/amount-entry/footerIntent.js +1 -0
- package/dist/flows/deposit/widgets/asset-picker/AssetPicker.d.ts +24 -4
- package/dist/flows/deposit/widgets/asset-picker/AssetPicker.js +1 -1
- package/dist/flows/deposit/widgets/confirm-deposit/ConfirmDeposit.d.ts +37 -4
- package/dist/flows/deposit/widgets/confirm-deposit/ConfirmDeposit.js +1 -1
- package/dist/flows/deposit/widgets/deposit/Deposit.d.ts +39 -4
- package/dist/flows/deposit/widgets/deposit/Deposit.js +1 -1
- package/dist/flows/deposit/widgets/deposit/compound/Deposit.d.ts +58 -1
- package/dist/flows/deposit/widgets/deposit/compound/Deposit.js +1 -1
- package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.d.ts +6 -0
- package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.js +1 -1
- package/dist/flows/deposit/widgets/deposit/compound/Deposit.styles.js +1 -1
- package/dist/flows/deposit/widgets/deposit/compound/components/Boundary.d.ts +29 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/Boundary.js +1 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/Guards.d.ts +28 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/Guards.js +1 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/Header.d.ts +11 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/Header.js +1 -1
- package/dist/flows/deposit/widgets/deposit/compound/components/Method.d.ts +7 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/Method.js +1 -1
- package/dist/flows/deposit/widgets/deposit/compound/components/MethodSection.d.ts +40 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/MethodSection.js +1 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/Methods.d.ts +15 -9
- package/dist/flows/deposit/widgets/deposit/compound/components/Methods.js +1 -1
- package/dist/flows/deposit/widgets/deposit/compound/components/Rail.d.ts +18 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/Rail.js +1 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.d.ts +43 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.js +1 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/Steps.d.ts +24 -0
- package/dist/flows/deposit/widgets/deposit/compound/components/Steps.js +1 -0
- package/dist/flows/deposit/widgets/deposit/compound/index.d.ts +2 -1
- package/dist/flows/deposit/widgets/deposit/compound/types.d.ts +106 -4
- package/dist/flows/deposit/widgets/deposit-status-banner/DepositStatusBanner.d.ts +41 -1
- package/dist/flows/deposit/widgets/deposit-status-banner/DepositStatusBanner.js +1 -1
- package/dist/flows/deposit/widgets/deposit-status-banner/compound/DepositStatusBanner.js +1 -1
- package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Hero.js +1 -1
- package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/PrimaryAction.js +1 -1
- package/dist/flows/deposit/widgets/deposit-status-banner/compound/types.d.ts +5 -5
- package/dist/flows/deposit/widgets/error-state/ErrorState.d.ts +39 -4
- package/dist/flows/deposit/widgets/error-state/ErrorState.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/OnrampAmountEntry.d.ts +64 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/OnrampAmountEntry.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.d.ts +62 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.slots.d.ts +14 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.slots.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.styles.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/HeroLabel.d.ts +13 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/HeroLabel.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/ReceiveChip.d.ts +14 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/ReceiveChip.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/context.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/index.d.ts +3 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/types.d.ts +29 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/OnrampConfirm.d.ts +50 -0
- package/dist/flows/deposit/widgets/onramp-confirm/OnrampConfirm.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.d.ts +42 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.slots.d.ts +24 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.slots.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.styles.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Body.d.ts +16 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Body.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Header.d.ts +15 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Header.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Summary.d.ts +15 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Summary.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/context.d.ts +25 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/context.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/index.d.ts +4 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/types.d.ts +62 -0
- package/dist/flows/deposit/widgets/onramp-confirm/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/OnrampPaymentPending.d.ts +48 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/OnrampPaymentPending.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.d.ts +63 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.slots.d.ts +14 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.slots.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/components/ReopenButton.d.ts +11 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/components/ReopenButton.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/context.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/index.d.ts +2 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/index.js +1 -0
- package/dist/flows/deposit/widgets/processing-state/ProcessingState.d.ts +30 -4
- package/dist/flows/deposit/widgets/processing-state/ProcessingState.js +1 -1
- package/dist/flows/deposit/widgets/success-state/SuccessState.d.ts +38 -4
- package/dist/flows/deposit/widgets/success-state/SuccessState.js +1 -1
- package/dist/flows/deposit/widgets/transfer-crypto/TransferCrypto.d.ts +34 -3
- package/dist/flows/deposit/widgets/transfer-crypto/TransferCrypto.js +1 -1
- package/dist/flows/deposit/widgets/transfer-crypto/compound/TransferCrypto.d.ts +1 -1
- package/dist/flows/deposit/widgets/transfer-crypto/compound/TransferCrypto.styles.js +1 -1
- package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Address.js +1 -1
- package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Disclosure.d.ts +5 -2
- package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Disclosure.js +1 -1
- package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Header.d.ts +6 -0
- package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Header.js +1 -1
- package/dist/flows/deposit/widgets/transfer-crypto/compound/components/QrCode.d.ts +4 -10
- package/dist/flows/deposit/widgets/transfer-crypto/compound/components/QrCode.js +1 -1
- package/dist/flows/deposit/widgets/transfer-crypto/compound/types.d.ts +16 -2
- package/dist/flows/shared/transformers/computeQuoteAttrs.d.ts +1 -0
- package/dist/flows/shared/transformers/index.d.ts +1 -0
- package/dist/flows/shared/transformers/pickRelevantSettlement.d.ts +1 -0
- package/dist/flows/shared/transformers/pickRelevantSettlement.js +1 -1
- package/dist/flows/shared/transformers/testnets.js +1 -0
- package/dist/flows/withdraw/bindings/WithdrawBindings.d.ts +92 -0
- package/dist/flows/withdraw/bindings/WithdrawBindings.js +1 -0
- package/dist/flows/withdraw/bindings/index.d.ts +1 -0
- package/dist/flows/withdraw/bindings/index.js +1 -0
- package/dist/flows/withdraw/dialog/WithdrawDialog.d.ts +44 -71
- package/dist/flows/withdraw/dialog/WithdrawDialog.js +1 -1
- package/dist/flows/withdraw/driver/dto.d.ts +8 -7
- package/dist/flows/withdraw/driver/payloads.d.ts +16 -1
- package/dist/flows/withdraw/driver/transformers/settlementToWithdrawalPayload.js +1 -1
- package/dist/flows/withdraw/driver/transformers/supportedAssetsToReceiveOptionsPayload.js +1 -1
- package/dist/flows/withdraw/driver/types.d.ts +77 -14
- package/dist/flows/withdraw/orchestrator/controller.js +1 -1
- package/dist/flows/withdraw/orchestrator/index.d.ts +1 -1
- package/dist/flows/withdraw/orchestrator/reducer.js +1 -1
- package/dist/flows/withdraw/orchestrator/types.d.ts +218 -35
- package/dist/flows/withdraw/orchestrator/useWithdraw.d.ts +36 -1
- package/dist/flows/withdraw/orchestrator/useWithdraw.js +1 -1
- package/dist/flows/withdraw/widgets/activity/WithdrawActivityDetail.d.ts +39 -0
- package/dist/flows/withdraw/widgets/activity/WithdrawActivityDetail.js +1 -0
- package/dist/flows/withdraw/widgets/activity/WithdrawActivityList.d.ts +36 -0
- package/dist/flows/withdraw/widgets/activity/WithdrawActivityList.js +1 -0
- package/dist/flows/withdraw/widgets/activity/index.d.ts +2 -0
- package/dist/flows/withdraw/widgets/activity/index.js +1 -0
- package/dist/flows/withdraw/widgets/activity/useWithdrawActivitySource.js +1 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/Withdraw.d.ts +60 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/Withdraw.js +1 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/Withdraw.slots.d.ts +13 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/Withdraw.slots.js +1 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/components/Boundary.d.ts +29 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/components/Boundary.js +1 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/components/Guards.d.ts +25 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/components/Guards.js +1 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/components/Steps.d.ts +27 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/components/Steps.js +1 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/index.d.ts +3 -0
- package/dist/flows/withdraw/widgets/withdraw/compound/index.js +1 -0
- package/dist/flows/withdraw/widgets/withdraw-error/WithdrawError.d.ts +45 -2
- package/dist/flows/withdraw/widgets/withdraw-error/WithdrawError.js +1 -1
- package/dist/flows/withdraw/widgets/withdraw-form/WithdrawForm.d.ts +32 -12
- package/dist/flows/withdraw/widgets/withdraw-form/WithdrawForm.js +1 -1
- package/dist/flows/withdraw/widgets/withdraw-form/compound/WithdrawForm.js +1 -1
- package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Body.d.ts +7 -6
- package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Header.d.ts +6 -1
- package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Header.js +1 -1
- package/dist/flows/withdraw/widgets/withdraw-form/compound/components/RecipientField.d.ts +7 -5
- package/dist/flows/withdraw/widgets/withdraw-form/compound/components/RecipientField.js +1 -1
- package/dist/flows/withdraw/widgets/withdraw-form/compound/types.d.ts +15 -5
- package/dist/flows/withdraw/widgets/withdraw-form/validation.js +1 -1
- package/dist/flows/withdraw/widgets/withdraw-in-progress/WithdrawInProgress.d.ts +39 -3
- package/dist/flows/withdraw/widgets/withdraw-in-progress/WithdrawInProgress.js +1 -1
- package/dist/flows/withdraw/widgets/withdraw-success/WithdrawSuccess.d.ts +46 -2
- package/dist/flows/withdraw/widgets/withdraw-success/WithdrawSuccess.js +1 -1
- package/dist/format/index.d.ts +2 -1
- package/dist/format/index.js +1 -1
- package/dist/i18n/index.d.ts +5 -4
- package/dist/i18n/index.js +1 -1
- package/dist/i18n/locales/ar.js +1 -1
- package/dist/i18n/locales/es.js +1 -1
- package/dist/i18n/locales/source-keys.d.ts +12 -0
- package/dist/i18n/locales/source-keys.js +0 -0
- package/dist/icons/index.d.ts +5 -1
- package/dist/icons/index.js +1 -1
- package/dist/index.d.ts +35 -11
- package/dist/index.js +1 -1
- package/dist/package.js +1 -1
- package/dist/scope/KitPortalScope.js +1 -1
- package/dist/scope/KitScope.d.ts +27 -1
- package/dist/scope/KitScope.js +1 -1
- package/dist/scope/context.d.ts +24 -1
- package/dist/scope/index.d.ts +1 -1
- package/dist/shared/attribution/Attribution.js +1 -0
- package/dist/shared/attribution/Attribution.slots.js +1 -0
- package/dist/shared/attribution/Attribution.styles.js +1 -0
- package/dist/shared/attribution/index.js +1 -0
- package/dist/shared/chains/index.d.ts +48 -29
- package/dist/shared/chains/index.js +1 -1
- package/dist/shared/constants/brand-intercom.js +1 -0
- package/dist/shared/cuer/Cuer.js +1 -1
- package/dist/shared/dialog/DialogShell.d.ts +21 -6
- package/dist/shared/dialog/DialogShell.js +1 -1
- package/dist/shared/dialog/Frame.js +1 -1
- package/dist/shared/dialog/LoadingState.js +1 -0
- package/dist/shared/dialog/LoadingState.styles.js +1 -0
- package/dist/shared/dialog/StepTransition.js +1 -1
- package/dist/shared/dialog/useDirectionalChevronTransform.js +1 -1
- package/dist/shared/driver/types.d.ts +4 -3
- package/dist/shared/format/formatSmartRelative.d.ts +25 -0
- package/dist/shared/format/formatSmartRelative.js +1 -0
- package/dist/shared/format/formatUsd.js +1 -1
- package/dist/shared/i18n/KitI18nProvider.d.ts +11 -8
- package/dist/shared/i18n/KitI18nProvider.js +1 -1
- package/dist/shared/i18n/createKitI18n.d.ts +79 -16
- package/dist/shared/i18n/createKitI18n.js +1 -1
- package/dist/shared/i18n/useLingui.d.ts +11 -3
- package/dist/shared/icons/ActivityIcon.d.ts +12 -0
- package/dist/shared/icons/ActivityIcon.js +1 -0
- package/dist/shared/icons/BitcoinIcon.d.ts +14 -0
- package/dist/shared/icons/BitcoinIcon.js +1 -0
- package/dist/shared/icons/CardIcon.d.ts +16 -0
- package/dist/shared/icons/CardIcon.js +1 -0
- package/dist/shared/icons/LogoIcon.d.ts +13 -0
- package/dist/shared/icons/LogoIcon.js +1 -0
- package/dist/shared/merchant-link/MerchantLink.d.ts +1 -0
- package/dist/shared/merchant-link/MerchantLink.js +1 -0
- package/dist/shared/merchant-link/MerchantLinkButton.d.ts +1 -0
- package/dist/shared/merchant-link/MerchantLinkButton.js +1 -0
- package/dist/shared/merchant-link/index.d.ts +1 -0
- package/dist/shared/merchant-link/index.js +1 -0
- package/dist/shared/merchant-link/resolveMerchantLink.js +1 -0
- package/dist/shared/orchestrator/activityOpenInput.d.ts +21 -0
- package/dist/shared/orchestrator/createActivityReducers.js +1 -0
- package/dist/shared/orchestrator/index.d.ts +2 -0
- package/dist/shared/orchestrator/index.js +1 -1
- package/dist/shared/orchestrator/resolveActivityEntry.d.ts +1 -0
- package/dist/shared/orchestrator/resolveActivityEntry.js +1 -0
- package/dist/shared/orchestrator/toFailure.js +1 -1
- package/dist/shared/orchestrator/types.d.ts +8 -0
- package/dist/shared/orchestrator/useOnrampSessionWatcher.js +1 -0
- package/dist/shared/orchestrator/useSettlementWatcher.js +1 -1
- package/dist/shared/presentation/index.js +1 -0
- package/dist/shared/presentation/types.d.ts +30 -0
- package/dist/shared/presentation/types.js +1 -0
- package/dist/shared/presentation/useResolvedSurfaceKind.js +1 -0
- package/dist/shared/primitives/TxHashValue/TxHashValue.js +1 -1
- package/dist/shared/support/SupportConfigContext.d.ts +1 -0
- package/dist/shared/support/SupportConfigContext.js +1 -0
- package/dist/shared/support/SupportLink.d.ts +1 -0
- package/dist/shared/support/SupportLink.js +1 -0
- package/dist/shared/support/SupportSpinner.d.ts +1 -0
- package/dist/shared/support/SupportSpinner.js +1 -0
- package/dist/shared/support/index.d.ts +2 -0
- package/dist/shared/support/index.js +1 -0
- package/dist/shared/support/intercom-loader.d.ts +17 -0
- package/dist/shared/support/intercom-loader.js +1 -0
- package/dist/shared/support/types.d.ts +43 -0
- package/dist/shared/support/useIntercomMerchantContext.d.ts +27 -0
- package/dist/shared/support/useIntercomMerchantContext.js +1 -0
- package/dist/shared/support/useIntercomShutdownOnUnmount.js +1 -0
- package/dist/shared/support/useMerchantContext.d.ts +1 -0
- package/dist/shared/support/useMerchantContext.js +1 -0
- package/dist/shared/support/useSupportTrigger.js +1 -0
- package/dist/shared/terms/TermsConfigContext.d.ts +1 -0
- package/dist/shared/terms/TermsConfigContext.js +1 -0
- package/dist/shared/terms/TermsLink.d.ts +1 -0
- package/dist/shared/terms/TermsLink.js +1 -0
- package/dist/shared/terms/index.d.ts +1 -0
- package/dist/shared/terms/index.js +1 -0
- package/dist/shared/terms/types.d.ts +43 -0
- package/dist/shared/ui/AdaptiveSurface/AdaptiveSurface.d.ts +52 -0
- package/dist/shared/ui/AdaptiveSurface/AdaptiveSurface.js +1 -0
- package/dist/shared/ui/AdaptiveSurface/index.d.ts +2 -0
- package/dist/shared/ui/AdaptiveSurface/index.js +1 -0
- package/dist/shared/ui/Card/Card.d.ts +12 -9
- package/dist/shared/ui/Card/Card.js +1 -1
- package/dist/shared/ui/Card/Card.styles.js +1 -1
- package/dist/shared/ui/Details/Details.d.ts +9 -1
- package/dist/shared/ui/Details/Details.styles.js +1 -1
- package/dist/shared/ui/Dialog/Dialog.d.ts +10 -8
- package/dist/shared/ui/Dialog/Dialog.js +1 -1
- package/dist/shared/ui/Dialog/Dialog.styles.js +1 -1
- package/dist/shared/ui/Drawer/Drawer.d.ts +135 -0
- package/dist/shared/ui/Drawer/Drawer.js +1 -0
- package/dist/shared/ui/Drawer/Drawer.slots.d.ts +19 -0
- package/dist/shared/ui/Drawer/Drawer.slots.js +1 -0
- package/dist/shared/ui/Drawer/Drawer.styles.js +1 -0
- package/dist/shared/ui/Drawer/index.d.ts +2 -0
- package/dist/shared/ui/Drawer/index.js +1 -0
- package/dist/shared/ui/Select/Select.js +1 -1
- package/dist/shared/ui/SelectableTile/SelectableTile.d.ts +21 -8
- package/dist/shared/ui/SelectableTile/SelectableTile.js +1 -1
- package/dist/shared/ui/Steps/Steps.d.ts +52 -0
- package/dist/shared/ui/Steps/Steps.js +1 -0
- package/dist/shared/ui/Steps/Steps.slots.d.ts +7 -0
- package/dist/shared/ui/Steps/Steps.slots.js +1 -0
- package/dist/shared/ui/Steps/Steps.styles.js +1 -0
- package/dist/shared/ui/Steps/index.d.ts +2 -0
- package/dist/shared/ui/Steps/index.js +1 -0
- package/dist/shared/ui/Tabs/Tabs.d.ts +79 -0
- package/dist/shared/ui/Tabs/Tabs.js +1 -0
- package/dist/shared/ui/Tabs/Tabs.slots.d.ts +11 -0
- package/dist/shared/ui/Tabs/Tabs.slots.js +1 -0
- package/dist/shared/ui/Tabs/Tabs.styles.js +1 -0
- package/dist/shared/ui/Tabs/index.d.ts +2 -0
- package/dist/shared/ui/Tabs/index.js +1 -0
- package/dist/shared/ui/WalletRow/WalletRow.d.ts +1 -1
- package/dist/shared/ui/WalletRow/WalletRow.js +1 -1
- package/dist/shared/ui/surfaceContext.d.ts +9 -0
- package/dist/shared/ui/surfaceContext.js +1 -0
- package/dist/shared/utils/assertNever.js +1 -0
- package/dist/shared/utils/logos/types.d.ts +1 -1
- package/dist/shared/utils/useDeepMemo.js +1 -0
- package/dist/shared/wallet/ConnectWalletContext.d.ts +17 -0
- package/dist/shared/wallet/ConnectWalletContext.js +1 -0
- package/dist/shared/widgets/activity/ActivityTrigger.js +1 -0
- package/dist/shared/widgets/activity/ActivityTrigger.styles.js +1 -0
- package/dist/shared/widgets/activity/adapters/settlementToWidgetProps.js +1 -0
- package/dist/shared/widgets/activity/compound/Activity.d.ts +95 -0
- package/dist/shared/widgets/activity/compound/Activity.js +1 -0
- package/dist/shared/widgets/activity/compound/Activity.slots.d.ts +22 -0
- package/dist/shared/widgets/activity/compound/Activity.slots.js +1 -0
- package/dist/shared/widgets/activity/compound/Activity.styles.js +1 -0
- package/dist/shared/widgets/activity/compound/ActivityDetail.d.ts +82 -0
- package/dist/shared/widgets/activity/compound/ActivityDetail.js +1 -0
- package/dist/shared/widgets/activity/compound/Row.slots.d.ts +21 -0
- package/dist/shared/widgets/activity/compound/Row.slots.js +1 -0
- package/dist/shared/widgets/activity/compound/Row.styles.js +1 -0
- package/dist/shared/widgets/activity/compound/components/ActivityHeader.d.ts +39 -0
- package/dist/shared/widgets/activity/compound/components/ActivityHeader.js +1 -0
- package/dist/shared/widgets/activity/compound/components/Empty.d.ts +15 -0
- package/dist/shared/widgets/activity/compound/components/Empty.js +1 -0
- package/dist/shared/widgets/activity/compound/components/ErrorView.d.ts +26 -0
- package/dist/shared/widgets/activity/compound/components/ErrorView.js +1 -0
- package/dist/shared/widgets/activity/compound/components/List.d.ts +23 -0
- package/dist/shared/widgets/activity/compound/components/List.js +1 -0
- package/dist/shared/widgets/activity/compound/components/Row.d.ts +51 -0
- package/dist/shared/widgets/activity/compound/components/Row.js +1 -0
- package/dist/shared/widgets/activity/compound/components/StatusPip.js +1 -0
- package/dist/shared/widgets/activity/compound/context.d.ts +95 -0
- package/dist/shared/widgets/activity/compound/context.js +1 -0
- package/dist/shared/widgets/activity/compound/index.d.ts +8 -0
- package/dist/shared/widgets/activity/compound/index.js +1 -0
- package/dist/shared/widgets/activity/index.js +1 -0
- package/dist/shared/widgets/activity/payloads.d.ts +108 -0
- package/dist/shared/widgets/activity/transformers/activityResponseToPayload.js +1 -0
- package/dist/shared/widgets/activity/transformers/resolveDirection.js +1 -0
- package/dist/shared/widgets/amount-entry/compound/AmountEntry.d.ts +10 -2
- package/dist/shared/widgets/amount-entry/compound/AmountEntry.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.d.ts +6 -0
- package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/AmountEntry.styles.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/components/Details.d.ts +34 -0
- package/dist/shared/widgets/amount-entry/compound/components/Details.js +1 -0
- package/dist/shared/widgets/amount-entry/compound/components/Footer.d.ts +2 -1
- package/dist/shared/widgets/amount-entry/compound/components/Footer.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/components/Header.d.ts +6 -1
- package/dist/shared/widgets/amount-entry/compound/components/Header.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/components/Hero/Hero.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/components/Hero/SwapBackdrop.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/components/Notice.d.ts +7 -0
- package/dist/shared/widgets/amount-entry/compound/components/Notice.js +1 -0
- package/dist/shared/widgets/amount-entry/compound/index.d.ts +1 -1
- package/dist/shared/widgets/amount-entry/compound/types.d.ts +69 -3
- package/dist/shared/widgets/asset-picker/compound/AssetPicker.d.ts +3 -0
- package/dist/shared/widgets/asset-picker/compound/AssetPicker.js +1 -1
- package/dist/shared/widgets/asset-picker/compound/AssetPicker.slots.d.ts +2 -0
- package/dist/shared/widgets/asset-picker/compound/AssetPicker.slots.js +1 -1
- package/dist/shared/widgets/asset-picker/compound/AssetPicker.styles.js +1 -1
- package/dist/shared/widgets/asset-picker/compound/components/Asset.d.ts +7 -1
- package/dist/shared/widgets/asset-picker/compound/components/Asset.js +1 -1
- package/dist/shared/widgets/asset-picker/compound/components/Empty.d.ts +15 -0
- package/dist/shared/widgets/asset-picker/compound/components/Empty.js +1 -0
- package/dist/shared/widgets/asset-picker/compound/components/Header.d.ts +6 -1
- package/dist/shared/widgets/asset-picker/compound/components/Header.js +1 -1
- package/dist/shared/widgets/asset-picker/compound/types.d.ts +15 -1
- package/dist/shared/widgets/confirm-transfer/compound/ConfirmTransfer.styles.js +1 -1
- package/dist/shared/widgets/confirm-transfer/compound/components/Breakdown.js +1 -1
- package/dist/shared/widgets/confirm-transfer/compound/components/Disclaimer.d.ts +4 -3
- package/dist/shared/widgets/confirm-transfer/compound/components/Disclaimer.js +1 -1
- package/dist/shared/widgets/confirm-transfer/compound/components/QuoteTimer.js +1 -1
- package/dist/shared/widgets/error-state/compound/components/AssetValue.js +1 -1
- package/dist/shared/widgets/error-state/compound/components/HelpInfo.js +1 -1
- package/dist/shared/widgets/error-state/compound/components/MoreDetails.d.ts +1 -1
- package/dist/shared/widgets/error-state/compound/components/MoreDetails.js +1 -1
- package/dist/shared/widgets/error-state/compound/components/StatusValue.js +1 -1
- package/dist/shared/widgets/processing-state/compound/ProcessingState.d.ts +1 -5
- package/dist/shared/widgets/processing-state/compound/ProcessingState.js +1 -1
- package/dist/shared/widgets/processing-state/compound/ProcessingState.slots.d.ts +0 -1
- package/dist/shared/widgets/processing-state/compound/ProcessingState.slots.js +1 -1
- package/dist/shared/widgets/processing-state/compound/ProcessingState.styles.js +1 -1
- package/dist/shared/widgets/processing-state/compound/components/Details.d.ts +6 -1
- package/dist/shared/widgets/processing-state/compound/components/Details.js +1 -1
- package/dist/shared/widgets/processing-state/compound/components/Header.d.ts +4 -3
- package/dist/shared/widgets/processing-state/compound/components/Header.js +1 -1
- package/dist/shared/widgets/processing-state/compound/components/Hero.d.ts +14 -7
- package/dist/shared/widgets/processing-state/compound/components/Hero.js +1 -1
- package/dist/shared/widgets/processing-state/compound/components/Rows.js +1 -1
- package/dist/shared/widgets/processing-state/compound/components/StatusPill.js +1 -1
- package/dist/shared/widgets/processing-state/compound/components/splitAmount.js +1 -0
- package/dist/shared/widgets/processing-state/compound/index.d.ts +1 -1
- package/dist/shared/widgets/processing-state/compound/types.d.ts +11 -29
- package/dist/shared/widgets/success-state/compound/components/Actions.js +1 -1
- package/dist/shared/widgets/success-state/compound/components/AssetValue.js +1 -1
- package/dist/shared/widgets/success-state/compound/components/MoreDetails.d.ts +1 -1
- package/dist/shared/widgets/success-state/compound/components/MoreDetails.js +1 -1
- package/dist/shared/widgets/success-state/compound/components/RouteValue.js +1 -1
- package/dist/shared/widgets/success-state/compound/components/StatusPill.js +1 -1
- package/dist/shared/widgets/success-state/compound/types.d.ts +5 -5
- package/dist/storage/context.d.ts +9 -1
- package/dist/storage/context.js +1 -1
- package/dist/storage/index.d.ts +1 -1
- package/dist/stridge/StridgeProvider.d.ts +177 -35
- package/dist/stridge/StridgeProvider.js +1 -1
- package/dist/stridge/depositOwner.js +1 -0
- package/dist/stridge/optionalWagmi.js +1 -0
- package/dist/stridge/stubs.js +1 -1
- package/dist/styles/index.css +567 -12
- package/dist/types.d.ts +8 -6
- package/dist/ui/index.d.ts +9 -1
- package/dist/ui/index.js +1 -1
- package/dist/version.d.ts +10 -0
- package/dist/version.js +1 -0
- package/dist/withdraw/compound/index.d.ts +11 -8
- package/dist/withdraw/compound/index.js +1 -1
- package/dist/withdraw/dialog/index.d.ts +4 -1
- package/dist/withdraw/widgets/index.d.ts +7 -0
- package/dist/withdraw/widgets/index.js +1 -0
- package/package.json +31 -7
- package/dist/_internal/deposit/widgets/index.d.ts +0 -11
- package/dist/_internal/deposit/widgets/index.js +0 -1
- package/dist/_internal/withdraw/widgets/index.d.ts +0 -5
- package/dist/_internal/withdraw/widgets/index.js +0 -1
- package/dist/flows/withdraw/dialog/WithdrawDialogEventsContext.d.ts +0 -36
- package/dist/flows/withdraw/dialog/WithdrawDialogEventsContext.js +0 -1
- package/dist/shared/widgets/processing-state/compound/components/Actions.d.ts +0 -17
- package/dist/shared/widgets/processing-state/compound/components/Actions.js +0 -1
- package/dist/stridge/StridgeContext.d.ts +0 -29
- package/dist/stridge/StridgeContext.js +0 -1
package/dist/styles/index.css
CHANGED
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
--stridge-kit-z-tooltip: 1070;
|
|
67
67
|
--stridge-kit-overlay: oklch(0% 0 0 / .4);
|
|
68
68
|
--stridge-kit-dialog-width: 480px;
|
|
69
|
+
--stridge-kit-drawer-max-inline-size: var(--stridge-kit-dialog-width);
|
|
70
|
+
--stridge-kit-drawer-max-block-size: calc(100% - 2rem);
|
|
71
|
+
--stridge-kit-drawer-handle-size: 36px;
|
|
72
|
+
--stridge-kit-drawer-handle-thickness: 4px;
|
|
69
73
|
}
|
|
70
74
|
|
|
71
75
|
:root, [data-stridge-scope] {
|
|
@@ -79,6 +83,9 @@
|
|
|
79
83
|
--stridge-kit-card-radius: 12px;
|
|
80
84
|
--stridge-kit-card-radius-frame: 16px;
|
|
81
85
|
--stridge-kit-button-radius: 10px;
|
|
86
|
+
--stridge-kit-tabs-list-radius: 10px;
|
|
87
|
+
--stridge-kit-tabs-indicator-radius: 7px;
|
|
88
|
+
--stridge-kit-tabs-tab-padding-block: 10px;
|
|
82
89
|
}
|
|
83
90
|
|
|
84
91
|
[data-stridge-radius="sharp"] {
|
|
@@ -88,6 +95,8 @@
|
|
|
88
95
|
--stridge-kit-card-radius: 0px;
|
|
89
96
|
--stridge-kit-card-radius-frame: 0px;
|
|
90
97
|
--stridge-kit-button-radius: 0px;
|
|
98
|
+
--stridge-kit-tabs-list-radius: 0px;
|
|
99
|
+
--stridge-kit-tabs-indicator-radius: 0px;
|
|
91
100
|
--stridge-kit-radius: 0px;
|
|
92
101
|
--stridge-kit-radius-xs: 0px;
|
|
93
102
|
--stridge-kit-radius-sm: 0px;
|
|
@@ -104,6 +113,8 @@
|
|
|
104
113
|
--stridge-kit-card-radius: 6px;
|
|
105
114
|
--stridge-kit-card-radius-frame: 8px;
|
|
106
115
|
--stridge-kit-button-radius: 6px;
|
|
116
|
+
--stridge-kit-tabs-list-radius: 6px;
|
|
117
|
+
--stridge-kit-tabs-indicator-radius: 4px;
|
|
107
118
|
--stridge-kit-radius: .375rem;
|
|
108
119
|
--stridge-kit-radius-xs: 2px;
|
|
109
120
|
--stridge-kit-radius-sm: 4px;
|
|
@@ -120,6 +131,8 @@
|
|
|
120
131
|
--stridge-kit-card-radius: 12px;
|
|
121
132
|
--stridge-kit-card-radius-frame: 16px;
|
|
122
133
|
--stridge-kit-button-radius: 10px;
|
|
134
|
+
--stridge-kit-tabs-list-radius: 10px;
|
|
135
|
+
--stridge-kit-tabs-indicator-radius: 7px;
|
|
123
136
|
--stridge-kit-radius: .75rem;
|
|
124
137
|
--stridge-kit-radius-xs: 6px;
|
|
125
138
|
--stridge-kit-radius-sm: 8px;
|
|
@@ -136,6 +149,8 @@
|
|
|
136
149
|
--stridge-kit-card-radius: 18px;
|
|
137
150
|
--stridge-kit-card-radius-frame: 22px;
|
|
138
151
|
--stridge-kit-button-radius: 9999px;
|
|
152
|
+
--stridge-kit-tabs-list-radius: 9999px;
|
|
153
|
+
--stridge-kit-tabs-indicator-radius: 9999px;
|
|
139
154
|
--stridge-kit-radius: .875rem;
|
|
140
155
|
--stridge-kit-radius-xs: 8px;
|
|
141
156
|
--stridge-kit-radius-sm: 10px;
|
|
@@ -196,8 +211,19 @@
|
|
|
196
211
|
--stridge-kit-card-border: oklch(29.55% .01 285.72);
|
|
197
212
|
--stridge-kit-card-border-frame: oklch(27.07% .01 285.77);
|
|
198
213
|
--stridge-kit-card-shadow: 0 30px 80px oklch(0% 0 0 / .6), 0 2px 6px oklch(0% 0 0 / .4);
|
|
214
|
+
--stridge-kit-drawer-handle-color: oklch(52.95% .01 286.13 / .55);
|
|
199
215
|
--stridge-kit-skeleton-base: oklch(29.55% .01 285.72);
|
|
200
216
|
--stridge-kit-skeleton-highlight: oklch(35.16% .01 285.67);
|
|
217
|
+
--stridge-kit-tabs-list-surface: var(--stridge-kit-card-surface-subdued);
|
|
218
|
+
--stridge-kit-tabs-list-border: var(--stridge-kit-border);
|
|
219
|
+
--stridge-kit-tabs-tab-foreground: var(--stridge-kit-muted-foreground);
|
|
220
|
+
--stridge-kit-tabs-tab-foreground-active: var(--stridge-kit-foreground);
|
|
221
|
+
--stridge-kit-tabs-tab-surface-active: var(--stridge-kit-tile-surface);
|
|
222
|
+
--stridge-kit-tabs-tab-border-active: var(--stridge-kit-tile-border);
|
|
223
|
+
--stridge-kit-tabs-indicator-accent: var(--stridge-kit-foreground);
|
|
224
|
+
--stridge-kit-attribution-prefix-color: oklch(62% .005 286);
|
|
225
|
+
--stridge-kit-attribution-mark-color: oklch(72% .005 286);
|
|
226
|
+
--stridge-kit-attribution-wordmark-color: oklch(76% .005 286);
|
|
201
227
|
--stridge-kit-shadow-xs: 0 1px 1px 0 oklch(0% 0 0 / .125);
|
|
202
228
|
--stridge-kit-shadow-sm: 0 4px 4px -1px oklch(0% 0 0 / .04), 0 1px 1px 0 oklch(0% 0 0 / .08);
|
|
203
229
|
--stridge-kit-shadow-md: 0 3px 8px oklch(0% 0 0 / .125), 0 2px 5px oklch(0% 0 0 / .125), 0 1px 1px oklch(0% 0 0 / .125);
|
|
@@ -254,8 +280,19 @@
|
|
|
254
280
|
--stridge-kit-card-border: oklch(91% 0 286);
|
|
255
281
|
--stridge-kit-card-border-frame: oklch(91% 0 286);
|
|
256
282
|
--stridge-kit-card-shadow: 0 30px 80px oklch(0% 0 0 / .16), 0 2px 6px oklch(0% 0 0 / .08);
|
|
283
|
+
--stridge-kit-drawer-handle-color: oklch(60% .01 286 / .4);
|
|
257
284
|
--stridge-kit-skeleton-base: oklch(91% 0 286);
|
|
258
285
|
--stridge-kit-skeleton-highlight: oklch(95% 0 286);
|
|
286
|
+
--stridge-kit-tabs-list-surface: var(--stridge-kit-card-surface-subdued);
|
|
287
|
+
--stridge-kit-tabs-list-border: var(--stridge-kit-border);
|
|
288
|
+
--stridge-kit-tabs-tab-foreground: var(--stridge-kit-muted-foreground);
|
|
289
|
+
--stridge-kit-tabs-tab-foreground-active: var(--stridge-kit-foreground);
|
|
290
|
+
--stridge-kit-tabs-tab-surface-active: var(--stridge-kit-tile-surface);
|
|
291
|
+
--stridge-kit-tabs-tab-border-active: var(--stridge-kit-tile-border);
|
|
292
|
+
--stridge-kit-tabs-indicator-accent: var(--stridge-kit-foreground);
|
|
293
|
+
--stridge-kit-attribution-prefix-color: oklch(50% .01 286);
|
|
294
|
+
--stridge-kit-attribution-mark-color: oklch(42% .01 286);
|
|
295
|
+
--stridge-kit-attribution-wordmark-color: oklch(36% .01 286);
|
|
259
296
|
--stridge-kit-shadow-xs: 0 1px 2px 0 oklch(0% 0 0 / .04);
|
|
260
297
|
--stridge-kit-shadow-sm: 0 1px 1px 0 oklch(0% 0 0 / .04), 0 1px 3px 0 oklch(0% 0 0 / .05);
|
|
261
298
|
--stridge-kit-shadow-md: 0 6px 12px -3px oklch(0% 0 0 / .06), 0 2px 4px -1px oklch(0% 0 0 / .04);
|
|
@@ -263,6 +300,16 @@
|
|
|
263
300
|
--stridge-kit-shadow-xl: 0 24px 56px -12px oklch(0% 0 0 / .1), 0 8px 16px -4px oklch(0% 0 0 / .06);
|
|
264
301
|
}
|
|
265
302
|
|
|
303
|
+
[data-stridge-scope] [data-stridge-slot] {
|
|
304
|
+
-webkit-user-select: none;
|
|
305
|
+
user-select: none;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
[data-stridge-scope] [data-stridge-slot]:is(input, textarea, [contenteditable="true"], [data-stridge-selectable]), [data-stridge-scope] :is(input, textarea, [contenteditable="true"], [data-stridge-selectable]) {
|
|
309
|
+
-webkit-user-select: text;
|
|
310
|
+
user-select: text;
|
|
311
|
+
}
|
|
312
|
+
|
|
266
313
|
@stylex;
|
|
267
314
|
|
|
268
315
|
@layer priority1;
|
|
@@ -378,6 +425,14 @@
|
|
|
378
425
|
border-color: var(--stridge-kit-card-border-frame);
|
|
379
426
|
}
|
|
380
427
|
|
|
428
|
+
.xv87bwv {
|
|
429
|
+
border-color: var(--stridge-kit-card-surface);
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.x1s46ruh {
|
|
433
|
+
border-color: var(--stridge-kit-tabs-list-border);
|
|
434
|
+
}
|
|
435
|
+
|
|
381
436
|
.xa3awxp {
|
|
382
437
|
border-color: var(--stridge-kit-tile-border);
|
|
383
438
|
}
|
|
@@ -386,6 +441,14 @@
|
|
|
386
441
|
border-color: var(--stridge-kit-border);
|
|
387
442
|
}
|
|
388
443
|
|
|
444
|
+
.xab7lrg {
|
|
445
|
+
border-color: var(--stridge-kit-tabs-tab-border-active);
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.x1l0rsgs {
|
|
449
|
+
border-inline-width: 1px;
|
|
450
|
+
}
|
|
451
|
+
|
|
389
452
|
.x6i6fhv {
|
|
390
453
|
border-radius: .375rem;
|
|
391
454
|
}
|
|
@@ -398,10 +461,18 @@
|
|
|
398
461
|
border-radius: 0;
|
|
399
462
|
}
|
|
400
463
|
|
|
464
|
+
.x16rqkct {
|
|
465
|
+
border-radius: 50%;
|
|
466
|
+
}
|
|
467
|
+
|
|
401
468
|
.x10hpsqq {
|
|
402
469
|
border-radius: 9999px;
|
|
403
470
|
}
|
|
404
471
|
|
|
472
|
+
.x1e6avla {
|
|
473
|
+
border-radius: 999px;
|
|
474
|
+
}
|
|
475
|
+
|
|
405
476
|
.x1pjcqnp {
|
|
406
477
|
border-radius: inherit;
|
|
407
478
|
}
|
|
@@ -414,6 +485,10 @@
|
|
|
414
485
|
border-radius: var(--stridge-kit-radius-full);
|
|
415
486
|
}
|
|
416
487
|
|
|
488
|
+
.x1gt2vge {
|
|
489
|
+
border-radius: var(--stridge-kit-tabs-list-radius);
|
|
490
|
+
}
|
|
491
|
+
|
|
417
492
|
.x2zroun {
|
|
418
493
|
border-radius: var(--stridge-kit-radius-xs);
|
|
419
494
|
}
|
|
@@ -434,6 +509,10 @@
|
|
|
434
509
|
border-radius: var(--stridge-kit-radius-sm);
|
|
435
510
|
}
|
|
436
511
|
|
|
512
|
+
.xfauvix {
|
|
513
|
+
border-radius: var(--stridge-kit-tabs-indicator-radius);
|
|
514
|
+
}
|
|
515
|
+
|
|
437
516
|
.x1c2egtx {
|
|
438
517
|
border-radius: var(--stridge-kit-card-radius-frame);
|
|
439
518
|
}
|
|
@@ -478,6 +557,10 @@
|
|
|
478
557
|
border-width: 2px;
|
|
479
558
|
}
|
|
480
559
|
|
|
560
|
+
.xkz0k9k {
|
|
561
|
+
flex: 0 auto;
|
|
562
|
+
}
|
|
563
|
+
|
|
481
564
|
.x845mor {
|
|
482
565
|
flex: 1;
|
|
483
566
|
}
|
|
@@ -578,14 +661,34 @@
|
|
|
578
661
|
gap: var(--stridge-kit-space-3);
|
|
579
662
|
}
|
|
580
663
|
|
|
664
|
+
.x157g05j {
|
|
665
|
+
gap: var(--stridge-kit-space-5);
|
|
666
|
+
}
|
|
667
|
+
|
|
581
668
|
.x1a6yh9e {
|
|
582
669
|
gap: var(--stridge-kit-space-2);
|
|
583
670
|
}
|
|
584
671
|
|
|
672
|
+
.x10no89f {
|
|
673
|
+
inset-block: 0;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.x17y0mx6 {
|
|
677
|
+
inset-inline: 0;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.x10im51j {
|
|
681
|
+
margin-block: 0;
|
|
682
|
+
}
|
|
683
|
+
|
|
585
684
|
.x10bka1u {
|
|
586
685
|
margin-inline: 22px;
|
|
587
686
|
}
|
|
588
687
|
|
|
688
|
+
.xvueqy4 {
|
|
689
|
+
margin-inline: auto;
|
|
690
|
+
}
|
|
691
|
+
|
|
589
692
|
.x1mqxmvn {
|
|
590
693
|
margin-inline: calc(var(--stridge-kit-space-1) * -1);
|
|
591
694
|
}
|
|
@@ -634,6 +737,10 @@
|
|
|
634
737
|
padding-block: 15px;
|
|
635
738
|
}
|
|
636
739
|
|
|
740
|
+
.x1xn8qrt {
|
|
741
|
+
padding-block: 16px;
|
|
742
|
+
}
|
|
743
|
+
|
|
637
744
|
.x12ulsxz {
|
|
638
745
|
padding-block: 4px;
|
|
639
746
|
}
|
|
@@ -650,6 +757,18 @@
|
|
|
650
757
|
padding-block: 8px;
|
|
651
758
|
}
|
|
652
759
|
|
|
760
|
+
.x1yowcxs {
|
|
761
|
+
padding-block: var(--stridge-kit-space-3);
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.x1wjkr2j {
|
|
765
|
+
padding-block: var(--stridge-kit-tabs-tab-padding-block);
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.xpuy6co {
|
|
769
|
+
padding-block: var(--stridge-kit-space-2);
|
|
770
|
+
}
|
|
771
|
+
|
|
653
772
|
.xvpgqt4 {
|
|
654
773
|
padding-inline: .625rem;
|
|
655
774
|
}
|
|
@@ -690,6 +809,10 @@
|
|
|
690
809
|
padding-inline: 6px;
|
|
691
810
|
}
|
|
692
811
|
|
|
812
|
+
.xqsvw4s {
|
|
813
|
+
padding-inline: var(--stridge-kit-space-4);
|
|
814
|
+
}
|
|
815
|
+
|
|
693
816
|
.x7mqn57 {
|
|
694
817
|
padding-inline: var(--stridge-kit-space-1);
|
|
695
818
|
}
|
|
@@ -698,6 +821,10 @@
|
|
|
698
821
|
padding-inline: var(--stridge-kit-space-3);
|
|
699
822
|
}
|
|
700
823
|
|
|
824
|
+
.x1ujb8i1 {
|
|
825
|
+
padding-inline: var(--stridge-kit-space-5);
|
|
826
|
+
}
|
|
827
|
+
|
|
701
828
|
.xxztuhb {
|
|
702
829
|
padding-inline: var(--stridge-kit-space-2);
|
|
703
830
|
}
|
|
@@ -714,14 +841,26 @@
|
|
|
714
841
|
border-color: var(--stridge-kit-ring);
|
|
715
842
|
}
|
|
716
843
|
|
|
844
|
+
.x1o5aa3h:focus-visible {
|
|
845
|
+
border-radius: var(--stridge-kit-radius-full);
|
|
846
|
+
}
|
|
847
|
+
|
|
717
848
|
.x63abuj:focus-visible {
|
|
718
849
|
border-radius: var(--stridge-kit-radius-sm);
|
|
719
850
|
}
|
|
720
851
|
|
|
852
|
+
.x1gvykhg:focus-visible {
|
|
853
|
+
outline: 2px solid var(--stridge-kit-ring);
|
|
854
|
+
}
|
|
855
|
+
|
|
721
856
|
.x67ar3w:focus-visible {
|
|
722
857
|
outline: 2px solid var(--stridge-kit-foreground);
|
|
723
858
|
}
|
|
724
859
|
|
|
860
|
+
.x1l0eogd:is(a:hover, a:focus-visible) [data-stridge-slot~="attribution-wordmark"] {
|
|
861
|
+
text-decoration: underline;
|
|
862
|
+
}
|
|
863
|
+
|
|
725
864
|
.xnyhjf:has( > input:focus-visible, > textarea:focus-visible) {
|
|
726
865
|
border-color: var(--stridge-kit-ring);
|
|
727
866
|
}
|
|
@@ -842,6 +981,10 @@
|
|
|
842
981
|
animation-delay: 0s;
|
|
843
982
|
}
|
|
844
983
|
|
|
984
|
+
.x1a78uxe {
|
|
985
|
+
animation-duration: .24s;
|
|
986
|
+
}
|
|
987
|
+
|
|
845
988
|
.x4afe7t {
|
|
846
989
|
animation-duration: .3s;
|
|
847
990
|
}
|
|
@@ -874,6 +1017,14 @@
|
|
|
874
1017
|
animation-duration: 1.8s;
|
|
875
1018
|
}
|
|
876
1019
|
|
|
1020
|
+
.x1q3qbx4 {
|
|
1021
|
+
animation-duration: 1s;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.x19y0sg2 {
|
|
1025
|
+
animation-duration: var(--stridge-kit-duration-fast);
|
|
1026
|
+
}
|
|
1027
|
+
|
|
877
1028
|
.x1u6ievf {
|
|
878
1029
|
animation-fill-mode: both;
|
|
879
1030
|
}
|
|
@@ -894,6 +1045,14 @@
|
|
|
894
1045
|
animation-name: x17l86xk-B;
|
|
895
1046
|
}
|
|
896
1047
|
|
|
1048
|
+
.xqcmdr3 {
|
|
1049
|
+
animation-name: x18re5ia-B;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
.x1tj11xs {
|
|
1053
|
+
animation-name: x1deacm-B;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
897
1056
|
.xv305lp {
|
|
898
1057
|
animation-name: x1l9pw95-B;
|
|
899
1058
|
}
|
|
@@ -918,6 +1077,10 @@
|
|
|
918
1077
|
animation-name: xdk6pkw-B;
|
|
919
1078
|
}
|
|
920
1079
|
|
|
1080
|
+
.x11qdjwd {
|
|
1081
|
+
animation-name: xmr5gd0-B;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
921
1084
|
.x1ka1v4i {
|
|
922
1085
|
animation-name: xqng64z-B;
|
|
923
1086
|
}
|
|
@@ -1046,6 +1209,10 @@
|
|
|
1046
1209
|
background-color: var(--stridge-kit-card-surface);
|
|
1047
1210
|
}
|
|
1048
1211
|
|
|
1212
|
+
.x1fkz0ev {
|
|
1213
|
+
background-color: var(--stridge-kit-tabs-indicator-accent);
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1049
1216
|
.x136i1dt {
|
|
1050
1217
|
background-color: var(--stridge-kit-border);
|
|
1051
1218
|
}
|
|
@@ -1058,6 +1225,10 @@
|
|
|
1058
1225
|
background-color: var(--stridge-kit-secondary);
|
|
1059
1226
|
}
|
|
1060
1227
|
|
|
1228
|
+
.x1ge2e6s {
|
|
1229
|
+
background-color: var(--stridge-kit-tabs-tab-surface-active);
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1061
1232
|
.xdmxa9o {
|
|
1062
1233
|
background-color: var(--stridge-kit-primary);
|
|
1063
1234
|
}
|
|
@@ -1074,6 +1245,14 @@
|
|
|
1074
1245
|
background-color: var(--stridge-kit-skeleton-base);
|
|
1075
1246
|
}
|
|
1076
1247
|
|
|
1248
|
+
.x13y6qn8 {
|
|
1249
|
+
background-color: var(--stridge-kit-tabs-list-surface);
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.x1p0xf7o {
|
|
1253
|
+
background-color: var(--stridge-kit-drawer-handle-color);
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1077
1256
|
.xfhhmty {
|
|
1078
1257
|
background-color: var(--stridge-kit-destructive-soft);
|
|
1079
1258
|
}
|
|
@@ -1082,6 +1261,10 @@
|
|
|
1082
1261
|
background-color: var(--stridge-kit-overlay);
|
|
1083
1262
|
}
|
|
1084
1263
|
|
|
1264
|
+
.xvaq5cg {
|
|
1265
|
+
background-color: var(--stridge-kit-card);
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1085
1268
|
.x19u6ldj {
|
|
1086
1269
|
background-color: var(--stridge-kit-background);
|
|
1087
1270
|
}
|
|
@@ -1126,10 +1309,18 @@
|
|
|
1126
1309
|
border-start-end-radius: var(--stridge-kit-radius-md);
|
|
1127
1310
|
}
|
|
1128
1311
|
|
|
1312
|
+
.x1af6ir8 {
|
|
1313
|
+
border-start-end-radius: var(--stridge-kit-card-radius-frame);
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1129
1316
|
.x1d6sz28 {
|
|
1130
1317
|
border-start-start-radius: var(--stridge-kit-radius-md);
|
|
1131
1318
|
}
|
|
1132
1319
|
|
|
1320
|
+
.x8htq0b {
|
|
1321
|
+
border-start-start-radius: var(--stridge-kit-card-radius-frame);
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1133
1324
|
.x1gsh91t {
|
|
1134
1325
|
box-shadow: 0 0 0 1.5px var(--stridge-kit-tile-surface);
|
|
1135
1326
|
}
|
|
@@ -1250,6 +1441,10 @@
|
|
|
1250
1441
|
color: var(--stridge-kit-info);
|
|
1251
1442
|
}
|
|
1252
1443
|
|
|
1444
|
+
.x9irweu {
|
|
1445
|
+
color: var(--stridge-kit-attribution-mark-color);
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1253
1448
|
.x1vits3x {
|
|
1254
1449
|
color: var(--stridge-kit-card-foreground);
|
|
1255
1450
|
}
|
|
@@ -1258,6 +1453,10 @@
|
|
|
1258
1453
|
color: var(--stridge-kit-secondary-foreground);
|
|
1259
1454
|
}
|
|
1260
1455
|
|
|
1456
|
+
.x1nxg1fm {
|
|
1457
|
+
color: var(--stridge-kit-attribution-wordmark-color);
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1261
1460
|
.x1me39qh {
|
|
1262
1461
|
color: var(--stridge-kit-primary);
|
|
1263
1462
|
}
|
|
@@ -1270,6 +1469,10 @@
|
|
|
1270
1469
|
color: var(--stridge-kit-destructive);
|
|
1271
1470
|
}
|
|
1272
1471
|
|
|
1472
|
+
.xddgj62 {
|
|
1473
|
+
color: var(--stridge-kit-tabs-tab-foreground);
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1273
1476
|
.x137ha3m {
|
|
1274
1477
|
color: var(--stridge-kit-muted-foreground-faint);
|
|
1275
1478
|
}
|
|
@@ -1282,6 +1485,10 @@
|
|
|
1282
1485
|
color: var(--stridge-kit-details-label);
|
|
1283
1486
|
}
|
|
1284
1487
|
|
|
1488
|
+
.xd2gg92 {
|
|
1489
|
+
color: var(--stridge-kit-attribution-prefix-color);
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1285
1492
|
.x1kqivnd {
|
|
1286
1493
|
color: var(--stridge-kit-tile-foreground);
|
|
1287
1494
|
}
|
|
@@ -1334,6 +1541,10 @@
|
|
|
1334
1541
|
display: block;
|
|
1335
1542
|
}
|
|
1336
1543
|
|
|
1544
|
+
.xjp7ctv {
|
|
1545
|
+
display: contents;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1337
1548
|
.x78zum5 {
|
|
1338
1549
|
display: flex;
|
|
1339
1550
|
}
|
|
@@ -1354,10 +1565,18 @@
|
|
|
1354
1565
|
display: inline;
|
|
1355
1566
|
}
|
|
1356
1567
|
|
|
1568
|
+
.x1s85apg {
|
|
1569
|
+
display: none;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1357
1572
|
.x5f5z56 {
|
|
1358
1573
|
field-sizing: content;
|
|
1359
1574
|
}
|
|
1360
1575
|
|
|
1576
|
+
.x117rol3 {
|
|
1577
|
+
fill: currentColor;
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1361
1580
|
.xbh8q5q {
|
|
1362
1581
|
fill: none;
|
|
1363
1582
|
}
|
|
@@ -1570,6 +1789,10 @@
|
|
|
1570
1789
|
inset-inline-start: 0;
|
|
1571
1790
|
}
|
|
1572
1791
|
|
|
1792
|
+
.xbudbmw {
|
|
1793
|
+
inset-inline-start: 50%;
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1573
1796
|
.xc8icb0 {
|
|
1574
1797
|
isolation: isolate;
|
|
1575
1798
|
}
|
|
@@ -1578,6 +1801,10 @@
|
|
|
1578
1801
|
justify-content: center;
|
|
1579
1802
|
}
|
|
1580
1803
|
|
|
1804
|
+
.x13a6bvl {
|
|
1805
|
+
justify-content: flex-end;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1581
1808
|
.x1nhvcw1 {
|
|
1582
1809
|
justify-content: flex-start;
|
|
1583
1810
|
}
|
|
@@ -1610,6 +1837,10 @@
|
|
|
1610
1837
|
letter-spacing: .02em;
|
|
1611
1838
|
}
|
|
1612
1839
|
|
|
1840
|
+
.x1labic3 {
|
|
1841
|
+
letter-spacing: .14em;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1613
1844
|
.x4gjf66 {
|
|
1614
1845
|
letter-spacing: inherit;
|
|
1615
1846
|
}
|
|
@@ -1634,6 +1865,10 @@
|
|
|
1634
1865
|
letter-spacing: var(--stridge-kit-tracking-widest);
|
|
1635
1866
|
}
|
|
1636
1867
|
|
|
1868
|
+
.x14ju556 {
|
|
1869
|
+
line-height: 0;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1637
1872
|
.x132q4wb {
|
|
1638
1873
|
line-height: 1.25;
|
|
1639
1874
|
}
|
|
@@ -1746,6 +1981,10 @@
|
|
|
1746
1981
|
opacity: 0;
|
|
1747
1982
|
}
|
|
1748
1983
|
|
|
1984
|
+
.x1hc1fzr {
|
|
1985
|
+
opacity: 1;
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1749
1988
|
.x1clqncf {
|
|
1750
1989
|
order: -1;
|
|
1751
1990
|
}
|
|
@@ -1762,6 +2001,10 @@
|
|
|
1762
2001
|
overflow-wrap: anywhere;
|
|
1763
2002
|
}
|
|
1764
2003
|
|
|
2004
|
+
.x2vl965 {
|
|
2005
|
+
padding-inline-end: 10px;
|
|
2006
|
+
}
|
|
2007
|
+
|
|
1765
2008
|
.xpdmqnj {
|
|
1766
2009
|
padding-inline-end: 12px;
|
|
1767
2010
|
}
|
|
@@ -1786,6 +2029,10 @@
|
|
|
1786
2029
|
padding-inline-end: 9px;
|
|
1787
2030
|
}
|
|
1788
2031
|
|
|
2032
|
+
.xvkiva6 {
|
|
2033
|
+
padding-inline-end: var(--stridge-kit-space-4);
|
|
2034
|
+
}
|
|
2035
|
+
|
|
1789
2036
|
.xi8f3d1 {
|
|
1790
2037
|
padding-inline-end: var(--stridge-kit-space-3);
|
|
1791
2038
|
}
|
|
@@ -1794,6 +2041,10 @@
|
|
|
1794
2041
|
padding-inline-end: var(--stridge-kit-space-8);
|
|
1795
2042
|
}
|
|
1796
2043
|
|
|
2044
|
+
.x1hvdk87 {
|
|
2045
|
+
padding-inline-end: var(--stridge-kit-space-5);
|
|
2046
|
+
}
|
|
2047
|
+
|
|
1797
2048
|
.xzfcf9p {
|
|
1798
2049
|
padding-inline-end: var(--stridge-kit-space-2);
|
|
1799
2050
|
}
|
|
@@ -1818,18 +2069,34 @@
|
|
|
1818
2069
|
padding-inline-start: 22px;
|
|
1819
2070
|
}
|
|
1820
2071
|
|
|
2072
|
+
.x25sj25 {
|
|
2073
|
+
padding-inline-start: 6px;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
1821
2076
|
.x7coems {
|
|
1822
2077
|
padding-inline-start: 9px;
|
|
1823
2078
|
}
|
|
1824
2079
|
|
|
2080
|
+
.xiplbrm {
|
|
2081
|
+
padding-inline-start: var(--stridge-kit-space-4);
|
|
2082
|
+
}
|
|
2083
|
+
|
|
1825
2084
|
.x1qntkwk {
|
|
1826
2085
|
padding-inline-start: var(--stridge-kit-space-3);
|
|
1827
2086
|
}
|
|
1828
2087
|
|
|
2088
|
+
.xmg6hw8 {
|
|
2089
|
+
padding-inline-start: var(--stridge-kit-space-5);
|
|
2090
|
+
}
|
|
2091
|
+
|
|
1829
2092
|
.xpsy26f {
|
|
1830
2093
|
padding-inline-start: var(--stridge-kit-space-2);
|
|
1831
2094
|
}
|
|
1832
2095
|
|
|
2096
|
+
.x67bb7w {
|
|
2097
|
+
pointer-events: auto;
|
|
2098
|
+
}
|
|
2099
|
+
|
|
1833
2100
|
.x47corl {
|
|
1834
2101
|
pointer-events: none;
|
|
1835
2102
|
}
|
|
@@ -1882,6 +2149,10 @@
|
|
|
1882
2149
|
stroke-width: 2.2px;
|
|
1883
2150
|
}
|
|
1884
2151
|
|
|
2152
|
+
.x1ip4yf {
|
|
2153
|
+
stroke-width: 2.5px;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
1885
2156
|
.xvlca1e {
|
|
1886
2157
|
stroke-width: 2px;
|
|
1887
2158
|
}
|
|
@@ -1962,6 +2233,14 @@
|
|
|
1962
2233
|
touch-action: none;
|
|
1963
2234
|
}
|
|
1964
2235
|
|
|
2236
|
+
.x1764fhq {
|
|
2237
|
+
transform-box: fill-box;
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
.x1ybzjv4 {
|
|
2241
|
+
transform-origin: 16px 16px;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
1965
2244
|
.x1g0ag68 {
|
|
1966
2245
|
transform-origin: center;
|
|
1967
2246
|
}
|
|
@@ -1978,8 +2257,12 @@
|
|
|
1978
2257
|
transform: rotate(90deg);
|
|
1979
2258
|
}
|
|
1980
2259
|
|
|
1981
|
-
.
|
|
1982
|
-
transform:
|
|
2260
|
+
.x11lhmoz {
|
|
2261
|
+
transform: translate(-50%, -50%);
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
.xacbhai {
|
|
2265
|
+
transform: translateY(var(--drawer-swipe-movement-y, 0px));
|
|
1983
2266
|
}
|
|
1984
2267
|
|
|
1985
2268
|
.xx6bhzk {
|
|
@@ -1998,10 +2281,18 @@
|
|
|
1998
2281
|
transition-duration: .2s;
|
|
1999
2282
|
}
|
|
2000
2283
|
|
|
2284
|
+
.x1szhkt1 {
|
|
2285
|
+
transition-duration: var(--stridge-kit-duration-normal);
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2001
2288
|
.x1vhb3u9 {
|
|
2002
2289
|
transition-duration: var(--stridge-kit-duration-fast);
|
|
2003
2290
|
}
|
|
2004
2291
|
|
|
2292
|
+
.x1s4mzch {
|
|
2293
|
+
transition-duration: var(--stridge-kit-duration-slow);
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2005
2296
|
.x11vqxbs {
|
|
2006
2297
|
transition-property: background-color, border-color, box-shadow;
|
|
2007
2298
|
}
|
|
@@ -2014,6 +2305,10 @@
|
|
|
2014
2305
|
transition-property: background-color, border-color, color, box-shadow, transform;
|
|
2015
2306
|
}
|
|
2016
2307
|
|
|
2308
|
+
.xgzoi8n {
|
|
2309
|
+
transition-property: background-color, border-color, color, box-shadow;
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2017
2312
|
.x1eaenvl {
|
|
2018
2313
|
transition-property: background-color, border-color, color;
|
|
2019
2314
|
}
|
|
@@ -2038,6 +2333,10 @@
|
|
|
2038
2333
|
transition-property: box-shadow;
|
|
2039
2334
|
}
|
|
2040
2335
|
|
|
2336
|
+
.xt3l3uh {
|
|
2337
|
+
transition-property: color;
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2041
2340
|
.x1vma9ed {
|
|
2042
2341
|
transition-property: font-size, width;
|
|
2043
2342
|
}
|
|
@@ -2046,6 +2345,10 @@
|
|
|
2046
2345
|
transition-property: height;
|
|
2047
2346
|
}
|
|
2048
2347
|
|
|
2348
|
+
.x36inuq {
|
|
2349
|
+
transition-property: left, right, top, bottom, width, height;
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2049
2352
|
.x19991ni {
|
|
2050
2353
|
transition-property: opacity;
|
|
2051
2354
|
}
|
|
@@ -2066,6 +2369,10 @@
|
|
|
2066
2369
|
transition-timing-function: ease-out;
|
|
2067
2370
|
}
|
|
2068
2371
|
|
|
2372
|
+
.xr4whw6 {
|
|
2373
|
+
transition-timing-function: var(--stridge-kit-ease-enter);
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2069
2376
|
.x1xv5090 {
|
|
2070
2377
|
transition-timing-function: var(--stridge-kit-ease-out);
|
|
2071
2378
|
}
|
|
@@ -2111,10 +2418,6 @@
|
|
|
2111
2418
|
will-change: height;
|
|
2112
2419
|
}
|
|
2113
2420
|
|
|
2114
|
-
.x6my1t9 {
|
|
2115
|
-
will-change: opacity,transform;
|
|
2116
|
-
}
|
|
2117
|
-
|
|
2118
2421
|
.x1q1rmc8 {
|
|
2119
2422
|
will-change: transform,opacity;
|
|
2120
2423
|
}
|
|
@@ -2135,6 +2438,10 @@
|
|
|
2135
2438
|
z-index: 1;
|
|
2136
2439
|
}
|
|
2137
2440
|
|
|
2441
|
+
.x1n327nk {
|
|
2442
|
+
z-index: 10;
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2138
2445
|
.x11uqc5h {
|
|
2139
2446
|
z-index: 100;
|
|
2140
2447
|
}
|
|
@@ -2219,6 +2526,18 @@
|
|
|
2219
2526
|
box-shadow: var(--stridge-kit-shadow-ring-focus);
|
|
2220
2527
|
}
|
|
2221
2528
|
|
|
2529
|
+
.x1perupi:is(a:hover, a:focus-visible) [data-stridge-slot~="attribution-mark"] {
|
|
2530
|
+
color: color-mix(in oklab,var(--stridge-kit-attribution-mark-color) 78%,var(--stridge-kit-foreground));
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
.x19k0ldo:is(a:hover, a:focus-visible) [data-stridge-slot~="attribution-wordmark"] {
|
|
2534
|
+
color: color-mix(in oklab,var(--stridge-kit-attribution-wordmark-color) 78%,var(--stridge-kit-foreground));
|
|
2535
|
+
}
|
|
2536
|
+
|
|
2537
|
+
.x1wa2jhk:is(a:hover, a:focus-visible) [data-stridge-slot~="attribution-prefix"] {
|
|
2538
|
+
color: color-mix(in oklab,var(--stridge-kit-attribution-prefix-color) 78%,var(--stridge-kit-foreground));
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2222
2541
|
.x111phvh:active:not(:disabled), .x70x1a4:hover:not(:disabled) {
|
|
2223
2542
|
color: var(--stridge-kit-foreground);
|
|
2224
2543
|
}
|
|
@@ -2227,6 +2546,10 @@
|
|
|
2227
2546
|
color: var(--stridge-kit-muted-foreground);
|
|
2228
2547
|
}
|
|
2229
2548
|
|
|
2549
|
+
.x1i2unn7:is([data-starting-style], [data-ending-style]) {
|
|
2550
|
+
opacity: 0;
|
|
2551
|
+
}
|
|
2552
|
+
|
|
2230
2553
|
.x11ayl2i:focus-visible {
|
|
2231
2554
|
outline-color: var(--stridge-kit-ring);
|
|
2232
2555
|
}
|
|
@@ -2247,6 +2570,14 @@
|
|
|
2247
2570
|
outline-width: 2px;
|
|
2248
2571
|
}
|
|
2249
2572
|
|
|
2573
|
+
.x1diuls0:is(a:hover, a:focus-visible) [data-stridge-slot~="attribution-wordmark"] {
|
|
2574
|
+
text-underline-offset: 2px;
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
.xjvuu2i:is([data-starting-style], [data-ending-style]) {
|
|
2578
|
+
transform: translateY(100%);
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2250
2581
|
.x1yi73pz:has( > input:focus-visible, > textarea:focus-visible) {
|
|
2251
2582
|
box-shadow: var(--stridge-kit-shadow-ring-focus);
|
|
2252
2583
|
}
|
|
@@ -2307,6 +2638,10 @@
|
|
|
2307
2638
|
background-color: color-mix(in oklab,var(--stridge-kit-destructive) 80%,var(--stridge-kit-foreground));
|
|
2308
2639
|
}
|
|
2309
2640
|
|
|
2641
|
+
.xyv6lf4:hover {
|
|
2642
|
+
background-color: color-mix(in oklab,var(--stridge-kit-tabs-list-surface) 50%,transparent);
|
|
2643
|
+
}
|
|
2644
|
+
|
|
2310
2645
|
.x1ehxjrm:hover {
|
|
2311
2646
|
background-color: color-mix(in oklab,var(--stridge-kit-destructive-soft) 86%,var(--stridge-kit-foreground));
|
|
2312
2647
|
}
|
|
@@ -2327,6 +2662,10 @@
|
|
|
2327
2662
|
color: var(--stridge-kit-muted-foreground);
|
|
2328
2663
|
}
|
|
2329
2664
|
|
|
2665
|
+
.xbs6d1p:hover {
|
|
2666
|
+
color: var(--stridge-kit-tabs-tab-foreground-active);
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2330
2669
|
.x1mzqehw:hover {
|
|
2331
2670
|
opacity: .6;
|
|
2332
2671
|
}
|
|
@@ -2380,6 +2719,10 @@
|
|
|
2380
2719
|
animation-duration: 0s;
|
|
2381
2720
|
}
|
|
2382
2721
|
|
|
2722
|
+
.x80wavc.x80wavc {
|
|
2723
|
+
animation-duration: 3.5s;
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2383
2726
|
.x1aquc0h.x1aquc0h {
|
|
2384
2727
|
animation-name: none;
|
|
2385
2728
|
}
|
|
@@ -2387,6 +2730,10 @@
|
|
|
2387
2730
|
.x12w9bfk.x12w9bfk {
|
|
2388
2731
|
transition-duration: 0s;
|
|
2389
2732
|
}
|
|
2733
|
+
|
|
2734
|
+
.x4wkmsb.x4wkmsb {
|
|
2735
|
+
transition-property: none;
|
|
2736
|
+
}
|
|
2390
2737
|
}
|
|
2391
2738
|
|
|
2392
2739
|
@container field-group (width >= 32rem) {
|
|
@@ -2451,6 +2798,10 @@
|
|
|
2451
2798
|
border-top-color: var(--stridge-kit-card-border);
|
|
2452
2799
|
}
|
|
2453
2800
|
|
|
2801
|
+
.x19bq4ie {
|
|
2802
|
+
border-top-color: var(--stridge-kit-details-border);
|
|
2803
|
+
}
|
|
2804
|
+
|
|
2454
2805
|
.x1wc9ssx {
|
|
2455
2806
|
border-top-color: var(--stridge-kit-card-border-frame);
|
|
2456
2807
|
}
|
|
@@ -2535,6 +2886,10 @@
|
|
|
2535
2886
|
height: 200px;
|
|
2536
2887
|
}
|
|
2537
2888
|
|
|
2889
|
+
.x17rw0jw {
|
|
2890
|
+
height: 22px;
|
|
2891
|
+
}
|
|
2892
|
+
|
|
2538
2893
|
.xxk0z11 {
|
|
2539
2894
|
height: 24px;
|
|
2540
2895
|
}
|
|
@@ -2551,6 +2906,10 @@
|
|
|
2551
2906
|
height: 36px;
|
|
2552
2907
|
}
|
|
2553
2908
|
|
|
2909
|
+
.xn3w4p2 {
|
|
2910
|
+
height: 44px;
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2554
2913
|
.xwvwv9b {
|
|
2555
2914
|
height: 46px;
|
|
2556
2915
|
}
|
|
@@ -2559,6 +2918,10 @@
|
|
|
2559
2918
|
height: 64px;
|
|
2560
2919
|
}
|
|
2561
2920
|
|
|
2921
|
+
.xdk7pt {
|
|
2922
|
+
height: 8px;
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2562
2925
|
.xegnrdp {
|
|
2563
2926
|
height: 9px;
|
|
2564
2927
|
}
|
|
@@ -2571,10 +2934,18 @@
|
|
|
2571
2934
|
height: fit-content;
|
|
2572
2935
|
}
|
|
2573
2936
|
|
|
2937
|
+
.x1gezbiy {
|
|
2938
|
+
height: var(--active-tab-height);
|
|
2939
|
+
}
|
|
2940
|
+
|
|
2574
2941
|
.xuan8c8 {
|
|
2575
2942
|
height: var(--collapsible-panel-height);
|
|
2576
2943
|
}
|
|
2577
2944
|
|
|
2945
|
+
.xl3s093 {
|
|
2946
|
+
height: var(--stridge-kit-drawer-handle-thickness);
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2578
2949
|
.x1nrll8i {
|
|
2579
2950
|
left: 50%;
|
|
2580
2951
|
}
|
|
@@ -2583,6 +2954,10 @@
|
|
|
2583
2954
|
left: auto;
|
|
2584
2955
|
}
|
|
2585
2956
|
|
|
2957
|
+
.xvbikie {
|
|
2958
|
+
left: var(--active-tab-left);
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2586
2961
|
.xat24cr {
|
|
2587
2962
|
margin-bottom: 0;
|
|
2588
2963
|
}
|
|
@@ -2679,10 +3054,18 @@
|
|
|
2679
3054
|
max-height: calc(100% - 2rem);
|
|
2680
3055
|
}
|
|
2681
3056
|
|
|
3057
|
+
.x17geuhg {
|
|
3058
|
+
max-height: min(60vh, 500px);
|
|
3059
|
+
}
|
|
3060
|
+
|
|
2682
3061
|
.x1ko6lg0 {
|
|
2683
3062
|
max-height: min(var(--available-height),200px);
|
|
2684
3063
|
}
|
|
2685
3064
|
|
|
3065
|
+
.x96tae4 {
|
|
3066
|
+
max-height: var(--stridge-kit-drawer-max-block-size);
|
|
3067
|
+
}
|
|
3068
|
+
|
|
2686
3069
|
.x193iq5w {
|
|
2687
3070
|
max-width: 100%;
|
|
2688
3071
|
}
|
|
@@ -2707,6 +3090,10 @@
|
|
|
2707
3090
|
max-width: min(var(--stridge-kit-dialog-width),calc(100% - 2rem));
|
|
2708
3091
|
}
|
|
2709
3092
|
|
|
3093
|
+
.x1qvtwti {
|
|
3094
|
+
max-width: var(--stridge-kit-drawer-max-inline-size);
|
|
3095
|
+
}
|
|
3096
|
+
|
|
2710
3097
|
.x2lwn1j {
|
|
2711
3098
|
min-height: 0;
|
|
2712
3099
|
}
|
|
@@ -2735,6 +3122,10 @@
|
|
|
2735
3122
|
min-height: 32px;
|
|
2736
3123
|
}
|
|
2737
3124
|
|
|
3125
|
+
.x1dby22o {
|
|
3126
|
+
min-height: 360px;
|
|
3127
|
+
}
|
|
3128
|
+
|
|
2738
3129
|
.x1ba4aug {
|
|
2739
3130
|
min-height: 40px;
|
|
2740
3131
|
}
|
|
@@ -2767,10 +3158,6 @@
|
|
|
2767
3158
|
overflow-y: auto;
|
|
2768
3159
|
}
|
|
2769
3160
|
|
|
2770
|
-
.x1rife3k {
|
|
2771
|
-
overflow-y: scroll;
|
|
2772
|
-
}
|
|
2773
|
-
|
|
2774
3161
|
.xnw97ix {
|
|
2775
3162
|
padding-bottom: .125rem;
|
|
2776
3163
|
}
|
|
@@ -2819,10 +3206,18 @@
|
|
|
2819
3206
|
padding-bottom: var(--stridge-kit-space-3);
|
|
2820
3207
|
}
|
|
2821
3208
|
|
|
3209
|
+
.xpnfv0q {
|
|
3210
|
+
padding-bottom: var(--stridge-kit-space-5);
|
|
3211
|
+
}
|
|
3212
|
+
|
|
2822
3213
|
.x1ww8orz {
|
|
2823
3214
|
padding-bottom: var(--stridge-kit-space-2);
|
|
2824
3215
|
}
|
|
2825
3216
|
|
|
3217
|
+
.x1ej8hiu {
|
|
3218
|
+
padding-bottom: var(--stridge-kit-space-10);
|
|
3219
|
+
}
|
|
3220
|
+
|
|
2826
3221
|
.xrhwvvd {
|
|
2827
3222
|
padding-top: .125rem;
|
|
2828
3223
|
}
|
|
@@ -2887,6 +3282,10 @@
|
|
|
2887
3282
|
padding-top: 9px;
|
|
2888
3283
|
}
|
|
2889
3284
|
|
|
3285
|
+
.xtgch2x {
|
|
3286
|
+
padding-top: var(--stridge-kit-space-6);
|
|
3287
|
+
}
|
|
3288
|
+
|
|
2890
3289
|
.x1h03h88 {
|
|
2891
3290
|
padding-top: var(--stridge-kit-space-4);
|
|
2892
3291
|
}
|
|
@@ -2899,10 +3298,18 @@
|
|
|
2899
3298
|
padding-top: var(--stridge-kit-space-3);
|
|
2900
3299
|
}
|
|
2901
3300
|
|
|
3301
|
+
.x4xct4k {
|
|
3302
|
+
padding-top: var(--stridge-kit-space-5);
|
|
3303
|
+
}
|
|
3304
|
+
|
|
2902
3305
|
.x2tg1xt {
|
|
2903
3306
|
padding-top: var(--stridge-kit-space-2);
|
|
2904
3307
|
}
|
|
2905
3308
|
|
|
3309
|
+
.x1saie51 {
|
|
3310
|
+
padding-top: var(--stridge-kit-space-10);
|
|
3311
|
+
}
|
|
3312
|
+
|
|
2906
3313
|
.x13vifvy {
|
|
2907
3314
|
top: 0;
|
|
2908
3315
|
}
|
|
@@ -2911,6 +3318,14 @@
|
|
|
2911
3318
|
top: 14px;
|
|
2912
3319
|
}
|
|
2913
3320
|
|
|
3321
|
+
.xwa60dl {
|
|
3322
|
+
top: 50%;
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3325
|
+
.x10uur0e {
|
|
3326
|
+
top: var(--active-tab-top);
|
|
3327
|
+
}
|
|
3328
|
+
|
|
2914
3329
|
.xh8yej3 {
|
|
2915
3330
|
width: 100%;
|
|
2916
3331
|
}
|
|
@@ -2939,6 +3354,10 @@
|
|
|
2939
3354
|
width: 16px;
|
|
2940
3355
|
}
|
|
2941
3356
|
|
|
3357
|
+
.x1xp8n7a {
|
|
3358
|
+
width: 18px;
|
|
3359
|
+
}
|
|
3360
|
+
|
|
2942
3361
|
.x1so1ns2 {
|
|
2943
3362
|
width: 192px;
|
|
2944
3363
|
}
|
|
@@ -2951,6 +3370,10 @@
|
|
|
2951
3370
|
width: 220px;
|
|
2952
3371
|
}
|
|
2953
3372
|
|
|
3373
|
+
.x17z2i9w {
|
|
3374
|
+
width: 22px;
|
|
3375
|
+
}
|
|
3376
|
+
|
|
2954
3377
|
.xgd8bvy {
|
|
2955
3378
|
width: 28px;
|
|
2956
3379
|
}
|
|
@@ -2967,10 +3390,18 @@
|
|
|
2967
3390
|
width: 36px;
|
|
2968
3391
|
}
|
|
2969
3392
|
|
|
3393
|
+
.x187nhsf {
|
|
3394
|
+
width: 44px;
|
|
3395
|
+
}
|
|
3396
|
+
|
|
2970
3397
|
.x1fu8urw {
|
|
2971
3398
|
width: 64px;
|
|
2972
3399
|
}
|
|
2973
3400
|
|
|
3401
|
+
.x1xc55vz {
|
|
3402
|
+
width: 8px;
|
|
3403
|
+
}
|
|
3404
|
+
|
|
2974
3405
|
.xfxxnmn {
|
|
2975
3406
|
width: calc(100% - 28px);
|
|
2976
3407
|
}
|
|
@@ -2983,6 +3414,22 @@
|
|
|
2983
3414
|
width: max-content;
|
|
2984
3415
|
}
|
|
2985
3416
|
|
|
3417
|
+
.xoffw1 {
|
|
3418
|
+
width: var(--active-tab-width);
|
|
3419
|
+
}
|
|
3420
|
+
|
|
3421
|
+
.x19k59d4 {
|
|
3422
|
+
width: var(--stridge-kit-drawer-handle-size);
|
|
3423
|
+
}
|
|
3424
|
+
|
|
3425
|
+
.x1et6zyk.x1et6zyk:where([dir="rtl"]) :scope {
|
|
3426
|
+
left: auto;
|
|
3427
|
+
}
|
|
3428
|
+
|
|
3429
|
+
.xdvm21q.xdvm21q:where([dir="rtl"]) :scope {
|
|
3430
|
+
right: var(--active-tab-right);
|
|
3431
|
+
}
|
|
3432
|
+
|
|
2986
3433
|
.x1g31smg:first-child {
|
|
2987
3434
|
border-top-width: 0;
|
|
2988
3435
|
}
|
|
@@ -3043,6 +3490,10 @@
|
|
|
3043
3490
|
}
|
|
3044
3491
|
|
|
3045
3492
|
@layer priority6 {
|
|
3493
|
+
.x7kzco9[data-active] {
|
|
3494
|
+
border-color: var(--stridge-kit-foreground);
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3046
3497
|
.x13rkwjk[aria-invalid="true"][data-popup-open], .x1e0f7l1[aria-invalid="true"], .xu6psuv[aria-invalid="true"]:focus-visible {
|
|
3047
3498
|
border-color: var(--stridge-kit-destructive-border);
|
|
3048
3499
|
}
|
|
@@ -3105,10 +3556,18 @@
|
|
|
3105
3556
|
animation-timing-function: var(--stridge-kit-ease-exit);
|
|
3106
3557
|
}
|
|
3107
3558
|
|
|
3559
|
+
.xthri8c[data-active], .xynnxzo[data-disabled] {
|
|
3560
|
+
background-color: #0000;
|
|
3561
|
+
}
|
|
3562
|
+
|
|
3108
3563
|
.xevhoj0[data-highlighted] {
|
|
3109
3564
|
background-color: var(--stridge-kit-tile-surface);
|
|
3110
3565
|
}
|
|
3111
3566
|
|
|
3567
|
+
.x1anawn6[data-active] {
|
|
3568
|
+
background-color: var(--stridge-kit-foreground);
|
|
3569
|
+
}
|
|
3570
|
+
|
|
3112
3571
|
.x9oo2q2[aria-expanded="true"] {
|
|
3113
3572
|
background-color: var(--stridge-kit-muted);
|
|
3114
3573
|
}
|
|
@@ -3133,18 +3592,42 @@
|
|
|
3133
3592
|
color: var(--stridge-kit-destructive);
|
|
3134
3593
|
}
|
|
3135
3594
|
|
|
3595
|
+
.xctydo3[data-disabled] {
|
|
3596
|
+
color: var(--stridge-kit-tabs-tab-foreground);
|
|
3597
|
+
}
|
|
3598
|
+
|
|
3136
3599
|
.x163giyb[data-highlighted] {
|
|
3137
3600
|
color: var(--stridge-kit-popover-foreground);
|
|
3138
3601
|
}
|
|
3139
3602
|
|
|
3603
|
+
.xqclgz3[data-active] {
|
|
3604
|
+
color: var(--stridge-kit-tabs-tab-foreground-active);
|
|
3605
|
+
}
|
|
3606
|
+
|
|
3607
|
+
.xuz9cdh[data-active] {
|
|
3608
|
+
color: var(--stridge-kit-background);
|
|
3609
|
+
}
|
|
3610
|
+
|
|
3611
|
+
.x1j1ks5o[data-disabled] {
|
|
3612
|
+
cursor: not-allowed;
|
|
3613
|
+
}
|
|
3614
|
+
|
|
3140
3615
|
.xzuuoaq[hidden]:not([hidden="until-found"]) {
|
|
3141
3616
|
display: none;
|
|
3142
3617
|
}
|
|
3143
3618
|
|
|
3144
|
-
.xrvs7vr[data-orientation="horizontal"] {
|
|
3619
|
+
.x1nquej0[data-orientation="vertical"], .xrvs7vr[data-orientation="horizontal"] {
|
|
3145
3620
|
flex-direction: column;
|
|
3146
3621
|
}
|
|
3147
3622
|
|
|
3623
|
+
.xlpxku1[data-orientation="vertical"] {
|
|
3624
|
+
flex-direction: row;
|
|
3625
|
+
}
|
|
3626
|
+
|
|
3627
|
+
.x1xpet1t[data-active] {
|
|
3628
|
+
font-weight: var(--stridge-kit-font-weight-semibold);
|
|
3629
|
+
}
|
|
3630
|
+
|
|
3148
3631
|
.x118mprz[data-side="inline-start"] {
|
|
3149
3632
|
inset-inline-end: -13px;
|
|
3150
3633
|
}
|
|
@@ -3161,6 +3644,10 @@
|
|
|
3161
3644
|
inset-inline-start: 0;
|
|
3162
3645
|
}
|
|
3163
3646
|
|
|
3647
|
+
.x1sydc4h[data-orientation="vertical"] {
|
|
3648
|
+
justify-content: flex-start;
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3164
3651
|
.x11xjgb3[data-disabled] {
|
|
3165
3652
|
opacity: .45;
|
|
3166
3653
|
}
|
|
@@ -3197,6 +3684,10 @@
|
|
|
3197
3684
|
transform: rotate(90deg);
|
|
3198
3685
|
}
|
|
3199
3686
|
|
|
3687
|
+
.xsqp3co[data-swiping] {
|
|
3688
|
+
transition-duration: 0s;
|
|
3689
|
+
}
|
|
3690
|
+
|
|
3200
3691
|
@media (prefers-reduced-motion: reduce) {
|
|
3201
3692
|
.xgx5xwo.xgx5xwo[data-closed], .xslpr3k.xslpr3k[data-open] {
|
|
3202
3693
|
animation-duration: 0s;
|
|
@@ -3225,6 +3716,10 @@
|
|
|
3225
3716
|
flex: 1;
|
|
3226
3717
|
}
|
|
3227
3718
|
|
|
3719
|
+
.x1nzntce[data-orientation="horizontal"] {
|
|
3720
|
+
height: .125rem;
|
|
3721
|
+
}
|
|
3722
|
+
|
|
3228
3723
|
.x12wejat[data-ending-style], .x1fe7yth[data-starting-style] {
|
|
3229
3724
|
height: 0;
|
|
3230
3725
|
}
|
|
@@ -3233,6 +3728,14 @@
|
|
|
3233
3728
|
height: 100%;
|
|
3234
3729
|
}
|
|
3235
3730
|
|
|
3731
|
+
.x6demw2[data-orientation="vertical"] {
|
|
3732
|
+
height: calc(var(--active-tab-height) * .8);
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
.x1smgklz[data-orientation="vertical"] {
|
|
3736
|
+
height: fit-content;
|
|
3737
|
+
}
|
|
3738
|
+
|
|
3236
3739
|
.x1thhcpk[data-orientation="horizontal"] {
|
|
3237
3740
|
height: var(--stridge-kit-space-3);
|
|
3238
3741
|
}
|
|
@@ -3241,6 +3744,10 @@
|
|
|
3241
3744
|
left: -13px;
|
|
3242
3745
|
}
|
|
3243
3746
|
|
|
3747
|
+
.x1fhtaip[data-orientation="vertical"] {
|
|
3748
|
+
left: 0;
|
|
3749
|
+
}
|
|
3750
|
+
|
|
3244
3751
|
.x1f3sk1h[data-side="left"] {
|
|
3245
3752
|
right: -13px;
|
|
3246
3753
|
}
|
|
@@ -3257,13 +3764,29 @@
|
|
|
3257
3764
|
top: 100%;
|
|
3258
3765
|
}
|
|
3259
3766
|
|
|
3260
|
-
.
|
|
3767
|
+
.xfdi2ae[data-orientation="vertical"] {
|
|
3768
|
+
top: calc(var(--active-tab-top) + var(--active-tab-height) * .1);
|
|
3769
|
+
}
|
|
3770
|
+
|
|
3771
|
+
.x13i9a9u[data-orientation="vertical"] {
|
|
3772
|
+
width: .125rem;
|
|
3773
|
+
}
|
|
3774
|
+
|
|
3775
|
+
.x1nvwyg1[data-orientation="vertical"], .x90yeee[data-orientation="horizontal"] {
|
|
3261
3776
|
width: 100%;
|
|
3262
3777
|
}
|
|
3263
3778
|
|
|
3264
3779
|
.xr4lo6p[data-orientation="vertical"] {
|
|
3265
3780
|
width: var(--stridge-kit-space-3);
|
|
3266
3781
|
}
|
|
3782
|
+
|
|
3783
|
+
.xqse6zn.xqse6zn:where([dir="rtl"]) :scope[data-orientation="vertical"] {
|
|
3784
|
+
left: auto;
|
|
3785
|
+
}
|
|
3786
|
+
|
|
3787
|
+
.x1ef44r0.x1ef44r0:where([dir="rtl"]) :scope[data-orientation="vertical"] {
|
|
3788
|
+
right: 0;
|
|
3789
|
+
}
|
|
3267
3790
|
}
|
|
3268
3791
|
|
|
3269
3792
|
@layer priority9 {
|
|
@@ -3396,6 +3919,26 @@
|
|
|
3396
3919
|
}
|
|
3397
3920
|
}
|
|
3398
3921
|
|
|
3922
|
+
@keyframes x18re5ia-B {
|
|
3923
|
+
from {
|
|
3924
|
+
opacity: 0;
|
|
3925
|
+
}
|
|
3926
|
+
|
|
3927
|
+
to {
|
|
3928
|
+
opacity: 1;
|
|
3929
|
+
}
|
|
3930
|
+
}
|
|
3931
|
+
|
|
3932
|
+
@keyframes xmr5gd0-B {
|
|
3933
|
+
0%, 80%, 100% {
|
|
3934
|
+
opacity: 0;
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
40% {
|
|
3938
|
+
opacity: 1;
|
|
3939
|
+
}
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3399
3942
|
@keyframes x1k48ry3-B {
|
|
3400
3943
|
from {
|
|
3401
3944
|
opacity: 0;
|
|
@@ -3408,6 +3951,18 @@
|
|
|
3408
3951
|
}
|
|
3409
3952
|
}
|
|
3410
3953
|
|
|
3954
|
+
@keyframes x1deacm-B {
|
|
3955
|
+
0% {
|
|
3956
|
+
opacity: 0;
|
|
3957
|
+
transform: translateY(2px);
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
100% {
|
|
3961
|
+
opacity: 1;
|
|
3962
|
+
transform: translateY(0);
|
|
3963
|
+
}
|
|
3964
|
+
}
|
|
3965
|
+
|
|
3411
3966
|
@keyframes x1l9pw95-B {
|
|
3412
3967
|
0% {
|
|
3413
3968
|
opacity: 0;
|