@rango-dev/widget-embedded 0.20.1-next.20 → 0.20.1-next.22

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.
Files changed (119) hide show
  1. package/dist/components/AppRouter.d.ts.map +1 -1
  2. package/dist/components/AppRoutes.d.ts.map +1 -1
  3. package/dist/components/BlockchainList/BlockchainList.styles.d.ts +161 -1
  4. package/dist/components/BlockchainList/BlockchainList.styles.d.ts.map +1 -1
  5. package/dist/components/HeaderButtons/HeaderButtons.types.d.ts +0 -1
  6. package/dist/components/HeaderButtons/HeaderButtons.types.d.ts.map +1 -1
  7. package/dist/components/HeaderButtons/HomeButtons.d.ts.map +1 -1
  8. package/dist/components/Layout/Layout.d.ts +2 -3
  9. package/dist/components/Layout/Layout.d.ts.map +1 -1
  10. package/dist/components/Layout/Layout.helpers.d.ts +2 -0
  11. package/dist/components/Layout/Layout.helpers.d.ts.map +1 -0
  12. package/dist/components/Layout/Layout.styles.d.ts +2 -4
  13. package/dist/components/Layout/Layout.styles.d.ts.map +1 -1
  14. package/dist/components/Layout/Layout.types.d.ts +6 -3
  15. package/dist/components/Layout/Layout.types.d.ts.map +1 -1
  16. package/dist/components/Layout/PageContainer.d.ts +166 -0
  17. package/dist/components/Layout/PageContainer.d.ts.map +1 -0
  18. package/dist/components/Layout/ScrollableArea.d.ts +164 -0
  19. package/dist/components/Layout/ScrollableArea.d.ts.map +1 -0
  20. package/dist/components/Layout/index.d.ts +2 -0
  21. package/dist/components/Layout/index.d.ts.map +1 -1
  22. package/dist/components/NotificationContent/NotificationContent.d.ts.map +1 -1
  23. package/dist/components/QuoteWarningsAndErrors/QuoteWarningsAndErrors.styles.d.ts.map +1 -1
  24. package/dist/components/SettingsContainer/SettingsContainer.style.d.ts +0 -161
  25. package/dist/components/SettingsContainer/SettingsContainer.style.d.ts.map +1 -1
  26. package/dist/components/SettingsContainer/index.d.ts +1 -1
  27. package/dist/components/SettingsContainer/index.d.ts.map +1 -1
  28. package/dist/components/SwapDetails/SwapDetails.Placeholder.d.ts.map +1 -1
  29. package/dist/components/SwapDetails/SwapDetails.d.ts.map +1 -1
  30. package/dist/components/SwapDetails/SwapDetails.styles.d.ts +161 -1
  31. package/dist/components/SwapDetails/SwapDetails.styles.d.ts.map +1 -1
  32. package/dist/components/TokenList/TokenList.styles.d.ts.map +1 -1
  33. package/dist/constants/searchParams.d.ts +6 -6
  34. package/dist/constants/searchParams.d.ts.map +1 -1
  35. package/dist/containers/App/App.styles.d.ts.map +1 -1
  36. package/dist/containers/QuoteInfo/QuoteInfo.d.ts +1 -1
  37. package/dist/containers/QuoteInfo/QuoteInfo.d.ts.map +1 -1
  38. package/dist/containers/QuoteInfo/QuoteInfo.styles.d.ts +0 -324
  39. package/dist/containers/QuoteInfo/QuoteInfo.styles.d.ts.map +1 -1
  40. package/dist/containers/QuoteInfo/QuoteInfo.types.d.ts +0 -7
  41. package/dist/containers/QuoteInfo/QuoteInfo.types.d.ts.map +1 -1
  42. package/dist/containers/Wallets/Wallets.d.ts.map +1 -1
  43. package/dist/hooks/useSwapInput.d.ts.map +1 -1
  44. package/dist/hooks/useSyncStoresWithConfig.d.ts.map +1 -1
  45. package/dist/hooks/useSyncUrlAndStore/index.d.ts +2 -0
  46. package/dist/hooks/useSyncUrlAndStore/index.d.ts.map +1 -0
  47. package/dist/hooks/useSyncUrlAndStore/useSyncUrlAndStore.d.ts +2 -0
  48. package/dist/hooks/useSyncUrlAndStore/useSyncUrlAndStore.d.ts.map +1 -0
  49. package/dist/hooks/useSyncUrlAndStore/useSyncUrlAndStore.helpers.d.ts +4 -0
  50. package/dist/hooks/useSyncUrlAndStore/useSyncUrlAndStore.helpers.d.ts.map +1 -0
  51. package/dist/index.js +2 -2
  52. package/dist/index.js.map +4 -4
  53. package/dist/pages/ConfirmSwapPage.d.ts.map +1 -1
  54. package/dist/pages/HistoryPage.d.ts.map +1 -1
  55. package/dist/pages/Home.d.ts.map +1 -1
  56. package/dist/pages/LanguagePage.d.ts.map +1 -1
  57. package/dist/pages/LiquiditySourcePage.d.ts.map +1 -1
  58. package/dist/pages/SelectSwapItemsPage.d.ts.map +1 -1
  59. package/dist/pages/SettingsPage.d.ts.map +1 -1
  60. package/dist/pages/SwapDetailsPage.d.ts.map +1 -1
  61. package/dist/pages/ThemePage.d.ts.map +1 -1
  62. package/dist/pages/WalletsPage.d.ts.map +1 -1
  63. package/dist/utils/quote.d.ts +0 -1
  64. package/dist/utils/quote.d.ts.map +1 -1
  65. package/dist/utils/ui.d.ts +2 -0
  66. package/dist/utils/ui.d.ts.map +1 -1
  67. package/package.json +3 -3
  68. package/src/components/AppRouter.tsx +1 -8
  69. package/src/components/AppRoutes.tsx +11 -0
  70. package/src/components/BlockchainList/BlockchainList.styles.ts +4 -3
  71. package/src/components/BlockchainList/BlockchainList.tsx +1 -1
  72. package/src/components/HeaderButtons/HeaderButtons.types.ts +0 -1
  73. package/src/components/HeaderButtons/HomeButtons.tsx +1 -2
  74. package/src/components/Layout/Layout.helpers.ts +16 -0
  75. package/src/components/Layout/Layout.styles.ts +17 -31
  76. package/src/components/Layout/Layout.tsx +24 -27
  77. package/src/components/Layout/Layout.types.ts +9 -8
  78. package/src/components/Layout/PageContainer.tsx +24 -0
  79. package/src/components/Layout/ScrollableArea.tsx +11 -0
  80. package/src/components/Layout/index.ts +2 -0
  81. package/src/components/NotificationContent/NotificationContent.tsx +0 -3
  82. package/src/components/QuoteWarningsAndErrors/QuoteWarningsAndErrors.styles.ts +0 -1
  83. package/src/components/SettingsContainer/SettingsContainer.style.ts +0 -5
  84. package/src/components/SettingsContainer/index.ts +0 -1
  85. package/src/components/SwapDetails/SwapDetails.Placeholder.tsx +0 -1
  86. package/src/components/SwapDetails/SwapDetails.styles.ts +5 -6
  87. package/src/components/SwapDetails/SwapDetails.tsx +3 -5
  88. package/src/components/TokenList/TokenList.styles.ts +2 -0
  89. package/src/components/TokenList/TokenList.tsx +1 -1
  90. package/src/constants/searchParams.ts +6 -6
  91. package/src/containers/App/App.styles.ts +2 -0
  92. package/src/containers/QuoteInfo/QuoteInfo.styles.ts +0 -15
  93. package/src/containers/QuoteInfo/QuoteInfo.tsx +30 -77
  94. package/src/containers/QuoteInfo/QuoteInfo.types.ts +0 -7
  95. package/src/containers/Wallets/Wallets.tsx +0 -2
  96. package/src/hooks/useSwapInput.ts +6 -1
  97. package/src/hooks/useSyncStoresWithConfig.ts +3 -17
  98. package/src/hooks/useSyncUrlAndStore/index.ts +1 -0
  99. package/src/hooks/useSyncUrlAndStore/useSyncUrlAndStore.helpers.ts +35 -0
  100. package/src/hooks/useSyncUrlAndStore/useSyncUrlAndStore.ts +135 -0
  101. package/src/pages/ConfirmSwapPage.tsx +52 -47
  102. package/src/pages/HistoryPage.tsx +5 -17
  103. package/src/pages/Home.tsx +44 -43
  104. package/src/pages/LanguagePage.tsx +3 -4
  105. package/src/pages/LiquiditySourcePage.tsx +3 -4
  106. package/src/pages/SelectBlockchainPage.tsx +38 -38
  107. package/src/pages/SelectSwapItemsPage.tsx +40 -38
  108. package/src/pages/SettingsPage.tsx +3 -4
  109. package/src/pages/SwapDetailsPage.tsx +21 -7
  110. package/src/pages/ThemePage.tsx +3 -4
  111. package/src/pages/WalletsPage.tsx +12 -13
  112. package/src/utils/quote.ts +0 -27
  113. package/src/utils/ui.ts +20 -0
  114. package/dist/components/UpdateUrl.d.ts +0 -2
  115. package/dist/components/UpdateUrl.d.ts.map +0 -1
  116. package/dist/store/ui.d.ts +0 -22
  117. package/dist/store/ui.d.ts.map +0 -1
  118. package/src/components/UpdateUrl.tsx +0 -158
  119. package/src/store/ui.ts +0 -21
