@stridge/kit 0.1.0-alpha.61 → 0.1.0-alpha.63
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/_internal/deposit/driver/index.d.ts +2 -2
- package/dist/deposit/compound/index.d.ts +10 -2
- package/dist/deposit/compound/index.js +1 -1
- package/dist/deposit/widgets/index.d.ts +3 -1
- package/dist/deposit/widgets/index.js +1 -1
- package/dist/drivers/stridge/createStridgeDepositDriver.js +1 -1
- package/dist/drivers/stridge-mock/createStridgeMockDriver.js +1 -1
- package/dist/drivers/stridge-mock/fixtures.d.ts +1 -1
- package/dist/drivers/stridge-mock/fixtures.js +1 -1
- package/dist/flows/deposit/dialog/DepositDialog.js +1 -1
- package/dist/flows/deposit/driver/payloads.d.ts +136 -7
- package/dist/flows/deposit/driver/types.d.ts +44 -2
- package/dist/flows/deposit/orchestrator/controller.js +1 -1
- package/dist/flows/deposit/orchestrator/reducer.js +1 -1
- package/dist/flows/deposit/orchestrator/types.d.ts +105 -12
- package/dist/flows/deposit/shared/onramp.js +1 -1
- package/dist/flows/deposit/shared/onrampError.js +1 -0
- package/dist/flows/deposit/widgets/deposit/Deposit.js +1 -1
- package/dist/flows/deposit/widgets/error-state/ErrorState.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/OnrampAmountEntry.d.ts +12 -8
- package/dist/flows/deposit/widgets/onramp-amount-entry/OnrampAmountEntry.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.d.ts +4 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.slots.d.ts +7 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.slots.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.styles.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/CurrencyChip.d.ts +12 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/CurrencyChip.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/ProviderCard.d.ts +12 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/ProviderCard.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/ReceiveChip.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/context.d.ts +14 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/types.d.ts +12 -1
- package/dist/flows/deposit/widgets/onramp-confirm/OnrampConfirm.d.ts +2 -0
- package/dist/flows/deposit/widgets/onramp-confirm/OnrampConfirm.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.d.ts +2 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.slots.d.ts +7 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.slots.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.styles.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Body.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Disclaimer.d.ts +21 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Disclaimer.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Summary.d.ts +2 -2
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Summary.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/context.d.ts +28 -7
- package/dist/flows/deposit/widgets/onramp-confirm/compound/index.d.ts +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/types.d.ts +7 -2
- package/dist/flows/deposit/widgets/onramp-currency-picker/OnrampCurrencyPicker.d.ts +39 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/OnrampCurrencyPicker.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/OnrampCurrencyPicker.d.ts +37 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/OnrampCurrencyPicker.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/OnrampCurrencyPicker.slots.d.ts +17 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/OnrampCurrencyPicker.slots.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/OnrampCurrencyPicker.styles.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Body.d.ts +6 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Body.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/CurrencyRow.d.ts +12 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/CurrencyRow.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Empty.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Header.d.ts +10 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Header.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Search.d.ts +6 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Search.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/context.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/index.d.ts +3 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/types.d.ts +48 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/OnrampPaymentPending.d.ts +2 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/OnrampPaymentPending.js +1 -1
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.d.ts +6 -1
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.js +1 -1
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.slots.d.ts +3 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.slots.js +1 -1
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/components/Flow.d.ts +13 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/components/Flow.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/components/Flow.styles.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/context.d.ts +32 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/OnrampProviderPicker.d.ts +38 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/OnrampProviderPicker.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/OnrampProviderPicker.d.ts +35 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/OnrampProviderPicker.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/OnrampProviderPicker.slots.d.ts +19 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/OnrampProviderPicker.slots.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/OnrampProviderPicker.styles.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/Body.d.ts +6 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/Body.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/Header.d.ts +10 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/Header.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/ProviderRow.d.ts +15 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/ProviderRow.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/context.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/index.d.ts +3 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/types.d.ts +50 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/index.js +1 -0
- package/dist/flows/deposit/widgets/success-state/SuccessState.js +1 -1
- package/dist/flows/withdraw/widgets/withdraw-form/compound/components/RecipientField.js +1 -1
- package/dist/format/index.d.ts +2 -1
- package/dist/format/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 +1 -1
- package/dist/icons/index.d.ts +4 -1
- package/dist/icons/index.js +1 -1
- package/dist/package.js +1 -1
- package/dist/shared/attribution/Attribution.js +1 -1
- package/dist/shared/attribution/Attribution.styles.js +1 -1
- package/dist/shared/dialog/Frame.js +1 -1
- package/dist/shared/format/formatFiat.d.ts +31 -0
- package/dist/shared/format/formatFiat.js +1 -0
- package/dist/shared/icons/BellIcon.d.ts +7 -0
- package/dist/shared/icons/BellIcon.js +1 -0
- package/dist/shared/icons/DirhamSignIcon.d.ts +16 -0
- package/dist/shared/icons/DirhamSignIcon.js +1 -0
- package/dist/shared/icons/SearchIcon.d.ts +7 -0
- package/dist/shared/icons/SearchIcon.js +1 -0
- package/dist/shared/ui/AmountInput/useAutoShrinkFontSize.js +1 -1
- package/dist/shared/ui/Checkbox/Checkbox.d.ts +47 -0
- package/dist/shared/ui/Checkbox/Checkbox.js +1 -0
- package/dist/shared/ui/Checkbox/Checkbox.slots.d.ts +12 -0
- package/dist/shared/ui/Checkbox/Checkbox.slots.js +1 -0
- package/dist/shared/ui/Checkbox/Checkbox.styles.js +1 -0
- package/dist/shared/ui/Checkbox/index.d.ts +2 -0
- package/dist/shared/ui/Checkbox/index.js +1 -0
- package/dist/shared/ui/CurrencyGlyph/CurrencyGlyph.d.ts +36 -0
- package/dist/shared/ui/CurrencyGlyph/CurrencyGlyph.js +1 -0
- package/dist/shared/ui/CurrencyGlyph/CurrencyGlyph.slots.d.ts +12 -0
- package/dist/shared/ui/CurrencyGlyph/CurrencyGlyph.slots.js +1 -0
- package/dist/shared/ui/CurrencyGlyph/CurrencyGlyph.styles.js +1 -0
- package/dist/shared/ui/CurrencyGlyph/flags.js +1 -0
- package/dist/shared/ui/CurrencyGlyph/index.d.ts +2 -0
- package/dist/shared/ui/CurrencyGlyph/index.js +1 -0
- package/dist/shared/ui/DisclosureRow/DisclosureRow.d.ts +56 -0
- package/dist/shared/ui/DisclosureRow/DisclosureRow.js +1 -0
- package/dist/shared/ui/DisclosureRow/DisclosureRow.slots.d.ts +8 -0
- package/dist/shared/ui/DisclosureRow/DisclosureRow.slots.js +1 -0
- package/dist/shared/ui/DisclosureRow/DisclosureRow.styles.js +1 -0
- package/dist/shared/ui/DisclosureRow/index.d.ts +2 -0
- package/dist/shared/ui/DisclosureRow/index.js +1 -0
- package/dist/shared/ui/FiatSymbol/FiatAmount.d.ts +32 -0
- package/dist/shared/ui/FiatSymbol/FiatAmount.js +1 -0
- package/dist/shared/ui/FiatSymbol/FiatSymbol.d.ts +30 -0
- package/dist/shared/ui/FiatSymbol/FiatSymbol.js +1 -0
- package/dist/shared/ui/FiatSymbol/index.d.ts +2 -0
- package/dist/shared/ui/FiatSymbol/index.js +1 -0
- package/dist/shared/utils/logos/resolveLogoSrc.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/AmountEntry.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/AmountEntry.styles.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/components/Hero/Hero.d.ts +2 -1
- package/dist/shared/widgets/amount-entry/compound/components/Hero/Hero.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/components/Hero/StaticBand.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/types.d.ts +10 -0
- package/dist/shared/widgets/confirm-transfer/compound/components/Breakdown.js +1 -1
- package/dist/shared/widgets/error-state/compound/ErrorState.styles.js +1 -1
- package/dist/shared/widgets/error-state/compound/components/MoreDetails.d.ts +3 -3
- package/dist/shared/widgets/error-state/compound/components/MoreDetails.js +1 -1
- package/dist/shared/widgets/success-state/compound/SuccessState.styles.js +1 -1
- package/dist/shared/widgets/success-state/compound/components/MoreDetails.d.ts +2 -3
- package/dist/shared/widgets/success-state/compound/components/MoreDetails.js +1 -1
- package/dist/styles/index.css +118 -0
- package/dist/ui/index.d.ts +9 -1
- package/dist/ui/index.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
package/dist/styles/index.css
CHANGED
|
@@ -461,6 +461,14 @@
|
|
|
461
461
|
border-radius: 0;
|
|
462
462
|
}
|
|
463
463
|
|
|
464
|
+
.x4pepcl {
|
|
465
|
+
border-radius: 12px;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.x1cum3z5 {
|
|
469
|
+
border-radius: 2px;
|
|
470
|
+
}
|
|
471
|
+
|
|
464
472
|
.x16rqkct {
|
|
465
473
|
border-radius: 50%;
|
|
466
474
|
}
|
|
@@ -537,6 +545,10 @@
|
|
|
537
545
|
border-radius: var(--stridge-kit-tile-radius-pill);
|
|
538
546
|
}
|
|
539
547
|
|
|
548
|
+
.xbsl7fq {
|
|
549
|
+
border-style: dashed;
|
|
550
|
+
}
|
|
551
|
+
|
|
540
552
|
.xng3xce {
|
|
541
553
|
border-style: none;
|
|
542
554
|
}
|
|
@@ -549,6 +561,10 @@
|
|
|
549
561
|
border-width: 0;
|
|
550
562
|
}
|
|
551
563
|
|
|
564
|
+
.xvndefy {
|
|
565
|
+
border-width: 1.5px;
|
|
566
|
+
}
|
|
567
|
+
|
|
552
568
|
.xmkeg23 {
|
|
553
569
|
border-width: 1px;
|
|
554
570
|
}
|
|
@@ -745,6 +761,10 @@
|
|
|
745
761
|
padding-block: 4px;
|
|
746
762
|
}
|
|
747
763
|
|
|
764
|
+
.xifx94n {
|
|
765
|
+
padding-block: 5px;
|
|
766
|
+
}
|
|
767
|
+
|
|
748
768
|
.x1t0vds8 {
|
|
749
769
|
padding-block: 6px;
|
|
750
770
|
}
|
|
@@ -757,6 +777,10 @@
|
|
|
757
777
|
padding-block: 8px;
|
|
758
778
|
}
|
|
759
779
|
|
|
780
|
+
.x1yhm569 {
|
|
781
|
+
padding-block: var(--stridge-kit-space-4);
|
|
782
|
+
}
|
|
783
|
+
|
|
760
784
|
.x1yowcxs {
|
|
761
785
|
padding-block: var(--stridge-kit-space-3);
|
|
762
786
|
}
|
|
@@ -937,6 +961,10 @@
|
|
|
937
961
|
align-items: center;
|
|
938
962
|
}
|
|
939
963
|
|
|
964
|
+
.xuk3077 {
|
|
965
|
+
align-items: flex-end;
|
|
966
|
+
}
|
|
967
|
+
|
|
940
968
|
.x1cy8zhl {
|
|
941
969
|
align-items: flex-start;
|
|
942
970
|
}
|
|
@@ -1321,6 +1349,16 @@
|
|
|
1321
1349
|
border-start-start-radius: var(--stridge-kit-card-radius-frame);
|
|
1322
1350
|
}
|
|
1323
1351
|
|
|
1352
|
+
.xf7hhl2 {
|
|
1353
|
+
box-shadow: 0 -1px 0 0 var(--stridge-kit-border),0 -8px 16px -6px #00000038;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
@supports (color: lab(0% 0 0)) {
|
|
1357
|
+
.xf7hhl2 {
|
|
1358
|
+
box-shadow: 0 -1px 0 0 var(--stridge-kit-border),0 -8px 16px -6px lab(0% 0 0 / .22);
|
|
1359
|
+
}
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1324
1362
|
.x1gsh91t {
|
|
1325
1363
|
box-shadow: 0 0 0 1.5px var(--stridge-kit-tile-surface);
|
|
1326
1364
|
}
|
|
@@ -2069,6 +2107,14 @@
|
|
|
2069
2107
|
padding-inline-start: 22px;
|
|
2070
2108
|
}
|
|
2071
2109
|
|
|
2110
|
+
.xyiysdx {
|
|
2111
|
+
padding-inline-start: 2px;
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
.xaso8d8 {
|
|
2115
|
+
padding-inline-start: 5px;
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2072
2118
|
.x25sj25 {
|
|
2073
2119
|
padding-inline-start: 6px;
|
|
2074
2120
|
}
|
|
@@ -2145,6 +2191,10 @@
|
|
|
2145
2191
|
stroke-width: 1.6px;
|
|
2146
2192
|
}
|
|
2147
2193
|
|
|
2194
|
+
.x68fu6m {
|
|
2195
|
+
stroke-width: 1.8px;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2148
2198
|
.xupzf07 {
|
|
2149
2199
|
stroke-width: 2.2px;
|
|
2150
2200
|
}
|
|
@@ -2157,6 +2207,10 @@
|
|
|
2157
2207
|
stroke-width: 2px;
|
|
2158
2208
|
}
|
|
2159
2209
|
|
|
2210
|
+
.xqjr0vm {
|
|
2211
|
+
stroke-width: 3px;
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2160
2214
|
.xrjhcif {
|
|
2161
2215
|
stroke: var(--stridge-kit-card-border);
|
|
2162
2216
|
}
|
|
@@ -2313,6 +2367,10 @@
|
|
|
2313
2367
|
transition-property: background-color, border-color, color;
|
|
2314
2368
|
}
|
|
2315
2369
|
|
|
2370
|
+
.xts7igz {
|
|
2371
|
+
transition-property: background-color, border-color;
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2316
2374
|
.xs2xxs2 {
|
|
2317
2375
|
transition-property: background-color, color;
|
|
2318
2376
|
}
|
|
@@ -2650,6 +2708,10 @@
|
|
|
2650
2708
|
background-color: #0000;
|
|
2651
2709
|
}
|
|
2652
2710
|
|
|
2711
|
+
.xiy4fg7:hover {
|
|
2712
|
+
background-color: var(--stridge-kit-surface-hover);
|
|
2713
|
+
}
|
|
2714
|
+
|
|
2653
2715
|
.x1tkvd9a:hover {
|
|
2654
2716
|
background-color: var(--stridge-kit-secondary);
|
|
2655
2717
|
}
|
|
@@ -2862,6 +2924,10 @@
|
|
|
2862
2924
|
height: 14px;
|
|
2863
2925
|
}
|
|
2864
2926
|
|
|
2927
|
+
.xx3o462 {
|
|
2928
|
+
height: 15px;
|
|
2929
|
+
}
|
|
2930
|
+
|
|
2865
2931
|
.xlup9mm {
|
|
2866
2932
|
height: 16px;
|
|
2867
2933
|
}
|
|
@@ -2914,6 +2980,14 @@
|
|
|
2914
2980
|
height: 46px;
|
|
2915
2981
|
}
|
|
2916
2982
|
|
|
2983
|
+
.xdd8jsf {
|
|
2984
|
+
height: 52px;
|
|
2985
|
+
}
|
|
2986
|
+
|
|
2987
|
+
.xng8ra {
|
|
2988
|
+
height: 60px;
|
|
2989
|
+
}
|
|
2990
|
+
|
|
2917
2991
|
.x1peatla {
|
|
2918
2992
|
height: 64px;
|
|
2919
2993
|
}
|
|
@@ -2990,6 +3064,10 @@
|
|
|
2990
3064
|
margin-top: 0;
|
|
2991
3065
|
}
|
|
2992
3066
|
|
|
3067
|
+
.x14vqqas {
|
|
3068
|
+
margin-top: 12px;
|
|
3069
|
+
}
|
|
3070
|
+
|
|
2993
3071
|
.x1hmvnq2 {
|
|
2994
3072
|
margin-top: 14px;
|
|
2995
3073
|
}
|
|
@@ -3046,6 +3124,10 @@
|
|
|
3046
3124
|
max-height: 1em;
|
|
3047
3125
|
}
|
|
3048
3126
|
|
|
3127
|
+
.x2z3yb8 {
|
|
3128
|
+
max-height: 360px;
|
|
3129
|
+
}
|
|
3130
|
+
|
|
3049
3131
|
.xpulllz {
|
|
3050
3132
|
max-height: 66px;
|
|
3051
3133
|
}
|
|
@@ -3130,6 +3212,10 @@
|
|
|
3130
3212
|
min-height: 40px;
|
|
3131
3213
|
}
|
|
3132
3214
|
|
|
3215
|
+
.xbktkl8 {
|
|
3216
|
+
min-height: 56px;
|
|
3217
|
+
}
|
|
3218
|
+
|
|
3133
3219
|
.x17g2nzx {
|
|
3134
3220
|
min-width: .6em;
|
|
3135
3221
|
}
|
|
@@ -3166,6 +3252,10 @@
|
|
|
3166
3252
|
padding-bottom: 0;
|
|
3167
3253
|
}
|
|
3168
3254
|
|
|
3255
|
+
.x1a8lsjc {
|
|
3256
|
+
padding-bottom: 10px;
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3169
3259
|
.xxbrewl {
|
|
3170
3260
|
padding-bottom: 11px;
|
|
3171
3261
|
}
|
|
@@ -3206,6 +3296,10 @@
|
|
|
3206
3296
|
padding-bottom: var(--stridge-kit-space-3);
|
|
3207
3297
|
}
|
|
3208
3298
|
|
|
3299
|
+
.x1vc98yp {
|
|
3300
|
+
padding-bottom: var(--stridge-kit-space-8);
|
|
3301
|
+
}
|
|
3302
|
+
|
|
3209
3303
|
.xpnfv0q {
|
|
3210
3304
|
padding-bottom: var(--stridge-kit-space-5);
|
|
3211
3305
|
}
|
|
@@ -3298,6 +3392,10 @@
|
|
|
3298
3392
|
padding-top: var(--stridge-kit-space-3);
|
|
3299
3393
|
}
|
|
3300
3394
|
|
|
3395
|
+
.x5gat22 {
|
|
3396
|
+
padding-top: var(--stridge-kit-space-8);
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3301
3399
|
.x4xct4k {
|
|
3302
3400
|
padding-top: var(--stridge-kit-space-5);
|
|
3303
3401
|
}
|
|
@@ -3350,6 +3448,10 @@
|
|
|
3350
3448
|
width: 14px;
|
|
3351
3449
|
}
|
|
3352
3450
|
|
|
3451
|
+
.x1a00udw {
|
|
3452
|
+
width: 15px;
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3353
3455
|
.x1kky2od {
|
|
3354
3456
|
width: 16px;
|
|
3355
3457
|
}
|
|
@@ -3790,6 +3892,14 @@
|
|
|
3790
3892
|
}
|
|
3791
3893
|
|
|
3792
3894
|
@layer priority9 {
|
|
3895
|
+
.x1ad04t7::-webkit-search-cancel-button {
|
|
3896
|
+
appearance: none;
|
|
3897
|
+
}
|
|
3898
|
+
|
|
3899
|
+
.x1glnyev::-webkit-search-decoration {
|
|
3900
|
+
appearance: none;
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3793
3903
|
.xbntbuv:before, .xki0kx:after {
|
|
3794
3904
|
background-color: var(--stridge-kit-border);
|
|
3795
3905
|
}
|
|
@@ -3802,6 +3912,14 @@
|
|
|
3802
3912
|
content: "";
|
|
3803
3913
|
}
|
|
3804
3914
|
|
|
3915
|
+
.x1hcrkkg::-webkit-search-cancel-button {
|
|
3916
|
+
display: none;
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3919
|
+
.xzwh6sb::-webkit-search-decoration {
|
|
3920
|
+
display: none;
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3805
3923
|
.x90y9lf::placeholder {
|
|
3806
3924
|
font-family: var(--stridge-kit-font-mono);
|
|
3807
3925
|
}
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -15,16 +15,24 @@ import { Button, ButtonSize, ButtonVariant } from "../shared/ui/Button/Button.js
|
|
|
15
15
|
import { BUTTON_SLOTS, ButtonSlot } from "../shared/ui/Button/Button.slots.js";
|
|
16
16
|
import { Card, CardVariant } from "../shared/ui/Card/Card.js";
|
|
17
17
|
import { CARD_SLOTS, CardSlot } from "../shared/ui/Card/Card.slots.js";
|
|
18
|
+
import { Checkbox } from "../shared/ui/Checkbox/Checkbox.js";
|
|
19
|
+
import { CHECKBOX_SLOTS, CheckboxSlot } from "../shared/ui/Checkbox/Checkbox.slots.js";
|
|
18
20
|
import { Collapsible } from "../shared/ui/Collapsible/Collapsible.js";
|
|
19
21
|
import { COLLAPSIBLE_SLOTS, CollapsibleSlot } from "../shared/ui/Collapsible/Collapsible.slots.js";
|
|
22
|
+
import { CurrencyGlyph } from "../shared/ui/CurrencyGlyph/CurrencyGlyph.js";
|
|
23
|
+
import { CURRENCY_GLYPH_SLOTS, CurrencyGlyphSlot } from "../shared/ui/CurrencyGlyph/CurrencyGlyph.slots.js";
|
|
20
24
|
import { Details } from "../shared/ui/Details/Details.js";
|
|
21
25
|
import { DETAILS_SLOTS, DetailsSlot } from "../shared/ui/Details/Details.slots.js";
|
|
22
26
|
import { Dialog, useIsInsideDialogContent } from "../shared/ui/Dialog/Dialog.js";
|
|
23
27
|
import { DIALOG_SLOTS, DialogSlot } from "../shared/ui/Dialog/Dialog.slots.js";
|
|
28
|
+
import { DisclosureRow } from "../shared/ui/DisclosureRow/DisclosureRow.js";
|
|
29
|
+
import { DISCLOSURE_ROW_SLOTS, DisclosureRowSlot } from "../shared/ui/DisclosureRow/DisclosureRow.slots.js";
|
|
24
30
|
import { Drawer } from "../shared/ui/Drawer/Drawer.js";
|
|
25
31
|
import { DRAWER_SLOTS, DrawerSlot } from "../shared/ui/Drawer/Drawer.slots.js";
|
|
26
32
|
import { ExternalLink } from "../shared/ui/ExternalLink/ExternalLink.js";
|
|
27
33
|
import { EXTERNAL_LINK_SLOTS, ExternalLinkSlot } from "../shared/ui/ExternalLink/ExternalLink.slots.js";
|
|
34
|
+
import { FiatAmount, FiatAmountProps } from "../shared/ui/FiatSymbol/FiatAmount.js";
|
|
35
|
+
import { FiatSymbol, FiatSymbolProps } from "../shared/ui/FiatSymbol/FiatSymbol.js";
|
|
28
36
|
import { Field, FieldOrientation } from "../shared/ui/Field/Field.js";
|
|
29
37
|
import { FIELD_SLOTS, FieldSlot } from "../shared/ui/Field/Field.slots.js";
|
|
30
38
|
import { IconButton, IconButtonSize } from "../shared/ui/IconButton/IconButton.js";
|
|
@@ -53,4 +61,4 @@ import { TokenLogoProps } from "../shared/ui/TokenLogo/types.js";
|
|
|
53
61
|
import { TokenLogo } from "../shared/ui/TokenLogo/TokenLogo.js";
|
|
54
62
|
import { Tooltip, TooltipVariant } from "../shared/ui/Tooltip/Tooltip.js";
|
|
55
63
|
import { TOOLTIP_SLOTS, TooltipSlot } from "../shared/ui/Tooltip/Tooltip.slots.js";
|
|
56
|
-
export { ALERT_SLOTS, AMOUNT_INPUT_SLOTS, AdaptiveSurface, AdaptiveSurfaceProps, Alert, AlertSlot, AlertVariant, AmountInput, AmountInputSlot, BADGE_SLOTS, BUTTON_SLOTS, Badge, BadgeColor, BadgeRoundness, BadgeSize, BadgeSlot, BadgeVariant, Button, ButtonSize, ButtonSlot, ButtonVariant, CARD_SLOTS, COLLAPSIBLE_SLOTS, Card, CardSlot, CardVariant, Collapsible, CollapsibleSlot, DETAILS_SLOTS, DIALOG_SLOTS, DRAWER_SLOTS, Details, DetailsSlot, Dialog, DialogSlot, Drawer, DrawerSlot, EXTERNAL_LINK_SLOTS, ExternalLink, ExternalLinkSlot, FIELD_SLOTS, Field, FieldOrientation, FieldSlot, HtmlTags, ICON_BUTTON_SLOTS, IMAGE_SLOTS, INPUT_GROUP_SLOTS, IconButton, IconButtonSize, IconButtonSlot, Image, ImageGroupProps, ImageOverlayProps, ImageProps, ImageShape, ImageSize, ImageSlot, InputGroup, InputGroupAddonAlign, InputGroupSlot, LtrAtom, LtrAtomProps, Presentation, PresentationConfig, PresentationMode, SCROLL_AREA_SLOTS, SELECTABLE_TILE_SLOTS, SELECT_SLOTS, SKELETON_SLOTS, STEPS_SLOTS, ScrollArea, ScrollAreaSlot, Select, SelectSlot, SelectVariant, SelectableTile, SelectableTileGroup, SelectableTileGroupProps, SelectableTileShape, SelectableTileSlot, Skeleton, SkeletonSlot, Step, Steps, StepsSlot, TABS_SLOTS, TEXT_SLOTS, TOOLTIP_SLOTS, Tabs, TabsIndicator, TabsList, TabsPanel, TabsRoot, TabsSlot, TabsTab, TabsVariant, TextAlign, TextColor, TextComponent, TextFactory, TextFont, TextFontWeight, TextLeading, TextProps, TextSize, TextSlot, TextTracking, TextTransform, TokenLogo, TokenLogoProps, Tooltip, TooltipSlot, TooltipVariant, WALLET_ROW_SLOTS, WalletRow, WalletRowDensity, WalletRowProps, WalletRowSlot, formatAmountForInput, parseAmountInputValue, text, useIsInsideDialogContent };
|
|
64
|
+
export { ALERT_SLOTS, AMOUNT_INPUT_SLOTS, AdaptiveSurface, AdaptiveSurfaceProps, Alert, AlertSlot, AlertVariant, AmountInput, AmountInputSlot, BADGE_SLOTS, BUTTON_SLOTS, Badge, BadgeColor, BadgeRoundness, BadgeSize, BadgeSlot, BadgeVariant, Button, ButtonSize, ButtonSlot, ButtonVariant, CARD_SLOTS, CHECKBOX_SLOTS, COLLAPSIBLE_SLOTS, CURRENCY_GLYPH_SLOTS, Card, CardSlot, CardVariant, Checkbox, CheckboxSlot, Collapsible, CollapsibleSlot, CurrencyGlyph, CurrencyGlyphSlot, DETAILS_SLOTS, DIALOG_SLOTS, DISCLOSURE_ROW_SLOTS, DRAWER_SLOTS, Details, DetailsSlot, Dialog, DialogSlot, DisclosureRow, DisclosureRowSlot, Drawer, DrawerSlot, EXTERNAL_LINK_SLOTS, ExternalLink, ExternalLinkSlot, FIELD_SLOTS, FiatAmount, FiatAmountProps, FiatSymbol, FiatSymbolProps, Field, FieldOrientation, FieldSlot, HtmlTags, ICON_BUTTON_SLOTS, IMAGE_SLOTS, INPUT_GROUP_SLOTS, IconButton, IconButtonSize, IconButtonSlot, Image, ImageGroupProps, ImageOverlayProps, ImageProps, ImageShape, ImageSize, ImageSlot, InputGroup, InputGroupAddonAlign, InputGroupSlot, LtrAtom, LtrAtomProps, Presentation, PresentationConfig, PresentationMode, SCROLL_AREA_SLOTS, SELECTABLE_TILE_SLOTS, SELECT_SLOTS, SKELETON_SLOTS, STEPS_SLOTS, ScrollArea, ScrollAreaSlot, Select, SelectSlot, SelectVariant, SelectableTile, SelectableTileGroup, SelectableTileGroupProps, SelectableTileShape, SelectableTileSlot, Skeleton, SkeletonSlot, Step, Steps, StepsSlot, TABS_SLOTS, TEXT_SLOTS, TOOLTIP_SLOTS, Tabs, TabsIndicator, TabsList, TabsPanel, TabsRoot, TabsSlot, TabsTab, TabsVariant, TextAlign, TextColor, TextComponent, TextFactory, TextFont, TextFontWeight, TextLeading, TextProps, TextSize, TextSlot, TextTracking, TextTransform, TokenLogo, TokenLogoProps, Tooltip, TooltipSlot, TooltipVariant, WALLET_ROW_SLOTS, WalletRow, WalletRowDensity, WalletRowProps, WalletRowSlot, formatAmountForInput, parseAmountInputValue, text, useIsInsideDialogContent };
|
package/dist/ui/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{EXTERNAL_LINK_SLOTS as e}from"../shared/ui/ExternalLink/ExternalLink.slots.js";import{ExternalLink as t}from"../shared/ui/ExternalLink/ExternalLink.js";import"../shared/ui/ExternalLink/index.js";import{BUTTON_SLOTS as n}from"../shared/ui/Button/Button.slots.js";import{Button as r}from"../shared/ui/Button/Button.js";import"../shared/ui/Button/index.js";import{ICON_BUTTON_SLOTS as i}from"../shared/ui/IconButton/IconButton.slots.js";import{IconButton as a}from"../shared/ui/IconButton/IconButton.js";import"../shared/ui/IconButton/index.js";import{SCROLL_AREA_SLOTS as o}from"../shared/ui/ScrollArea/ScrollArea.slots.js";import{ScrollArea as s}from"../shared/ui/ScrollArea/ScrollArea.js";import"../shared/ui/ScrollArea/index.js";import{DIALOG_SLOTS as c}from"../shared/ui/Dialog/Dialog.slots.js";import{Dialog as l,useIsInsideDialogContent as u}from"../shared/ui/Dialog/Dialog.js";import"../shared/ui/Dialog/index.js";import{DRAWER_SLOTS as d}from"../shared/ui/Drawer/Drawer.slots.js";import{Drawer as f}from"../shared/ui/Drawer/Drawer.js";import"../shared/ui/Drawer/index.js";import{AdaptiveSurface as p}from"../shared/ui/AdaptiveSurface/AdaptiveSurface.js";import"../shared/ui/AdaptiveSurface/index.js";import{ALERT_SLOTS as m}from"../shared/ui/Alert/Alert.slots.js";import{Alert as h}from"../shared/ui/Alert/Alert.js";import"../shared/ui/Alert/index.js";import{AMOUNT_INPUT_SLOTS as g}from"../shared/ui/AmountInput/AmountInput.slots.js";import{formatAmountForInput as _,parseAmountInputValue as v}from"../shared/ui/AmountInput/utils.js";import{AmountInput as y}from"../shared/ui/AmountInput/AmountInput.js";import"../shared/ui/AmountInput/index.js";import{BADGE_SLOTS as b}from"../shared/ui/Badge/Badge.slots.js";import{Badge as x}from"../shared/ui/Badge/Badge.js";import"../shared/ui/Badge/index.js";import{CARD_SLOTS as S}from"../shared/ui/Card/Card.slots.js";import{Card as C}from"../shared/ui/Card/Card.js";import"../shared/ui/Card/index.js";import{
|
|
1
|
+
import{EXTERNAL_LINK_SLOTS as e}from"../shared/ui/ExternalLink/ExternalLink.slots.js";import{ExternalLink as t}from"../shared/ui/ExternalLink/ExternalLink.js";import"../shared/ui/ExternalLink/index.js";import{BUTTON_SLOTS as n}from"../shared/ui/Button/Button.slots.js";import{Button as r}from"../shared/ui/Button/Button.js";import"../shared/ui/Button/index.js";import{ICON_BUTTON_SLOTS as i}from"../shared/ui/IconButton/IconButton.slots.js";import{IconButton as a}from"../shared/ui/IconButton/IconButton.js";import"../shared/ui/IconButton/index.js";import{SCROLL_AREA_SLOTS as o}from"../shared/ui/ScrollArea/ScrollArea.slots.js";import{ScrollArea as s}from"../shared/ui/ScrollArea/ScrollArea.js";import"../shared/ui/ScrollArea/index.js";import{DIALOG_SLOTS as c}from"../shared/ui/Dialog/Dialog.slots.js";import{Dialog as l,useIsInsideDialogContent as u}from"../shared/ui/Dialog/Dialog.js";import"../shared/ui/Dialog/index.js";import{DRAWER_SLOTS as d}from"../shared/ui/Drawer/Drawer.slots.js";import{Drawer as f}from"../shared/ui/Drawer/Drawer.js";import"../shared/ui/Drawer/index.js";import{AdaptiveSurface as p}from"../shared/ui/AdaptiveSurface/AdaptiveSurface.js";import"../shared/ui/AdaptiveSurface/index.js";import{ALERT_SLOTS as m}from"../shared/ui/Alert/Alert.slots.js";import{Alert as h}from"../shared/ui/Alert/Alert.js";import"../shared/ui/Alert/index.js";import{AMOUNT_INPUT_SLOTS as g}from"../shared/ui/AmountInput/AmountInput.slots.js";import{formatAmountForInput as _,parseAmountInputValue as v}from"../shared/ui/AmountInput/utils.js";import{AmountInput as y}from"../shared/ui/AmountInput/AmountInput.js";import"../shared/ui/AmountInput/index.js";import{BADGE_SLOTS as b}from"../shared/ui/Badge/Badge.slots.js";import{Badge as x}from"../shared/ui/Badge/Badge.js";import"../shared/ui/Badge/index.js";import{CARD_SLOTS as S}from"../shared/ui/Card/Card.slots.js";import{Card as C}from"../shared/ui/Card/Card.js";import"../shared/ui/Card/index.js";import{CHECKBOX_SLOTS as w}from"../shared/ui/Checkbox/Checkbox.slots.js";import{Checkbox as T}from"../shared/ui/Checkbox/Checkbox.js";import"../shared/ui/Checkbox/index.js";import{COLLAPSIBLE_SLOTS as E}from"../shared/ui/Collapsible/Collapsible.slots.js";import{Collapsible as D}from"../shared/ui/Collapsible/Collapsible.js";import"../shared/ui/Collapsible/index.js";import{IMAGE_SLOTS as O}from"../shared/ui/Image/Image.slots.js";import{Image as k}from"../shared/ui/Image/Image.js";import"../shared/ui/Image/index.js";import{CURRENCY_GLYPH_SLOTS as A}from"../shared/ui/CurrencyGlyph/CurrencyGlyph.slots.js";import{CurrencyGlyph as j}from"../shared/ui/CurrencyGlyph/CurrencyGlyph.js";import"../shared/ui/CurrencyGlyph/index.js";import{DETAILS_SLOTS as M}from"../shared/ui/Details/Details.slots.js";import{Details as N}from"../shared/ui/Details/Details.js";import"../shared/ui/Details/index.js";import{DISCLOSURE_ROW_SLOTS as P}from"../shared/ui/DisclosureRow/DisclosureRow.slots.js";import{DisclosureRow as F}from"../shared/ui/DisclosureRow/DisclosureRow.js";import"../shared/ui/DisclosureRow/index.js";import{FiatSymbol as I}from"../shared/ui/FiatSymbol/FiatSymbol.js";import{FiatAmount as L}from"../shared/ui/FiatSymbol/FiatAmount.js";import"../shared/ui/FiatSymbol/index.js";import{FIELD_SLOTS as R}from"../shared/ui/Field/Field.slots.js";import{Field as z}from"../shared/ui/Field/Field.js";import"../shared/ui/Field/index.js";import{INPUT_GROUP_SLOTS as B}from"../shared/ui/InputGroup/InputGroup.slots.js";import{InputGroup as V}from"../shared/ui/InputGroup/InputGroup.js";import"../shared/ui/InputGroup/index.js";import{LtrAtom as H}from"../shared/ui/LtrAtom/LtrAtom.js";import"../shared/ui/LtrAtom/index.js";import{SELECT_SLOTS as U}from"../shared/ui/Select/Select.slots.js";import{Select as W}from"../shared/ui/Select/Select.js";import"../shared/ui/Select/index.js";import{SELECTABLE_TILE_SLOTS as G}from"../shared/ui/SelectableTile/SelectableTile.slots.js";import{SelectableTile as K}from"../shared/ui/SelectableTile/SelectableTile.js";import{SelectableTileGroup as q}from"../shared/ui/SelectableTile/SelectableTileGroup.js";import"../shared/ui/SelectableTile/index.js";import{SKELETON_SLOTS as J}from"../shared/ui/Skeleton/Skeleton.slots.js";import{Skeleton as Y}from"../shared/ui/Skeleton/Skeleton.js";import"../shared/ui/Skeleton/index.js";import{STEPS_SLOTS as X}from"../shared/ui/Steps/Steps.slots.js";import{Step as Z,Steps as Q}from"../shared/ui/Steps/Steps.js";import"../shared/ui/Steps/index.js";import{TABS_SLOTS as $}from"../shared/ui/Tabs/Tabs.slots.js";import{Tabs as ee,TabsIndicator as te,TabsList as ne,TabsPanel as re,TabsRoot as ie,TabsTab as ae}from"../shared/ui/Tabs/Tabs.js";import"../shared/ui/Tabs/index.js";import{TEXT_SLOTS as oe}from"../shared/ui/Text/Text.slots.js";import{text as se}from"../shared/ui/Text/Text.js";import"../shared/ui/Text/index.js";import{TokenLogo as ce}from"../shared/ui/TokenLogo/TokenLogo.js";import"../shared/ui/TokenLogo/index.js";import{TOOLTIP_SLOTS as le}from"../shared/ui/Tooltip/Tooltip.slots.js";import{Tooltip as ue}from"../shared/ui/Tooltip/Tooltip.js";import"../shared/ui/Tooltip/index.js";import{WALLET_ROW_SLOTS as de}from"../shared/ui/WalletRow/WalletRow.slots.js";import{WalletRow as fe}from"../shared/ui/WalletRow/WalletRow.js";import"../shared/ui/WalletRow/index.js";export{m as ALERT_SLOTS,g as AMOUNT_INPUT_SLOTS,p as AdaptiveSurface,h as Alert,y as AmountInput,b as BADGE_SLOTS,n as BUTTON_SLOTS,x as Badge,r as Button,S as CARD_SLOTS,w as CHECKBOX_SLOTS,E as COLLAPSIBLE_SLOTS,A as CURRENCY_GLYPH_SLOTS,C as Card,T as Checkbox,D as Collapsible,j as CurrencyGlyph,M as DETAILS_SLOTS,c as DIALOG_SLOTS,P as DISCLOSURE_ROW_SLOTS,d as DRAWER_SLOTS,N as Details,l as Dialog,F as DisclosureRow,f as Drawer,e as EXTERNAL_LINK_SLOTS,t as ExternalLink,R as FIELD_SLOTS,L as FiatAmount,I as FiatSymbol,z as Field,i as ICON_BUTTON_SLOTS,O as IMAGE_SLOTS,B as INPUT_GROUP_SLOTS,a as IconButton,k as Image,V as InputGroup,H as LtrAtom,o as SCROLL_AREA_SLOTS,G as SELECTABLE_TILE_SLOTS,U as SELECT_SLOTS,J as SKELETON_SLOTS,X as STEPS_SLOTS,s as ScrollArea,W as Select,K as SelectableTile,q as SelectableTileGroup,Y as Skeleton,Z as Step,Q as Steps,$ as TABS_SLOTS,oe as TEXT_SLOTS,le as TOOLTIP_SLOTS,ee as Tabs,te as TabsIndicator,ne as TabsList,re as TabsPanel,ie as TabsRoot,ae as TabsTab,ce as TokenLogo,ue as Tooltip,de as WALLET_ROW_SLOTS,fe as WalletRow,_ as formatAmountForInput,v as parseAmountInputValue,se as text,u as useIsInsideDialogContent};
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=`0.1.0-alpha.
|
|
1
|
+
const e=`0.1.0-alpha.63`;export{e as KIT_VERSION};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stridge/kit",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.63",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
"@stylexjs/stylex": "^0.18.3",
|
|
156
156
|
"motion": "^12.38.0",
|
|
157
157
|
"qr": "0.6.0",
|
|
158
|
-
"@stridge/sdk": "0.1.0-alpha.
|
|
158
|
+
"@stridge/sdk": "0.1.0-alpha.9"
|
|
159
159
|
},
|
|
160
160
|
"scripts": {
|
|
161
161
|
"build": "pnpm run i18n:compile && tsdown",
|