@@ -1 +1 @@
1
- {"version":3,"file":"AppRouter.d.ts","sourceRoot":"","sources":["../../src/components/AppRouter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAK/C,OAAO,KAAmB,MAAM,OAAO,CAAC;AAQxC,wBAAgB,SAAS,CAAC,EACxB,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,iBAAiB,GAAG;IACrB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,kBAAkB,EAAE,UAAU,GAAG,SAAS,CAAC;IAC3C,uBAAuB,EAAE,MAAM,IAAI,CAAC;CACrC,qBAwBA"}
1
+ {"version":3,"file":"AppRouter.d.ts","sourceRoot":"","sources":["../../src/components/AppRouter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAK/C,OAAO,KAAmB,MAAM,OAAO,CAAC;AAMxC,wBAAgB,SAAS,CAAC,EACxB,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,iBAAiB,GAAG;IACrB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,kBAAkB,EAAE,UAAU,GAAG,SAAS,CAAC;IAC3C,uBAAuB,EAAE,MAAM,IAAI,CAAC;CACrC,qBAmBA"}
@@ -1 +1 @@
1
- {"version":3,"file":"AppRoutes.d.ts","sourceRoot":"","sources":["../../src/components/AppRoutes.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAgB1B,wBAAgB,SAAS,8EA+ExB"}
1
+ {"version":3,"file":"AppRoutes.d.ts","sourceRoot":"","sources":["../../src/components/AppRoutes.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAkB1B,wBAAgB,SAAS,8EAwFxB"}
@@ -159,7 +159,167 @@ export declare const Container: import("@stitches/react/types/styled-component")
159
159
  zIndices: {};
160
160
  transitions: {};
161
161
  }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
162
- export declare const List: import("@stitches/react/types/styled-component").StyledComponent<"ul", {}, {
162
+ export declare const List: import("@stitches/react/types/styled-component").StyledComponent<import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
163
+ xs: string;
164
+ sm: string;
165
+ md: string;
166
+ lg: string;
167
+ }, import("@stitches/react/types/css-util").CSS<{
168
+ xs: string;
169
+ sm: string;
170
+ md: string;
171
+ lg: string;
172
+ }, {
173
+ colors: {
174
+ primary: string;
175
+ primary500: string;
176
+ primary600: string;
177
+ secondary: string;
178
+ secondary100: string;
179
+ secondary200: string;
180
+ secondary300: string;
181
+ secondary400: string;
182
+ secondary500: string;
183
+ secondary600: string;
184
+ secondary700: string;
185
+ secondary800: string;
186
+ secondary900: string;
187
+ neutral: string;
188
+ neutral100: string;
189
+ neutral200: string;
190
+ neutral300: string;
191
+ neutral400: string;
192
+ neutral500: string;
193
+ neutral600: string;
194
+ neutral700: string;
195
+ neutral800: string;
196
+ neutral900: string;
197
+ error100: string;
198
+ error300: string;
199
+ error500: string;
200
+ error600: string;
201
+ error700: string;
202
+ warning100: string;
203
+ warning300: string;
204
+ warning500: string;
205
+ warning600: string;
206
+ warning700: string;
207
+ info: string;
208
+ info100: string;
209
+ info300: string;
210
+ info500: string;
211
+ info600: string;
212
+ info700: string;
213
+ success100: string;
214
+ success300: string;
215
+ success500: string;
216
+ success600: string;
217
+ success700: string;
218
+ background: string;
219
+ foreground: string;
220
+ };
221
+ space: {
222
+ 0: string;
223
+ 5: string;
224
+ 10: string;
225
+ 15: string;
226
+ 20: string;
227
+ 25: string;
228
+ 30: string;
229
+ 40: string;
230
+ 46: string;
231
+ 50: string;
232
+ 60: string;
233
+ 70: string;
234
+ 80: string;
235
+ 90: string;
236
+ 100: string;
237
+ 2: string;
238
+ 4: string;
239
+ 6: string;
240
+ 8: string;
241
+ 12: string;
242
+ 16: string;
243
+ 24: string;
244
+ 28: string;
245
+ 32: string;
246
+ };
247
+ radii: {
248
+ xs: string;
249
+ sm: string;
250
+ xm: string;
251
+ md: string;
252
+ xl: string;
253
+ lg: string;
254
+ primary: string;
255
+ secondary: string;
256
+ };
257
+ fontSizes: {
258
+ 10: string;
259
+ 12: string;
260
+ 14: string;
261
+ 16: string;
262
+ 18: string;
263
+ 20: string;
264
+ 22: string;
265
+ 24: string;
266
+ 28: string;
267
+ 32: string;
268
+ 36: string;
269
+ 40: string;
270
+ 48: string;
271
+ };
272
+ fonts: {
273
+ primary: string;
274
+ widget: string;
275
+ };
276
+ fontWeights: {
277
+ regular: number;
278
+ medium: number;
279
+ semiBold: number;
280
+ bold: number;
281
+ };
282
+ lineHeights: {
283
+ 12: string;
284
+ 16: string;
285
+ 20: string;
286
+ 24: string;
287
+ 26: string;
288
+ 28: string;
289
+ 30: string;
290
+ 36: string;
291
+ 40: string;
292
+ 44: string;
293
+ 52: string;
294
+ 64: string;
295
+ };
296
+ letterSpacings: {};
297
+ sizes: {
298
+ 4: string;
299
+ 6: string;
300
+ 8: string;
301
+ 10: string;
302
+ 12: string;
303
+ 16: string;
304
+ 18: string;
305
+ 20: string;
306
+ 24: string;
307
+ 28: string;
308
+ 30: string;
309
+ 32: string;
310
+ 36: string;
311
+ 40: string;
312
+ 45: string;
313
+ 48: string;
314
+ };
315
+ borderWidths: {};
316
+ borderStyles: {};
317
+ shadows: {
318
+ s: string;
319
+ };
320
+ zIndices: {};
321
+ transitions: {};
322
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>, {}, {
163
323
  xs: string;
164
324
  sm: string;
165
325
  md: string;
@@ -1 +1 @@
1
- {"version":3,"file":"BlockchainList.styles.d.ts","sourceRoot":"","sources":["../../../src/components/BlockchainList/BlockchainList.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAIpB,CAAC;AAEH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAUf,CAAC"}
1
+ {"version":3,"file":"BlockchainList.styles.d.ts","sourceRoot":"","sources":["../../../src/components/BlockchainList/BlockchainList.styles.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAIpB,CAAC;AAEH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DASf,CAAC"}
@@ -4,7 +4,6 @@ export interface PropTypes {
4
4
  container?: HTMLElement;
5
5
  }
6
6
  export interface HomeButtonsPropTypes {
7
- layoutRef: HTMLDivElement | null;
8
7
  onClickRefresh?: () => void;
9
8
  onClickHistory?: () => void;
10
9
  onClickSettings?: () => void;
@@ -1 +1 @@
1
- {"version":3,"file":"HeaderButtons.types.d.ts","sourceRoot":"","sources":["../../../src/components/HeaderButtons/HeaderButtons.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,SAAS;IACxB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,WAAW,CAAC;CACzB;AACD,MAAM,WAAW,oBAAoB;IACnC,SAAS,EAAE,cAAc,GAAG,IAAI,CAAC;IACjC,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;CAC9B"}
1
+ {"version":3,"file":"HeaderButtons.types.d.ts","sourceRoot":"","sources":["../../../src/components/HeaderButtons/HeaderButtons.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,SAAS;IACxB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,WAAW,CAAC;CACzB;AACD,MAAM,WAAW,oBAAoB;IACnC,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;CAC9B"}
@@ -1 +1 @@
1
- {"version":3,"file":"HomeButtons.d.ts","sourceRoot":"","sources":["../../../src/components/HeaderButtons/HomeButtons.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAUlE,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,wBAAgB,WAAW,CAAC,KAAK,EAAE,oBAAoB,qBAwDtD"}
1
+ {"version":3,"file":"HomeButtons.d.ts","sourceRoot":"","sources":["../../../src/components/HeaderButtons/HomeButtons.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAUlE,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,wBAAgB,WAAW,CAAC,KAAK,EAAE,oBAAoB,qBAuDtD"}
@@ -1,7 +1,6 @@
1
1
  import type { PropTypes } from './Layout.types';
2
+ import type { PropsWithChildren } from 'react';
2
3
  import React from 'react';
3
- declare const Layout: React.ForwardRefExoticComponent<PropTypes & {
4
- children?: React.ReactNode;
5
- } & React.RefAttributes<HTMLDivElement>>;
4
+ declare function Layout(props: PropsWithChildren<PropTypes>): React.JSX.Element;
6
5
  export { Layout };
7
6
  //# sourceMappingURL=Layout.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/Layout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAO,MAAM,gBAAgB,CAAC;AAIrD,OAAO,KAAK,MAAM,OAAO,CAAC;AAsF1B,QAAA,MAAM,MAAM;;wCAAoC,CAAC;AAGjD,OAAO,EAAE,MAAM,EAAE,CAAC"}
1
+ {"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/Layout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAChD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAG/C,OAAO,KAA4B,MAAM,OAAO,CAAC;AAcjD,iBAAS,MAAM,CAAC,KAAK,EAAE,iBAAiB,CAAC,SAAS,CAAC,qBAuElD;AACD,OAAO,EAAE,MAAM,EAAE,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function onScrollContentAttachStatusToContainer(e: Event): void;
2
+ //# sourceMappingURL=Layout.helpers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Layout.helpers.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/Layout.helpers.ts"],"names":[],"mappings":"AAEA,wBAAgB,sCAAsC,CAAC,CAAC,EAAE,KAAK,QAa9D"}
@@ -1,5 +1,5 @@
1
1
  export declare const Container: import("@stitches/react/types/styled-component").StyledComponent<"div", {
2
- fixedHeight?: boolean | "true" | "false" | undefined;
2
+ height?: "auto" | "fixed" | undefined;
3
3
  }, {
4
4
  xs: string;
5
5
  sm: string;
@@ -161,9 +161,7 @@ export declare const Container: import("@stitches/react/types/styled-component")
161
161
  zIndices: {};
162
162
  transitions: {};
163
163
  }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
164
- export declare const Content: import("@stitches/react/types/styled-component").StyledComponent<"div", {
165
- noPadding?: boolean | "true" | undefined;
166
- }, {
164
+ export declare const Content: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
167
165
  xs: string;
168
166
  sm: string;
169
167
  md: string;
@@ -1 +1 @@
1
- {"version":3,"file":"Layout.styles.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/Layout.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DA2BpB,CAAC;AAEH,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAkBlB,CAAC;AAEH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAQjB,CAAC"}
1
+ {"version":3,"file":"Layout.styles.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/Layout.styles.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAuBpB,CAAC;AAEH,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAQlB,CAAC;AACH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAQjB,CAAC"}
@@ -1,4 +1,8 @@
1
1
  /// <reference types="react" />
2
+ import type { Container } from './Layout.styles';
3
+ import type * as Stitches from '@stitches/react';
4
+ type ContainerProps = Stitches.VariantProps<typeof Container>;
5
+ type ContainerHeightProp = NonNullable<Exclude<ContainerProps['height'], object>>;
2
6
  export interface PropTypes {
3
7
  header: {
4
8
  title: string;
@@ -10,8 +14,7 @@ export interface PropTypes {
10
14
  };
11
15
  hasLogo?: boolean;
12
16
  footer?: React.ReactNode;
13
- noPadding?: boolean;
14
- fixedHeight?: boolean;
17
+ height?: ContainerHeightProp;
15
18
  }
16
- export type Ref = ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
19
+ export {};
17
20
  //# sourceMappingURL=Layout.types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Layout.types.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/Layout.types.ts"],"names":[],"mappings":";AAAA,MAAM,WAAW,SAAS;IACxB,MAAM,EAAE;QACN,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;QACtB,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QACzB,aAAa,CAAC,EAAE,OAAO,CAAC;QACxB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;KACvB,CAAC;IACF,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,MAAM,MAAM,GAAG,GACX,CAAC,CAAC,QAAQ,EAAE,cAAc,GAAG,IAAI,KAAK,IAAI,CAAC,GAC3C,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,GAC/B,IAAI,GACJ,SAAS,CAAC"}
1
+ {"version":3,"file":"Layout.types.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/Layout.types.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,KAAK,KAAK,QAAQ,MAAM,iBAAiB,CAAC;AAEjD,KAAK,cAAc,GAAG,QAAQ,CAAC,YAAY,CAAC,OAAO,SAAS,CAAC,CAAC;AAC9D,KAAK,mBAAmB,GAAG,WAAW,CACpC,OAAO,CAAC,cAAc,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,CAC1C,CAAC;AAEF,MAAM,WAAW,SAAS;IACxB,MAAM,EAAE;QACN,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;QACtB,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QACzB,aAAa,CAAC,EAAE,OAAO,CAAC;QACxB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;KACvB,CAAC;IACF,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,MAAM,CAAC,EAAE,mBAAmB,CAAC;CAC9B"}
@@ -0,0 +1,166 @@
1
+ declare const PageContainer: import("@stitches/react/types/styled-component").StyledComponent<"div", {
2
+ view?: boolean | "true" | undefined;
3
+ compact?: boolean | "true" | undefined;
4
+ }, {
5
+ xs: string;
6
+ sm: string;
7
+ md: string;
8
+ lg: string;
9
+ }, import("@stitches/react/types/css-util").CSS<{
10
+ xs: string;
11
+ sm: string;
12
+ md: string;
13
+ lg: string;
14
+ }, {
15
+ colors: {
16
+ primary: string;
17
+ primary500: string;
18
+ primary600: string;
19
+ secondary: string;
20
+ secondary100: string;
21
+ secondary200: string;
22
+ secondary300: string;
23
+ secondary400: string;
24
+ secondary500: string;
25
+ secondary600: string;
26
+ secondary700: string;
27
+ secondary800: string;
28
+ secondary900: string;
29
+ neutral: string;
30
+ neutral100: string;
31
+ neutral200: string;
32
+ neutral300: string;
33
+ neutral400: string;
34
+ neutral500: string;
35
+ neutral600: string;
36
+ neutral700: string;
37
+ neutral800: string;
38
+ neutral900: string;
39
+ error100: string;
40
+ error300: string;
41
+ error500: string;
42
+ error600: string;
43
+ error700: string;
44
+ warning100: string;
45
+ warning300: string;
46
+ warning500: string;
47
+ warning600: string;
48
+ warning700: string;
49
+ info: string;
50
+ info100: string;
51
+ info300: string;
52
+ info500: string;
53
+ info600: string;
54
+ info700: string;
55
+ success100: string;
56
+ success300: string;
57
+ success500: string;
58
+ success600: string;
59
+ success700: string;
60
+ background: string;
61
+ foreground: string;
62
+ };
63
+ space: {
64
+ 0: string;
65
+ 5: string;
66
+ 10: string;
67
+ 15: string;
68
+ 20: string;
69
+ 25: string;
70
+ 30: string;
71
+ 40: string;
72
+ 46: string;
73
+ 50: string;
74
+ 60: string;
75
+ 70: string;
76
+ 80: string;
77
+ 90: string;
78
+ 100: string;
79
+ 2: string;
80
+ 4: string;
81
+ 6: string;
82
+ 8: string;
83
+ 12: string;
84
+ 16: string;
85
+ 24: string;
86
+ 28: string;
87
+ 32: string;
88
+ };
89
+ radii: {
90
+ xs: string;
91
+ sm: string;
92
+ xm: string;
93
+ md: string;
94
+ xl: string;
95
+ lg: string;
96
+ primary: string;
97
+ secondary: string;
98
+ };
99
+ fontSizes: {
100
+ 10: string;
101
+ 12: string;
102
+ 14: string;
103
+ 16: string;
104
+ 18: string;
105
+ 20: string;
106
+ 22: string;
107
+ 24: string;
108
+ 28: string;
109
+ 32: string;
110
+ 36: string;
111
+ 40: string;
112
+ 48: string;
113
+ };
114
+ fonts: {
115
+ primary: string;
116
+ widget: string;
117
+ };
118
+ fontWeights: {
119
+ regular: number;
120
+ medium: number;
121
+ semiBold: number;
122
+ bold: number;
123
+ };
124
+ lineHeights: {
125
+ 12: string;
126
+ 16: string;
127
+ 20: string;
128
+ 24: string;
129
+ 26: string;
130
+ 28: string;
131
+ 30: string;
132
+ 36: string;
133
+ 40: string;
134
+ 44: string;
135
+ 52: string;
136
+ 64: string;
137
+ };
138
+ letterSpacings: {};
139
+ sizes: {
140
+ 4: string;
141
+ 6: string;
142
+ 8: string;
143
+ 10: string;
144
+ 12: string;
145
+ 16: string;
146
+ 18: string;
147
+ 20: string;
148
+ 24: string;
149
+ 28: string;
150
+ 30: string;
151
+ 32: string;
152
+ 36: string;
153
+ 40: string;
154
+ 45: string;
155
+ 48: string;
156
+ };
157
+ borderWidths: {};
158
+ borderStyles: {};
159
+ shadows: {
160
+ s: string;
161
+ };
162
+ zIndices: {};
163
+ transitions: {};
164
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
165
+ export { PageContainer };
166
+ //# sourceMappingURL=PageContainer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PageContainer.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/PageContainer.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAmBjB,CAAC;AAEH,OAAO,EAAE,aAAa,EAAE,CAAC"}
@@ -0,0 +1,164 @@
1
+ declare const CONTENT_PADDING = "$20 $20 $10 $20";
2
+ declare const ScrollableArea: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
3
+ xs: string;
4
+ sm: string;
5
+ md: string;
6
+ lg: string;
7
+ }, import("@stitches/react/types/css-util").CSS<{
8
+ xs: string;
9
+ sm: string;
10
+ md: string;
11
+ lg: string;
12
+ }, {
13
+ colors: {
14
+ primary: string;
15
+ primary500: string;
16
+ primary600: string;
17
+ secondary: string;
18
+ secondary100: string;
19
+ secondary200: string;
20
+ secondary300: string;
21
+ secondary400: string;
22
+ secondary500: string;
23
+ secondary600: string;
24
+ secondary700: string;
25
+ secondary800: string;
26
+ secondary900: string;
27
+ neutral: string;
28
+ neutral100: string;
29
+ neutral200: string;
30
+ neutral300: string;
31
+ neutral400: string;
32
+ neutral500: string;
33
+ neutral600: string;
34
+ neutral700: string;
35
+ neutral800: string;
36
+ neutral900: string;
37
+ error100: string;
38
+ error300: string;
39
+ error500: string;
40
+ error600: string;
41
+ error700: string;
42
+ warning100: string;
43
+ warning300: string;
44
+ warning500: string;
45
+ warning600: string;
46
+ warning700: string;
47
+ info: string;
48
+ info100: string;
49
+ info300: string;
50
+ info500: string;
51
+ info600: string;
52
+ info700: string;
53
+ success100: string;
54
+ success300: string;
55
+ success500: string;
56
+ success600: string;
57
+ success700: string;
58
+ background: string;
59
+ foreground: string;
60
+ };
61
+ space: {
62
+ 0: string;
63
+ 5: string;
64
+ 10: string;
65
+ 15: string;
66
+ 20: string;
67
+ 25: string;
68
+ 30: string;
69
+ 40: string;
70
+ 46: string;
71
+ 50: string;
72
+ 60: string;
73
+ 70: string;
74
+ 80: string;
75
+ 90: string;
76
+ 100: string;
77
+ 2: string;
78
+ 4: string;
79
+ 6: string;
80
+ 8: string;
81
+ 12: string;
82
+ 16: string;
83
+ 24: string;
84
+ 28: string;
85
+ 32: string;
86
+ };
87
+ radii: {
88
+ xs: string;
89
+ sm: string;
90
+ xm: string;
91
+ md: string;
92
+ xl: string;
93
+ lg: string;
94
+ primary: string;
95
+ secondary: string;
96
+ };
97
+ fontSizes: {
98
+ 10: string;
99
+ 12: string;
100
+ 14: string;
101
+ 16: string;
102
+ 18: string;
103
+ 20: string;
104
+ 22: string;
105
+ 24: string;
106
+ 28: string;
107
+ 32: string;
108
+ 36: string;
109
+ 40: string;
110
+ 48: string;
111
+ };
112
+ fonts: {
113
+ primary: string;
114
+ widget: string;
115
+ };
116
+ fontWeights: {
117
+ regular: number;
118
+ medium: number;
119
+ semiBold: number;
120
+ bold: number;
121
+ };
122
+ lineHeights: {
123
+ 12: string;
124
+ 16: string;
125
+ 20: string;
126
+ 24: string;
127
+ 26: string;
128
+ 28: string;
129
+ 30: string;
130
+ 36: string;
131
+ 40: string;
132
+ 44: string;
133
+ 52: string;
134
+ 64: string;
135
+ };
136
+ letterSpacings: {};
137
+ sizes: {
138
+ 4: string;
139
+ 6: string;
140
+ 8: string;
141
+ 10: string;
142
+ 12: string;
143
+ 16: string;
144
+ 18: string;
145
+ 20: string;
146
+ 24: string;
147
+ 28: string;
148
+ 30: string;
149
+ 32: string;
150
+ 36: string;
151
+ 40: string;
152
+ 45: string;
153
+ 48: string;
154
+ };
155
+ borderWidths: {};
156
+ borderStyles: {};
157
+ shadows: {
158
+ s: string;
159
+ };
160
+ zIndices: {};
161
+ transitions: {};
162
+ }, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
163
+ export { ScrollableArea, CONTENT_PADDING };
164
+ //# sourceMappingURL=ScrollableArea.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScrollableArea.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/ScrollableArea.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,eAAe,oBAAoB,CAAC;AAE1C,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAIlB,CAAC;AAEH,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,CAAC"}
@@ -1,2 +1,4 @@
1
1
  export { Layout } from './Layout';
2
+ export { ScrollableArea, CONTENT_PADDING } from './ScrollableArea';
3
+ export { PageContainer } from './PageContainer';
2
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Layout/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"NotificationContent.d.ts","sourceRoot":"","sources":["../../../src/components/NotificationContent/NotificationContent.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,wBAAgB,mBAAmB,sBA+FlC"}
1
+ {"version":3,"file":"NotificationContent.d.ts","sourceRoot":"","sources":["../../../src/components/NotificationContent/NotificationContent.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,OAAO,CAAC;AAY1B,wBAAgB,mBAAmB,sBA6FlC"}
@@ -1 +1 @@
1
- {"version":3,"file":"QuoteWarningsAndErrors.styles.d.ts","sourceRoot":"","sources":["../../../src/components/QuoteWarningsAndErrors/QuoteWarningsAndErrors.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAGjB,CAAC;AAEH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAMf,CAAC;AAEH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAaf,CAAC;AAEH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAIjB,CAAC"}
1
+ {"version":3,"file":"QuoteWarningsAndErrors.styles.d.ts","sourceRoot":"","sources":["../../../src/components/QuoteWarningsAndErrors/QuoteWarningsAndErrors.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAEjB,CAAC;AAEH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAMf,CAAC;AAEH,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAaf,CAAC;AAEH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAIjB,CAAC"}