@temboplus/frontend-react-core 0.1.3-beta.16 → 0.1.3-beta.19

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 (38) hide show
  1. package/dist/alerts/index.cjs.js +1 -1
  2. package/dist/alerts/index.cjs.js.map +1 -1
  3. package/dist/alerts/index.js +1 -1
  4. package/dist/alerts/index.js.map +1 -1
  5. package/dist/dialogs/index.cjs.js +1 -1
  6. package/dist/dialogs/index.js +1 -1
  7. package/dist/features/alerts/alert.js +4 -4
  8. package/dist/features/notifications/toast-config.js +4 -4
  9. package/dist/index.cjs.js +1 -1
  10. package/dist/index.esm.js +1 -1
  11. package/dist/notifications/index.cjs.js +1 -1
  12. package/dist/notifications/index.js +1 -1
  13. package/dist/tembo-notify-2LdAvsMr.js +3 -0
  14. package/dist/tembo-notify-2LdAvsMr.js.map +1 -0
  15. package/dist/tembo-notify-CRIa7y8h.js +3 -0
  16. package/dist/tembo-notify-CRIa7y8h.js.map +1 -0
  17. package/dist/theme/index.cjs.js +1 -1
  18. package/dist/theme/index.js +1 -1
  19. package/dist/theme/theme-config.js +15 -1
  20. package/dist/theme/tokens/colors.d.ts +10 -1
  21. package/dist/theme/tokens/colors.js +96 -88
  22. package/dist/theme-provider-BX8M54Ue.js +11 -0
  23. package/dist/theme-provider-BX8M54Ue.js.map +1 -0
  24. package/dist/{theme-provider-CAYLAupF.js → theme-provider-BnND6lJb.js} +2 -2
  25. package/dist/{theme-provider-CAYLAupF.js.map → theme-provider-BnND6lJb.js.map} +1 -1
  26. package/dist/{theme-provider-CHXEa7OM.js → theme-provider-CSTiVwXk.js} +2 -2
  27. package/dist/{theme-provider-CHXEa7OM.js.map → theme-provider-CSTiVwXk.js.map} +1 -1
  28. package/dist/theme-provider-DL9X1dBR.js +11 -0
  29. package/dist/theme-provider-DL9X1dBR.js.map +1 -0
  30. package/package.json +1 -1
  31. package/dist/tembo-notify-C5_QZYZD.js +0 -3
  32. package/dist/tembo-notify-C5_QZYZD.js.map +0 -1
  33. package/dist/tembo-notify-DcTCXDpG.js +0 -3
  34. package/dist/tembo-notify-DcTCXDpG.js.map +0 -1
  35. package/dist/theme-provider-CAoTOVjC.js +0 -11
  36. package/dist/theme-provider-CAoTOVjC.js.map +0 -1
  37. package/dist/theme-provider-Z0VeuZ9j.js +0 -11
  38. package/dist/theme-provider-Z0VeuZ9j.js.map +0 -1
@@ -5,52 +5,58 @@
5
5
  * - Primary actions: Near-black (light) / Near-white (dark)
6
6
  * - All UI elements use neutral scale
7
7
  * - Blue accent for links and focus states
8
- * - Modern, vibrant semantic colors (Material 3 inspired)
8
+ * - Modern, vibrant semantic colors with AAA contrast
9
+ *
10
+ * Semantic color definitions:
11
+ * - main: For icons, borders, full backgrounds, text on subtle backgrounds
12
+ * - subtle: For light/dark background fills
13
+ * - contrast: For icons & text on main backgrounds
9
14
  */
10
15
  // ============================================
11
16
  // NEUTRAL SCALE CONSTANTS
12
17
  // ============================================
13
18
  /**
14
- * Light mode neutral scale
15
- * Carefully calibrated for WCAG AAA compliance
19
+ * Light mode neutral scale - Professional fintech UI
20
+ * Optimized for clarity without being overly bold
16
21
  *
17
22
  * Visual hierarchy (dark to light):
18
- * 9 = Almost black (#0A0A0A) - 20:1 contrast - maximum emphasis
19
- * 8 = Near black (#262626) - 15.3:1 contrast - actions, strong emphasis
20
- * 7 = Very dark gray (#525252) - 6.4:1 contrast - primary text (AAA)
21
- * 6 = Dark gray (#737373) - 3.9:1 contrast - tertiary text (AA)
22
- * 5 = Medium gray (#A3A3A3) - 5.7:1 contrast - secondary text (AA Large)
23
- * 4 = Medium-light gray (#D4D4D4) - 10.5:1 contrast - default borders
24
- * 3 = Light gray (#E8E8E8) - 15.2:1 contrast - subtle borders, hover
25
- * 2 = Very light gray (#F5F5F5) - 18.3:1 contrast - page backgrounds
26
- * 1 = Off-white (#FAFAFA) - 19.8:1 contrast - input backgrounds
27
- * 0 = Pure white (#FFFFFF) - 21:1 contrast - card surfaces
23
+ * 9 = Pure black (#000000) - 21:1 contrast - maximum emphasis
24
+ * 8 = Almost black (#171717) - 17.9:1 contrast - actions, input text
25
+ * 7 = Very dark (#404040) - 10.4:1 contrast - primary text (AAA)
26
+ * 6 = Dark gray (#525252) - 6.4:1 contrast - strong elements
27
+ * 5 = Medium-dark (#737373) - 3.9:1 contrast - secondary text (AA)
28
+ * 4 = Medium (#A3A3A3) - 3.1:1 contrast - tertiary text, borders
29
+ * 3 = Medium-light (#D4D4D4) - 2.1:1 contrast - subtle borders
30
+ * 2 = Light gray (#E8E8E8) - 1.6:1 contrast - hover states
31
+ * 1 = Very light (#F5F5F5) - 1.3:1 contrast - input backgrounds
32
+ * 0 = Pure white (#FFFFFF) - 1:1 - card surfaces
28
33
  */
29
34
  const LIGHT_NEUTRAL_SCALE = {
30
35
  0: '#FFFFFF', // Pure white
31
- 1: '#FAFAFA', // Off-white
32
- 2: '#F5F5F5', // Very light gray
33
- 3: '#E8E8E8', // Light gray
34
- 4: '#D4D4D4', // Medium-light gray
35
- 5: '#A3A3A3', // Medium gray
36
- 6: '#737373', // Dark gray
37
- 7: '#525252', // Very dark gray
38
- 8: '#262626', // Near black
39
- 9: '#0A0A0A', // Almost black
36
+ 1: '#F5F5F5', // Very light gray
37
+ 2: '#E8E8E8', // Light gray
38
+ 3: '#D4D4D4', // Medium-light gray
39
+ 4: '#A3A3A3', // Medium gray
40
+ 5: '#737373', // Medium-dark gray
41
+ 6: '#525252', // Dark gray
42
+ 7: '#404040', // Very dark gray
43
+ 8: '#171717', // Almost black
44
+ 9: '#000000', // Pure black
40
45
  };
41
46
  /**
42
- * Dark mode neutral scale (inverted)
47
+ * Dark mode neutral scale - Professional fintech UI
48
+ * Inverted for dark backgrounds
43
49
  *
44
50
  * Visual hierarchy (light to dark):
45
- * 9 = Off white (#FAFAFA) - maximum emphasis
46
- * 8 = Near white (#F5F5F5) - actions, strong emphasis
51
+ * 9 = Pure white (#FFFFFF) - maximum emphasis
52
+ * 8 = Almost white (#F5F5F5) - actions, input text
47
53
  * 7 = Very light (#D4D4D4) - primary text
48
- * 6 = Light (#A3A3A3) - tertiary text
54
+ * 6 = Light (#A3A3A3) - strong elements
49
55
  * 5 = Medium-light (#737373) - secondary text
50
- * 4 = Medium (#525252) - default borders
51
- * 3 = Medium-dark (#404040) - subtle borders, hover
52
- * 2 = Dark (#262626) - page backgrounds
53
- * 1 = Very dark (#171717) - input backgrounds, overlays
56
+ * 4 = Medium (#525252) - tertiary text, borders
57
+ * 3 = Medium-dark (#404040) - subtle borders
58
+ * 2 = Dark (#262626) - hover states
59
+ * 1 = Very dark (#171717) - input backgrounds
54
60
  * 0 = Near black (#0A0A0A) - card surfaces
55
61
  */
56
62
  const DARK_NEUTRAL_SCALE = {
@@ -62,8 +68,8 @@ const DARK_NEUTRAL_SCALE = {
62
68
  5: '#737373', // Medium-light
63
69
  6: '#A3A3A3', // Light
64
70
  7: '#D4D4D4', // Very light
65
- 8: '#F5F5F5', // Near white
66
- 9: '#FAFAFA', // Off white
71
+ 8: '#F5F5F5', // Almost white
72
+ 9: '#FFFFFF', // Pure white
67
73
  };
68
74
  // ============================================
69
75
  // COLOR PALETTE BUILDERS
@@ -87,58 +93,59 @@ const buildLightModeColors = () => {
87
93
  active: '#1E40AF',
88
94
  subtle: '#EFF6FF',
89
95
  },
90
- // Modern semantic colors - Material 3 inspired
96
+ // Semantic colors - AAA contrast verified
91
97
  semantic: {
92
- success: {
93
- main: '#0F766E', // Modern teal-green (5.5:1) ✅
94
- subtle: '#F0FDFA', // Very light teal
95
- contrast: '#FFFFFF',
96
- },
97
98
  error: {
98
- main: '#DC2626', // Modern red (5.9:1)
99
- subtle: '#FEF2F2', // Very light red
100
- contrast: '#FFFFFF',
99
+ main: '#DC2626', // Modern red - 5.9:1 contrast
100
+ subtle: '#FEF2F2', // Very light red background
101
+ contrast: '#FFFFFF', // White text on red
102
+ },
103
+ success: {
104
+ main: '#0F766E', // Modern teal - 5.5:1 contrast ✅
105
+ subtle: '#F0FDFA', // Very light teal background
106
+ contrast: '#FFFFFF', // White text on teal
101
107
  },
102
108
  warning: {
103
- main: '#EA580C', // Modern orange (4.8:1)
104
- subtle: '#FFF7ED', // Very light orange
105
- contrast: '#FFFFFF',
109
+ main: '#EA580C', // Modern orange - 4.8:1 contrast
110
+ subtle: '#FFF7ED', // Very light orange background
111
+ contrast: '#FFFFFF', // White text on orange
106
112
  },
107
113
  info: {
108
- main: '#2563EB', // Same as accent
109
- subtle: '#EFF6FF', // Very light blue
110
- contrast: '#FFFFFF',
114
+ main: '#2563EB', // Same as accent - 6.1:1 contrast ✅
115
+ subtle: '#EFF6FF', // Very light blue background
116
+ contrast: '#FFFFFF', // White text on blue
111
117
  },
112
118
  },
113
119
  // Surface hierarchy - clearly mapped to neutral scale
114
120
  surface: {
115
- page: neutral[2], // Very light gray - main background
121
+ page: neutral[1], // Very light gray - main background
116
122
  card: neutral[0], // Pure white - elevated surfaces
117
123
  overlay: neutral[0], // Pure white - modals, dropdowns
118
- input: neutral[1], // Off-white - input fields (subtle inset)
119
- interactive: neutral[3], // Light gray - hover states
120
- selected: neutral[3], // Light gray - selected states
121
- nested: neutral[1], // Off-white - nested backgrounds
124
+ input: neutral[0], // Pure white - input fields (same as card for consistency)
125
+ interactive: neutral[2], // Light gray - hover states
126
+ selected: neutral[2], // Light gray - selected states
127
+ nested: neutral[1], // Very light gray - nested backgrounds
122
128
  },
123
129
  // Border hierarchy - clearly mapped to neutral scale
124
130
  border: {
125
- subtle: neutral[3], // Light gray - dividers, subtle borders
126
- default: neutral[4], // Medium-light gray - default borders
127
- strong: neutral[5], // Medium gray - emphasized borders
131
+ subtle: neutral[2], // Light gray - dividers, subtle borders
132
+ default: neutral[3], // Medium-light gray - default borders
133
+ strong: neutral[4], // Medium gray - emphasized borders
128
134
  },
129
- // Text hierarchy - clearly mapped to neutral scale
135
+ // Text hierarchy - clearly mapped for professional fintech UI
130
136
  text: {
131
- primary: neutral[7], // Very dark gray - main text (AAA)
132
- secondary: neutral[5], // Medium gray - supporting text
133
- tertiary: neutral[6], // Dark gray - hints, captions
134
- disabled: neutral[4], // Medium-light gray - disabled state
137
+ primary: neutral[7], // Very dark gray - main text (10.4:1 AAA) - readable but not harsh
138
+ secondary: neutral[5], // Medium-dark gray - supporting text (3.9:1 AA)
139
+ tertiary: neutral[4], // Medium gray - hints, captions (3.1:1)
140
+ disabled: neutral[3], // Medium-light gray - disabled state
135
141
  inverse: neutral[0], // Pure white - text on dark backgrounds
142
+ input: neutral[8], // Almost black - input text (17.9:1 AAA) - crisp and clear
136
143
  },
137
144
  // Action colors - clearly mapped to neutral scale
138
145
  action: {
139
- default: neutral[8], // Near black - primary actions
146
+ default: neutral[8], // Almost black - primary actions (bold but not pure black)
140
147
  hover: neutral[7], // Very dark gray - action hover
141
- disabled: neutral[3], // Light gray - disabled actions
148
+ disabled: neutral[2], // Light gray - disabled actions
142
149
  contrast: neutral[0], // Pure white - text on actions
143
150
  },
144
151
  };
@@ -162,58 +169,59 @@ const buildDarkModeColors = () => {
162
169
  active: '#BFDBFE',
163
170
  subtle: '#1E3A8A',
164
171
  },
165
- // Modern semantic colors - vibrant on dark
172
+ // Semantic colors - vibrant on dark, AAA contrast
166
173
  semantic: {
167
- success: {
168
- main: '#5EEAD4', // Bright teal (Tailwind teal-300)
169
- subtle: '#134E4A', // Dark teal background
170
- contrast: '#0F172A', // Dark text on bright
171
- },
172
174
  error: {
173
- main: '#F87171', // Bright red (Tailwind red-400)
175
+ main: '#F87171', // Bright red - 8.3:1 on dark ✅
174
176
  subtle: '#7F1D1D', // Dark red background
175
- contrast: '#0F172A',
177
+ contrast: '#450A0A', // Very dark red on bright red
178
+ },
179
+ success: {
180
+ main: '#5EEAD4', // Bright teal - 12.5:1 on dark ✅
181
+ subtle: '#134E4A', // Dark teal background
182
+ contrast: '#0A3A35', // Very dark teal on bright teal
176
183
  },
177
184
  warning: {
178
- main: '#FB923C', // Bright orange (Tailwind orange-400)
185
+ main: '#FB923C', // Bright orange - 9.5:1 on dark ✅
179
186
  subtle: '#7C2D12', // Dark orange background
180
- contrast: '#0F172A',
187
+ contrast: '#431407', // Very dark orange on bright orange
181
188
  },
182
189
  info: {
183
- main: '#60A5FA', // Bright blue (same as accent)
190
+ main: '#60A5FA', // Bright blue - 8.0:1 on dark ✅
184
191
  subtle: '#1E3A8A', // Dark blue background
185
- contrast: '#FFFFFF',
192
+ contrast: '#1E3A8A', // Dark blue on bright blue
186
193
  },
187
194
  },
188
195
  // Surface hierarchy - clearly mapped to neutral scale
189
196
  surface: {
190
- page: neutral[2], // Dark - main background
197
+ page: neutral[1], // Very dark - main background
191
198
  card: neutral[0], // Near black - elevated surfaces
192
- overlay: neutral[1], // Very dark - modals, dropdowns
193
- input: neutral[1], // Very dark - input fields (subtle raise)
194
- interactive: neutral[3], // Medium-dark - hover states
195
- selected: neutral[3], // Medium-dark - selected states
199
+ overlay: neutral[0], // Near black - modals, dropdowns
200
+ input: neutral[0], // Near black - input fields
201
+ interactive: neutral[2], // Dark - hover states
202
+ selected: neutral[2], // Dark - selected states
196
203
  nested: neutral[1], // Very dark - nested backgrounds
197
204
  },
198
205
  // Border hierarchy - clearly mapped to neutral scale
199
206
  border: {
200
- subtle: neutral[3], // Medium-dark - dividers, subtle borders
201
- default: neutral[4], // Medium - default borders
202
- strong: neutral[5], // Medium-light - emphasized borders
207
+ subtle: neutral[2], // Dark - dividers, subtle borders
208
+ default: neutral[3], // Medium-dark - default borders
209
+ strong: neutral[4], // Medium - emphasized borders
203
210
  },
204
- // Text hierarchy - clearly mapped to neutral scale
211
+ // Text hierarchy - clearly mapped for professional fintech UI
205
212
  text: {
206
- primary: neutral[7], // Very light - main text
213
+ primary: neutral[7], // Very light - main text (readable)
207
214
  secondary: neutral[5], // Medium-light - supporting text
208
- tertiary: neutral[6], // Light - hints, captions
209
- disabled: neutral[4], // Medium - disabled state
215
+ tertiary: neutral[4], // Medium - hints, captions
216
+ disabled: neutral[3], // Medium-dark - disabled state
210
217
  inverse: neutral[0], // Near black - text on light backgrounds
218
+ input: neutral[8], // Almost white - input text (crisp and clear)
211
219
  },
212
220
  // Action colors - clearly mapped to neutral scale
213
221
  action: {
214
- default: neutral[8], // Near white - primary actions
222
+ default: neutral[8], // Almost white - primary actions
215
223
  hover: neutral[7], // Very light - action hover
216
- disabled: neutral[3], // Medium-dark - disabled actions
224
+ disabled: neutral[2], // Dark - disabled actions
217
225
  contrast: neutral[0], // Near black - text on actions
218
226
  },
219
227
  };
@@ -0,0 +1,11 @@
1
+ import e from"react";import{ConfigProvider as r}from"antd";var o,t={exports:{}},a={};var i,n,c={};
2
+ /**
3
+ * @license React
4
+ * react-jsx-runtime.development.js
5
+ *
6
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
7
+ *
8
+ * This source code is licensed under the MIT license found in the
9
+ * LICENSE file in the root directory of this source tree.
10
+ */function l(){return i||(i=1,"production"!==process.env.NODE_ENV&&function(){function r(e){if(null==e)return null;if("function"==typeof e)return e.$$typeof===H?null:e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case f:return"Fragment";case b:return"Profiler";case y:return"StrictMode";case S:return"Suspense";case B:return"SuspenseList";case w:return"Activity"}if("object"==typeof e)switch("number"==typeof e.tag&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),e.$$typeof){case m:return"Portal";case v:return e.displayName||"Context";case x:return(e._context.displayName||"Context")+".Consumer";case h:var o=e.render;return(e=e.displayName)||(e=""!==(e=o.displayName||o.name||"")?"ForwardRef("+e+")":"ForwardRef"),e;case F:return null!==(o=e.displayName||null)?o:r(e.type)||"Memo";case T:o=e._payload,e=e._init;try{return r(e(o))}catch(e){}}return null}function o(e){return""+e}function t(e){try{o(e);var r=!1}catch(e){r=!0}if(r){var t=(r=console).error,a="function"==typeof Symbol&&Symbol.toStringTag&&e[Symbol.toStringTag]||e.constructor.name||"Object";return t.call(r,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",a),o(e)}}function a(e){if(e===f)return"<>";if("object"==typeof e&&null!==e&&e.$$typeof===T)return"<...>";try{var o=r(e);return o?"<"+o+">":"<...>"}catch(e){return"<...>"}}function i(){return Error("react-stack-top-frame")}function n(){var e=r(this.type);return E[e]||(E[e]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),void 0!==(e=this.props.ref)?e:null}function l(e,o,a,i,c,l){var d,g=o.children;if(void 0!==g)if(i)if(P(g)){for(i=0;i<g.length;i++)s(g[i]);Object.freeze&&Object.freeze(g)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else s(g);if(k.call(o,"key")){g=r(e);var m=Object.keys(o).filter(function(e){return"key"!==e});i=0<m.length?"{key: someKey, "+m.join(": ..., ")+": ...}":"{key: someKey}",z[g+i]||(m=0<m.length?"{"+m.join(": ..., ")+": ...}":"{}",console.error('A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />',i,g,m,g),z[g+i]=!0)}if(g=null,void 0!==a&&(t(a),g=""+a),function(e){if(k.call(e,"key")){var r=Object.getOwnPropertyDescriptor(e,"key").get;if(r&&r.isReactWarning)return!1}return void 0!==e.key}(o)&&(t(o.key),g=""+o.key),"key"in o)for(var f in a={},o)"key"!==f&&(a[f]=o[f]);else a=o;return g&&function(e,r){function o(){u||(u=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",r))}o.isReactWarning=!0,Object.defineProperty(e,"key",{get:o,configurable:!0})}(a,"function"==typeof e?e.displayName||e.name||"Unknown":e),function(e,r,o,t,a,i){var c=o.ref;return e={$$typeof:p,type:e,key:r,props:o,_owner:t},null!==(void 0!==c?c:null)?Object.defineProperty(e,"ref",{enumerable:!1,get:n}):Object.defineProperty(e,"ref",{enumerable:!1,value:null}),e._store={},Object.defineProperty(e._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(e,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(e,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:a}),Object.defineProperty(e,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:i}),Object.freeze&&(Object.freeze(e.props),Object.freeze(e)),e}(e,g,a,null===(d=C.A)?null:d.getOwner(),c,l)}function s(e){d(e)?e._store&&(e._store.validated=1):"object"==typeof e&&null!==e&&e.$$typeof===T&&("fulfilled"===e._payload.status?d(e._payload.value)&&e._payload.value._store&&(e._payload.value._store.validated=1):e._store&&(e._store.validated=1))}function d(e){return"object"==typeof e&&null!==e&&e.$$typeof===p}var u,g=e,p=Symbol.for("react.transitional.element"),m=Symbol.for("react.portal"),f=Symbol.for("react.fragment"),y=Symbol.for("react.strict_mode"),b=Symbol.for("react.profiler"),x=Symbol.for("react.consumer"),v=Symbol.for("react.context"),h=Symbol.for("react.forward_ref"),S=Symbol.for("react.suspense"),B=Symbol.for("react.suspense_list"),F=Symbol.for("react.memo"),T=Symbol.for("react.lazy"),w=Symbol.for("react.activity"),H=Symbol.for("react.client.reference"),C=g.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,k=Object.prototype.hasOwnProperty,P=Array.isArray,A=console.createTask?console.createTask:function(){return null},E={},R=(g={react_stack_bottom_frame:function(e){return e()}}).react_stack_bottom_frame.bind(g,i)(),I=A(a(i)),z={};c.Fragment=f,c.jsx=function(e,r,o){var t=1e4>C.recentlyCreatedOwnerStacks++;return l(e,r,o,!1,t?Error("react-stack-top-frame"):R,t?A(a(e)):I)},c.jsxs=function(e,r,o){var t=1e4>C.recentlyCreatedOwnerStacks++;return l(e,r,o,!0,t?Error("react-stack-top-frame"):R,t?A(a(e)):I)}}()),c}var s=(n||(n=1,"production"===process.env.NODE_ENV?t.exports=function(){if(o)return a;o=1;var e=Symbol.for("react.transitional.element"),r=Symbol.for("react.fragment");function t(r,o,t){var a=null;if(void 0!==t&&(a=""+t),void 0!==o.key&&(a=""+o.key),"key"in o)for(var i in t={},o)"key"!==i&&(t[i]=o[i]);else t=o;return o=t.ref,{$$typeof:e,type:r,key:a,ref:void 0!==o?o:null,props:t}}return a.Fragment=r,a.jsx=t,a.jsxs=t,a}():t.exports=l()),t.exports);const d={typography:{fontFamily:{base:"Avenir, MarkPro, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif",mono:"'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace"},fontSize:{xs:12,sm:13,base:14,lg:16,xl:18,"2xl":20,"3xl":24,"4xl":30,"5xl":36},fontWeight:{light:300,regular:400,medium:500,semibold:600,bold:700,heavy:800},lineHeight:{tight:1.25,base:1.5,relaxed:1.75},letterSpacing:{tight:"-0.01em",base:"0",wide:"0.025em"}},spacing:{0:0,1:4,2:8,3:12,4:16,5:20,6:24,8:32,10:40,12:48,16:64,20:80},radius:{none:0,sm:12,base:24,md:28,lg:32,xl:40,full:9999,button:24,input:24,card:28,modal:32,avatar:9999},shadow:{none:"none",sm:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",base:"0 2px 4px 0 rgba(0, 0, 0, 0.06)",md:"0 4px 8px 0 rgba(0, 0, 0, 0.08)",lg:"0 8px 16px 0 rgba(0, 0, 0, 0.10)",xl:"0 12px 24px 0 rgba(0, 0, 0, 0.12)",card:"0 2px 4px 0 rgba(0, 0, 0, 0.06)",modal:"0 8px 16px 0 rgba(0, 0, 0, 0.10)",popover:"0 4px 8px 0 rgba(0, 0, 0, 0.08)",tooltip:"0 1px 2px 0 rgba(0, 0, 0, 0.05)"},zIndex:{dropdown:1e3,modal:1050,popover:1060,tooltip:1070,notification:1080},transition:{fast:"150ms cubic-bezier(0.4, 0, 0.2, 1)",base:"200ms cubic-bezier(0.4, 0, 0.2, 1)",slow:"300ms cubic-bezier(0.4, 0, 0.2, 1)"}},u={0:"#FFFFFF",1:"#F5F5F5",2:"#E8E8E8",3:"#D4D4D4",4:"#A3A3A3",5:"#737373",6:"#525252",7:"#404040",8:"#171717",9:"#000000"},g={0:"#0A0A0A",1:"#171717",2:"#262626",3:"#404040",4:"#525252",5:"#737373",6:"#A3A3A3",7:"#D4D4D4",8:"#F5F5F5",9:"#FFFFFF"},p=()=>({mode:"light",neutral:u,absolute:{black:"#000000",white:"#FFFFFF"},accent:{default:"#2563EB",hover:"#1D4ED8",active:"#1E40AF",subtle:"#EFF6FF"},semantic:{error:{main:"#DC2626",subtle:"#FEF2F2",contrast:"#FFFFFF"},success:{main:"#0F766E",subtle:"#F0FDFA",contrast:"#FFFFFF"},warning:{main:"#EA580C",subtle:"#FFF7ED",contrast:"#FFFFFF"},info:{main:"#2563EB",subtle:"#EFF6FF",contrast:"#FFFFFF"}},surface:{page:u[1],card:u[0],overlay:u[0],input:u[0],interactive:u[2],selected:u[2],nested:u[1]},border:{subtle:u[2],default:u[3],strong:u[4]},text:{primary:u[7],secondary:u[5],tertiary:u[4],disabled:u[3],inverse:u[0],input:u[8]},action:{default:u[8],hover:u[7],disabled:u[2],contrast:u[0]}}),m=()=>({mode:"dark",neutral:g,absolute:{black:"#000000",white:"#FFFFFF"},accent:{default:"#60A5FA",hover:"#93C5FD",active:"#BFDBFE",subtle:"#1E3A8A"},semantic:{error:{main:"#F87171",subtle:"#7F1D1D",contrast:"#450A0A"},success:{main:"#5EEAD4",subtle:"#134E4A",contrast:"#0A3A35"},warning:{main:"#FB923C",subtle:"#7C2D12",contrast:"#431407"},info:{main:"#60A5FA",subtle:"#1E3A8A",contrast:"#1E3A8A"}},surface:{page:g[1],card:g[0],overlay:g[0],input:g[0],interactive:g[2],selected:g[2],nested:g[1]},border:{subtle:g[2],default:g[3],strong:g[4]},text:{primary:g[7],secondary:g[5],tertiary:g[4],disabled:g[3],inverse:g[0],input:g[8]},action:{default:g[8],hover:g[7],disabled:g[2],contrast:g[0]}}),f=(e="light")=>"light"===e?p():m();p(),m();const y=e.createContext({colors:f("light"),constants:d,mode:"light"}),b=({children:o,mode:t="light",antdThemeOverrides:a})=>{const i=e.useMemo(()=>f(t),[t]),n=e.useMemo(()=>d,[]),c=e.useMemo(()=>{var e,r;const o=((e,r)=>{const o="dark"===e.mode;return{token:{colorPrimary:e.action.default,colorPrimaryHover:e.action.hover,colorPrimaryActive:e.action.default,colorPrimaryBg:e.neutral[3],colorPrimaryBgHover:e.surface.interactive,colorPrimaryBorder:e.action.default,colorPrimaryBorderHover:e.action.hover,colorPrimaryText:e.action.default,colorPrimaryTextHover:e.action.hover,colorPrimaryTextActive:e.action.default,colorLink:e.accent.default,colorLinkHover:e.accent.hover,colorLinkActive:e.accent.active,colorText:e.text.primary,colorTextSecondary:e.text.secondary,colorTextTertiary:e.text.tertiary,colorTextQuaternary:e.text.tertiary,colorTextDescription:e.text.secondary,colorTextDisabled:e.text.disabled,colorTextHeading:e.text.primary,colorTextLabel:e.text.secondary,colorTextPlaceholder:e.text.tertiary,colorTextLightSolid:e.text.inverse,colorBgBase:e.surface.page,colorBgContainer:e.surface.card,colorBgElevated:e.surface.overlay,colorBgLayout:e.surface.page,colorBgSpotlight:e.surface.interactive,colorBgMask:o?"rgba(0, 0, 0, 0.65)":"rgba(0, 0, 0, 0.45)",colorBgTextHover:e.surface.interactive,colorBgTextActive:e.surface.selected,colorBgContainerDisabled:e.action.disabled,colorBorder:e.border.default,colorBorderBg:e.surface.card,colorBorderSecondary:e.border.subtle,colorSplit:e.border.subtle,colorFill:e.neutral[3],colorFillSecondary:e.neutral[3],colorFillTertiary:e.neutral[2],colorFillQuaternary:e.surface.interactive,colorSuccess:e.semantic.success.main,colorSuccessBg:e.semantic.success.subtle,colorSuccessBgHover:e.semantic.success.subtle,colorSuccessBorder:e.semantic.success.main,colorSuccessBorderHover:e.semantic.success.main,colorSuccessText:e.semantic.success.main,colorSuccessTextHover:e.semantic.success.main,colorSuccessTextActive:e.semantic.success.main,colorError:e.semantic.error.main,colorErrorBg:e.semantic.error.subtle,colorErrorBgHover:e.semantic.error.subtle,colorErrorBorder:e.semantic.error.main,colorErrorBorderHover:e.semantic.error.main,colorErrorText:e.semantic.error.main,colorErrorTextHover:e.semantic.error.main,colorErrorTextActive:e.semantic.error.main,colorWarning:e.semantic.warning.main,colorWarningBg:e.semantic.warning.subtle,colorWarningBgHover:e.semantic.warning.subtle,colorWarningBorder:e.semantic.warning.main,colorWarningBorderHover:e.semantic.warning.main,colorWarningText:e.semantic.warning.main,colorWarningTextHover:e.semantic.warning.main,colorWarningTextActive:e.semantic.warning.main,colorInfo:e.semantic.info.main,colorInfoBg:e.semantic.info.subtle,colorInfoBgHover:e.semantic.info.subtle,colorInfoBorder:e.semantic.info.main,colorInfoBorderHover:e.semantic.info.main,colorInfoText:e.semantic.info.main,colorInfoTextHover:e.semantic.info.main,colorInfoTextActive:e.semantic.info.main,fontFamily:r.typography.fontFamily.base,fontFamilyCode:r.typography.fontFamily.mono,fontSize:r.typography.fontSize.base,fontSizeSM:r.typography.fontSize.sm,fontSizeLG:r.typography.fontSize.lg,fontSizeXL:r.typography.fontSize.xl,fontSizeHeading1:r.typography.fontSize["5xl"],fontSizeHeading2:r.typography.fontSize["4xl"],fontSizeHeading3:r.typography.fontSize["3xl"],fontSizeHeading4:r.typography.fontSize["2xl"],fontSizeHeading5:r.typography.fontSize.xl,fontWeightStrong:r.typography.fontWeight.semibold,lineHeight:r.typography.lineHeight.base,lineHeightSM:r.typography.lineHeight.base,lineHeightLG:r.typography.lineHeight.relaxed,lineHeightHeading1:r.typography.lineHeight.tight,lineHeightHeading2:r.typography.lineHeight.tight,lineHeightHeading3:r.typography.lineHeight.tight,lineHeightHeading4:r.typography.lineHeight.tight,lineHeightHeading5:r.typography.lineHeight.tight,padding:r.spacing[4],paddingXS:r.spacing[2],paddingSM:r.spacing[3],paddingLG:r.spacing[5],paddingXL:r.spacing[6],margin:r.spacing[4],marginXS:r.spacing[2],marginSM:r.spacing[3],marginLG:r.spacing[5],marginXL:r.spacing[6],marginXXL:r.spacing[8],controlHeight:40,controlHeightLG:48,controlHeightSM:32,controlHeightXS:24,borderRadius:r.radius.base,borderRadiusLG:r.radius.md,borderRadiusSM:r.radius.sm,borderRadiusXS:r.radius.sm,boxShadow:r.shadow.none,boxShadowSecondary:r.shadow.none,boxShadowTertiary:r.shadow.card,motionUnit:.1,motionBase:0,motionEaseInOut:r.transition.base,motionEaseOut:r.transition.base,motionEaseInBack:r.transition.base,zIndexBase:0,zIndexPopupBase:r.zIndex.dropdown},components:{Button:{colorPrimary:e.action.default,colorPrimaryHover:e.action.hover,colorPrimaryActive:e.action.default,colorPrimaryBorder:e.action.default,primaryColor:e.action.contrast,defaultBg:e.surface.card,defaultBorderColor:e.border.default,defaultColor:e.text.primary,defaultHoverBg:e.surface.interactive,defaultHoverBorderColor:e.border.strong,defaultHoverColor:e.text.primary,defaultActiveBg:e.surface.selected,defaultActiveBorderColor:e.action.default,defaultActiveColor:e.action.default,colorLink:e.accent.default,colorLinkHover:e.accent.hover,colorLinkActive:e.accent.active,textHoverBg:e.surface.interactive,dangerColor:e.semantic.error.main,colorErrorHover:e.semantic.error.main,colorErrorActive:e.semantic.error.main,colorBgContainerDisabled:e.action.disabled,colorTextDisabled:e.text.disabled,borderColorDisabled:e.action.disabled,primaryShadow:"none",defaultShadow:"none",dangerShadow:"none",borderRadius:r.radius.button,borderRadiusLG:r.radius.button,borderRadiusSM:r.radius.button,fontWeight:r.typography.fontWeight.medium,paddingContentHorizontal:r.spacing[4],paddingContentVertical:r.spacing[2]},Input:{colorBgContainer:e.surface.input,colorBorder:e.border.default,colorText:e.text.input,colorTextPlaceholder:e.text.tertiary,colorIcon:e.text.tertiary,colorIconHover:e.text.secondary,hoverBg:e.surface.card,hoverBorderColor:e.border.strong,activeBg:e.surface.card,activeBorderColor:e.accent.default,activeShadow:`0 0 0 2px ${e.accent.subtle}`,errorActiveShadow:`0 0 0 2px ${e.semantic.error.subtle}`,warningActiveShadow:`0 0 0 2px ${e.semantic.warning.subtle}`,colorBgContainerDisabled:e.surface.nested,colorTextDisabled:e.text.disabled,borderRadius:r.radius.input,borderRadiusLG:r.radius.input,borderRadiusSM:r.radius.input,paddingBlock:r.spacing[2],paddingInline:r.spacing[3],paddingInlineLG:r.spacing[4],fontWeightStrong:r.typography.fontWeight.medium},InputNumber:{colorBgContainer:e.surface.input,colorText:e.text.input,colorTextPlaceholder:e.text.tertiary,colorIcon:e.text.tertiary,colorIconHover:e.text.secondary,activeBorderColor:e.accent.default,activeShadow:`0 0 0 2px ${e.accent.subtle}`,borderRadius:r.radius.input,handleVisible:!0,fontWeightStrong:r.typography.fontWeight.medium},Select:{colorBgContainer:e.surface.input,colorBgElevated:e.surface.overlay,colorText:e.text.input,colorTextPlaceholder:e.text.tertiary,colorIcon:e.text.tertiary,colorIconHover:e.text.secondary,activeBorderColor:e.accent.default,boxShadow:`0 0 0 2px ${e.accent.subtle}`,optionSelectedBg:e.surface.selected,optionActiveBg:e.surface.interactive,controlItemBgHover:e.surface.interactive,controlItemBgActive:e.surface.selected,borderRadius:r.radius.input,borderRadiusLG:r.radius.input,borderRadiusSM:r.radius.input,boxShadowSecondary:r.shadow.popover,fontWeightStrong:r.typography.fontWeight.medium},DatePicker:{colorBgContainer:e.surface.input,colorText:e.text.input,colorTextPlaceholder:e.text.tertiary,colorIcon:e.text.tertiary,colorIconHover:e.text.secondary,activeBorderColor:e.accent.default,activeShadow:`0 0 0 2px ${e.accent.subtle}`,cellHoverBg:e.surface.interactive,cellActiveWithRangeBg:e.accent.subtle,colorPrimary:e.accent.default,borderRadius:r.radius.input,fontWeightStrong:r.typography.fontWeight.medium},Checkbox:{colorPrimary:e.accent.default,colorPrimaryHover:e.accent.hover,colorPrimaryBorder:e.border.default,borderRadiusSM:r.radius.sm},Radio:{colorPrimary:e.accent.default,colorPrimaryHover:e.accent.hover,colorBorder:e.border.default},Switch:{colorPrimary:e.accent.default,colorPrimaryHover:e.accent.hover,colorTextQuaternary:e.neutral[4],colorTextTertiary:e.neutral[5],handleSize:18},Slider:{colorPrimary:e.accent.default,colorPrimaryBorder:e.accent.default,colorPrimaryBorderHover:e.accent.hover,handleColor:e.surface.card,handleActiveColor:e.surface.card,railBg:e.neutral[3],railHoverBg:e.neutral[4],trackBg:e.accent.default,trackHoverBg:e.accent.hover,dotBorderColor:e.border.default,dotActiveBorderColor:e.accent.default},Form:{labelColor:e.text.primary,labelFontSize:r.typography.fontSize.base,labelRequiredMarkColor:e.semantic.error.main,itemMarginBottom:r.spacing[4],verticalLabelPadding:`0 0 ${r.spacing[2]}px`},Table:{colorBgContainer:e.surface.card,headerBg:e.surface.page,headerColor:e.text.secondary,colorText:e.text.primary,colorTextHeading:e.text.secondary,borderColor:e.border.subtle,rowHoverBg:e.surface.interactive,rowSelectedBg:e.surface.selected,rowExpandedBg:e.surface.nested,borderRadius:r.radius.card,borderRadiusLG:r.radius.card,headerBorderRadius:r.radius.card,cellPaddingBlock:r.spacing[3],cellPaddingInline:r.spacing[4],cellPaddingBlockSM:r.spacing[2],cellPaddingInlineSM:r.spacing[3],cellFontSize:r.typography.fontSize.base,headerSortActiveBg:e.surface.interactive},Descriptions:{labelBg:e.surface.page,titleColor:e.text.primary,contentColor:e.text.primary,extraColor:e.text.secondary,colorSplit:e.border.subtle,itemPaddingBottom:r.spacing[3]},Card:{colorBgContainer:e.surface.card,colorBorderSecondary:e.border.default,colorTextHeading:e.text.primary,colorTextDescription:e.text.secondary,boxShadowTertiary:r.shadow.card,borderRadius:r.radius.card,borderRadiusLG:r.radius.card,padding:r.spacing[4],paddingLG:r.spacing[6]},Statistic:{titleFontSize:r.typography.fontSize.sm,contentFontSize:r.typography.fontSize["4xl"]},Timeline:{tailColor:e.border.default,tailWidth:2,dotBg:e.surface.card,dotBorderWidth:2,itemPaddingBottom:r.spacing[4]},Tag:{defaultBg:e.neutral[2],defaultColor:e.text.primary,borderRadiusSM:r.radius.sm,fontSize:r.typography.fontSize.sm,fontSizeSM:r.typography.fontSize.xs},Badge:{colorBorderBg:e.surface.card,colorError:e.semantic.error.main,colorSuccess:e.semantic.success.main,colorInfo:e.accent.default,colorWarning:e.semantic.warning.main,textFontSize:r.typography.fontSize.xs,textFontWeight:r.typography.fontWeight.medium},Avatar:{colorBgContainer:e.neutral[3],colorTextPlaceholder:e.text.secondary,borderRadius:r.radius.avatar,groupOverlapping:-8,groupSpace:r.spacing[1]},Calendar:{colorBgContainer:e.surface.card,colorPrimary:e.accent.default,itemActiveBg:e.accent.subtle,borderRadius:r.radius.card},Collapse:{colorBgContainer:e.surface.card,headerBg:e.surface.page,headerPadding:`${r.spacing[3]}px ${r.spacing[4]}px`,contentPadding:`${r.spacing[4]}px ${r.spacing[4]}px`,borderRadiusLG:r.radius.card},Tree:{nodeHoverBg:e.surface.interactive,nodeSelectedBg:e.surface.selected,directoryNodeSelectedBg:e.surface.selected,borderRadius:r.radius.sm},Alert:{colorSuccessBg:e.semantic.success.subtle,colorSuccessBorder:e.semantic.success.main,colorSuccessText:e.semantic.success.main,colorErrorBg:e.semantic.error.subtle,colorErrorBorder:e.semantic.error.main,colorErrorText:e.semantic.error.main,colorWarningBg:e.semantic.warning.subtle,colorWarningBorder:e.semantic.warning.main,colorWarningText:e.semantic.warning.main,colorInfoBg:e.semantic.info.subtle,colorInfoBorder:e.semantic.info.main,colorInfoText:e.semantic.info.main,defaultPadding:`${r.spacing[3]}px ${r.spacing[4]}px`,borderRadiusLG:r.radius.card,withDescriptionPadding:`${r.spacing[4]}px ${r.spacing[5]}px`},Modal:{contentBg:e.surface.overlay,headerBg:e.surface.overlay,footerBg:e.surface.overlay,titleColor:e.text.primary,titleFontSize:r.typography.fontSize.xl,colorBgMask:o?"rgba(0, 0, 0, 0.65)":"rgba(0, 0, 0, 0.45)",boxShadow:r.shadow.modal,borderRadiusLG:r.radius.modal},Drawer:{colorBgElevated:e.surface.overlay,colorText:e.text.primary,colorBgMask:o?"rgba(0, 0, 0, 0.65)":"rgba(0, 0, 0, 0.45)",borderRadiusLG:r.radius.modal,footerPaddingBlock:r.spacing[4],footerPaddingInline:r.spacing[6]},Notification:{colorBgElevated:e.surface.overlay,colorText:e.text.primary,colorTextHeading:e.text.primary,boxShadow:r.shadow.popover,borderRadiusLG:r.radius.card,padding:r.spacing[4]},Message:{contentBg:e.surface.overlay,contentPadding:`${r.spacing[2]}px ${r.spacing[4]}px`,boxShadow:r.shadow.popover,borderRadiusLG:r.radius.card},Popconfirm:{colorBgElevated:e.surface.overlay,colorText:e.text.primary,colorTextHeading:e.text.primary,boxShadowSecondary:r.shadow.popover,borderRadiusLG:r.radius.card},Progress:{defaultColor:e.accent.default,colorSuccess:e.semantic.success.main,colorError:e.semantic.error.main,remainingColor:e.neutral[3],borderRadius:100,lineBorderRadius:100},Result:{titleFontSize:r.typography.fontSize["3xl"],subtitleFontSize:r.typography.fontSize.base,iconFontSize:r.typography.fontSize["5xl"],colorSuccess:e.semantic.success.main,colorError:e.semantic.error.main,colorInfo:e.accent.default,colorWarning:e.semantic.warning.main},Skeleton:{colorFill:e.neutral[2],colorFillContent:e.neutral[3],borderRadiusSM:r.radius.sm},Spin:{colorPrimary:e.accent.default},Menu:{itemBg:"transparent",itemColor:e.text.primary,itemHoverBg:e.surface.interactive,itemHoverColor:e.text.primary,itemSelectedBg:e.surface.selected,itemSelectedColor:e.accent.default,itemActiveBg:e.surface.selected,darkItemBg:e.absolute.black,darkSubMenuItemBg:e.absolute.black,darkItemColor:e.absolute.white,darkItemHoverBg:"rgba(255, 255, 255, 0.08)",darkItemSelectedBg:e.accent.default,darkItemSelectedColor:e.absolute.white,itemBorderRadius:r.radius.sm,itemMarginInline:r.spacing[1],itemPaddingInline:r.spacing[3]},Breadcrumb:{itemColor:e.text.secondary,lastItemColor:e.text.primary,linkColor:e.accent.default,linkHoverColor:e.accent.hover,separatorColor:e.text.tertiary,separatorMargin:r.spacing[2],fontSize:r.typography.fontSize.sm},Pagination:{colorPrimary:e.accent.default,colorPrimaryHover:e.accent.hover,itemActiveBg:e.accent.default,itemBg:e.surface.card,itemLinkBg:e.surface.card,itemInputBg:e.surface.card,borderRadius:r.radius.sm},Steps:{colorPrimary:e.accent.default,colorText:e.text.secondary,colorTextDescription:e.text.tertiary,colorFillContent:e.neutral[3]},Tabs:{colorPrimary:e.accent.default,itemColor:e.text.secondary,itemHoverColor:e.accent.hover,itemSelectedColor:e.accent.default,itemActiveColor:e.accent.default,inkBarColor:e.accent.default,colorBgContainer:e.surface.card,cardPadding:`${r.spacing[2]}px ${r.spacing[4]}px`,horizontalItemPadding:`${r.spacing[3]}px 0`,horizontalItemGutter:r.spacing[8]},Anchor:{colorPrimary:e.accent.default,linkPaddingBlock:r.spacing[1],linkPaddingInlineStart:r.spacing[4]},Dropdown:{colorBgElevated:e.surface.overlay,colorText:e.text.primary,controlItemBgHover:e.surface.interactive,controlItemBgActive:e.surface.selected,boxShadowSecondary:r.shadow.popover,borderRadiusLG:r.radius.card,paddingBlock:r.spacing[1]},Layout:{colorBgBody:e.surface.page,colorBgHeader:e.surface.card,colorBgTrigger:e.surface.interactive,headerBg:e.surface.card,headerColor:e.text.primary,siderBg:e.absolute.black,triggerBg:e.surface.interactive,triggerColor:e.text.primary,headerPadding:`0 ${r.spacing[6]}px`,footerPadding:`${r.spacing[6]}px ${r.spacing[12]}px`},Divider:{colorSplit:e.border.subtle,colorText:e.text.tertiary,colorTextHeading:e.text.secondary,verticalMarginInline:r.spacing[2]},Typography:{colorText:e.text.primary,colorTextSecondary:e.text.secondary,colorLink:e.accent.default,colorLinkHover:e.accent.hover,colorLinkActive:e.accent.active,titleMarginBottom:r.spacing[2],titleMarginTop:r.spacing[4]},Tooltip:{colorBgSpotlight:e.neutral[8],colorTextLightSolid:e.text.inverse,boxShadowSecondary:r.shadow.tooltip,borderRadius:r.radius.sm},Popover:{colorBgElevated:e.surface.overlay,colorText:e.text.primary,colorTextHeading:e.text.primary,boxShadowSecondary:r.shadow.popover,borderRadiusLG:r.radius.card,padding:r.spacing[3]},Upload:{colorFillAlter:e.surface.interactive,colorBorder:e.border.default,actionsColor:e.accent.default},Tour:{colorBgElevated:e.surface.overlay,colorPrimary:e.accent.default,colorText:e.text.primary,boxShadowSecondary:r.shadow.popover,borderRadius:r.radius.card},FloatButton:{colorBgElevated:e.surface.overlay,colorPrimary:e.accent.default,colorText:e.text.primary,boxShadow:r.shadow.popover,borderRadiusLG:r.radius.avatar},Segmented:{colorBgLayout:e.neutral[2],itemColor:e.text.secondary,itemHoverColor:e.text.primary,itemHoverBg:e.surface.interactive,itemSelectedBg:e.surface.card,itemSelectedColor:e.text.primary,itemActiveBg:e.surface.card,borderRadius:r.radius.base,borderRadiusSM:r.radius.sm},Mentions:{colorBgElevated:e.surface.overlay,controlItemBgHover:e.surface.interactive,controlItemBgActive:e.surface.selected,boxShadowSecondary:r.shadow.popover},Cascader:{colorBgElevated:e.surface.overlay,controlItemBgHover:e.surface.interactive,optionSelectedBg:e.surface.selected,colorPrimary:e.accent.default},TreeSelect:{colorBgElevated:e.surface.overlay,nodeHoverBg:e.surface.interactive,nodeSelectedBg:e.surface.selected},Transfer:{colorBgContainer:e.surface.card,controlItemBgHover:e.surface.interactive,controlItemBgActive:e.surface.selected},Rate:{colorFillContent:e.neutral[3],starColor:"#FADB14",starBg:e.neutral[3]},Empty:{colorText:e.text.secondary,colorTextDescription:e.text.tertiary,colorTextDisabled:e.text.disabled},List:{colorBorder:e.border.subtle,colorText:e.text.primary,colorTextDescription:e.text.secondary,itemPadding:`${r.spacing[3]}px 0`,itemPaddingSM:`${r.spacing[2]}px ${r.spacing[3]}px`,itemPaddingLG:`${r.spacing[4]}px ${r.spacing[6]}px`,metaMarginBottom:r.spacing[2],avatarMarginRight:r.spacing[4],titleMarginBottom:r.spacing[1]}}}})(i,n);return a?Object.assign(Object.assign({},o),{token:Object.assign(Object.assign({},o.token),null!==(e=a.token)&&void 0!==e?e:{}),components:Object.assign(Object.assign({},o.components),null!==(r=a.components)&&void 0!==r?r:{})}):o},[i,n,a]),l=e.useMemo(()=>({colors:i,constants:n,mode:t}),[i,n,t]);return s.jsx(y.Provider,{value:l,children:s.jsx(r,{theme:c,children:o})})},x=()=>e.useContext(y);export{b as T,s as j,x as u};
11
+ //# sourceMappingURL=theme-provider-BX8M54Ue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme-provider-BX8M54Ue.js","sources":["../node_modules/react/cjs/react-jsx-runtime.development.js","../node_modules/react/jsx-runtime.js","../node_modules/react/cjs/react-jsx-runtime.production.js","../src/theme/tokens/constants.ts","../src/theme/tokens/colors.ts","../src/theme/theme-provider.tsx","../src/theme/theme-config.ts"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function testStringCoercion(value) {\n return \"\" + value;\n }\n function checkKeyStringCoercion(value) {\n try {\n testStringCoercion(value);\n var JSCompiler_inline_result = !1;\n } catch (e) {\n JSCompiler_inline_result = !0;\n }\n if (JSCompiler_inline_result) {\n JSCompiler_inline_result = console;\n var JSCompiler_temp_const = JSCompiler_inline_result.error;\n var JSCompiler_inline_result$jscomp$0 =\n (\"function\" === typeof Symbol &&\n Symbol.toStringTag &&\n value[Symbol.toStringTag]) ||\n value.constructor.name ||\n \"Object\";\n JSCompiler_temp_const.call(\n JSCompiler_inline_result,\n \"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.\",\n JSCompiler_inline_result$jscomp$0\n );\n return testStringCoercion(value);\n }\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function getOwner() {\n var dispatcher = ReactSharedInternals.A;\n return null === dispatcher ? null : dispatcher.getOwner();\n }\n function UnknownOwner() {\n return Error(\"react-stack-top-frame\");\n }\n function hasValidKey(config) {\n if (hasOwnProperty.call(config, \"key\")) {\n var getter = Object.getOwnPropertyDescriptor(config, \"key\").get;\n if (getter && getter.isReactWarning) return !1;\n }\n return void 0 !== config.key;\n }\n function defineKeyPropWarningGetter(props, displayName) {\n function warnAboutAccessingKey() {\n specialPropKeyWarningShown ||\n ((specialPropKeyWarningShown = !0),\n console.error(\n \"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)\",\n displayName\n ));\n }\n warnAboutAccessingKey.isReactWarning = !0;\n Object.defineProperty(props, \"key\", {\n get: warnAboutAccessingKey,\n configurable: !0\n });\n }\n function elementRefGetterWithDeprecationWarning() {\n var componentName = getComponentNameFromType(this.type);\n didWarnAboutElementRef[componentName] ||\n ((didWarnAboutElementRef[componentName] = !0),\n console.error(\n \"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.\"\n ));\n componentName = this.props.ref;\n return void 0 !== componentName ? componentName : null;\n }\n function ReactElement(type, key, props, owner, debugStack, debugTask) {\n var refProp = props.ref;\n type = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n props: props,\n _owner: owner\n };\n null !== (void 0 !== refProp ? refProp : null)\n ? Object.defineProperty(type, \"ref\", {\n enumerable: !1,\n get: elementRefGetterWithDeprecationWarning\n })\n : Object.defineProperty(type, \"ref\", { enumerable: !1, value: null });\n type._store = {};\n Object.defineProperty(type._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: 0\n });\n Object.defineProperty(type, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(type, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugStack\n });\n Object.defineProperty(type, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugTask\n });\n Object.freeze && (Object.freeze(type.props), Object.freeze(type));\n return type;\n }\n function jsxDEVImpl(\n type,\n config,\n maybeKey,\n isStaticChildren,\n debugStack,\n debugTask\n ) {\n var children = config.children;\n if (void 0 !== children)\n if (isStaticChildren)\n if (isArrayImpl(children)) {\n for (\n isStaticChildren = 0;\n isStaticChildren < children.length;\n isStaticChildren++\n )\n validateChildKeys(children[isStaticChildren]);\n Object.freeze && Object.freeze(children);\n } else\n console.error(\n \"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\"\n );\n else validateChildKeys(children);\n if (hasOwnProperty.call(config, \"key\")) {\n children = getComponentNameFromType(type);\n var keys = Object.keys(config).filter(function (k) {\n return \"key\" !== k;\n });\n isStaticChildren =\n 0 < keys.length\n ? \"{key: someKey, \" + keys.join(\": ..., \") + \": ...}\"\n : \"{key: someKey}\";\n didWarnAboutKeySpread[children + isStaticChildren] ||\n ((keys =\n 0 < keys.length ? \"{\" + keys.join(\": ..., \") + \": ...}\" : \"{}\"),\n console.error(\n 'A props object containing a \"key\" prop is being spread into JSX:\\n let props = %s;\\n <%s {...props} />\\nReact keys must be passed directly to JSX without using spread:\\n let props = %s;\\n <%s key={someKey} {...props} />',\n isStaticChildren,\n children,\n keys,\n children\n ),\n (didWarnAboutKeySpread[children + isStaticChildren] = !0));\n }\n children = null;\n void 0 !== maybeKey &&\n (checkKeyStringCoercion(maybeKey), (children = \"\" + maybeKey));\n hasValidKey(config) &&\n (checkKeyStringCoercion(config.key), (children = \"\" + config.key));\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n children &&\n defineKeyPropWarningGetter(\n maybeKey,\n \"function\" === typeof type\n ? type.displayName || type.name || \"Unknown\"\n : type\n );\n return ReactElement(\n type,\n children,\n maybeKey,\n getOwner(),\n debugStack,\n debugTask\n );\n }\n function validateChildKeys(node) {\n isValidElement(node)\n ? node._store && (node._store.validated = 1)\n : \"object\" === typeof node &&\n null !== node &&\n node.$$typeof === REACT_LAZY_TYPE &&\n (\"fulfilled\" === node._payload.status\n ? isValidElement(node._payload.value) &&\n node._payload.value._store &&\n (node._payload.value._store.validated = 1)\n : node._store && (node._store.validated = 1));\n }\n function isValidElement(object) {\n return (\n \"object\" === typeof object &&\n null !== object &&\n object.$$typeof === REACT_ELEMENT_TYPE\n );\n }\n var React = require(\"react\"),\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n isArrayImpl = Array.isArray,\n createTask = console.createTask\n ? console.createTask\n : function () {\n return null;\n };\n React = {\n react_stack_bottom_frame: function (callStackForError) {\n return callStackForError();\n }\n };\n var specialPropKeyWarningShown;\n var didWarnAboutElementRef = {};\n var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(\n React,\n UnknownOwner\n )();\n var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));\n var didWarnAboutKeySpread = {};\n exports.Fragment = REACT_FRAGMENT_TYPE;\n exports.jsx = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !1,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n exports.jsxs = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !0,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n })();\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","/**\n * @license React\n * react-jsx-runtime.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\");\nfunction jsxProd(type, config, maybeKey) {\n var key = null;\n void 0 !== maybeKey && (key = \"\" + maybeKey);\n void 0 !== config.key && (key = \"\" + config.key);\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n config = maybeKey.ref;\n return {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n ref: void 0 !== config ? config : null,\n props: maybeKey\n };\n}\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.jsx = jsxProd;\nexports.jsxs = jsxProd;\n",null,null,null,null],"names":["process","env","NODE_ENV","getComponentNameFromType","type","$$typeof","REACT_CLIENT_REFERENCE","displayName","name","REACT_FRAGMENT_TYPE","REACT_PROFILER_TYPE","REACT_STRICT_MODE_TYPE","REACT_SUSPENSE_TYPE","REACT_SUSPENSE_LIST_TYPE","REACT_ACTIVITY_TYPE","tag","console","error","REACT_PORTAL_TYPE","REACT_CONTEXT_TYPE","REACT_CONSUMER_TYPE","_context","REACT_FORWARD_REF_TYPE","innerType","render","REACT_MEMO_TYPE","REACT_LAZY_TYPE","_payload","_init","x","testStringCoercion","value","checkKeyStringCoercion","JSCompiler_inline_result","e","JSCompiler_temp_const","JSCompiler_inline_result$jscomp$0","Symbol","toStringTag","constructor","call","getTaskName","UnknownOwner","Error","elementRefGetterWithDeprecationWarning","componentName","this","didWarnAboutElementRef","props","ref","jsxDEVImpl","config","maybeKey","isStaticChildren","debugStack","debugTask","dispatcher","children","isArrayImpl","length","validateChildKeys","Object","freeze","hasOwnProperty","keys","filter","k","join","didWarnAboutKeySpread","getter","getOwnPropertyDescriptor","get","isReactWarning","key","hasValidKey","propName","warnAboutAccessingKey","specialPropKeyWarningShown","defineProperty","configurable","defineKeyPropWarningGetter","owner","refProp","REACT_ELEMENT_TYPE","_owner","enumerable","_store","writable","ReactElement","ReactSharedInternals","A","getOwner","node","isValidElement","validated","status","object","React","require$$0","for","__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE","prototype","Array","isArray","createTask","unknownOwnerDebugStack","react_stack_bottom_frame","callStackForError","bind","unknownOwnerDebugTask","reactJsxRuntime_development","Fragment","jsx","trackActualOwner","recentlyCreatedOwnerStacks","jsxs","jsxRuntimeModule","exports","jsxProd","reactJsxRuntime_production","require$$1","defaultUIConstants","typography","fontFamily","base","mono","fontSize","xs","sm","lg","xl","fontWeight","light","regular","medium","semibold","bold","heavy","lineHeight","tight","relaxed","letterSpacing","wide","spacing","radius","none","md","full","button","input","card","modal","avatar","shadow","popover","tooltip","zIndex","dropdown","notification","transition","fast","slow","LIGHT_NEUTRAL_SCALE","DARK_NEUTRAL_SCALE","buildLightModeColors","mode","neutral","absolute","black","white","accent","default","hover","active","subtle","semantic","main","contrast","success","warning","info","surface","page","overlay","interactive","selected","nested","border","strong","text","primary","secondary","tertiary","disabled","inverse","action","buildDarkModeColors","buildColorPalette","TemboThemeContext","createContext","colors","constants","TemboThemeProvider","antdThemeOverrides","useMemo","antdTheme","baseTheme","isDark","token","colorPrimary","colorPrimaryHover","colorPrimaryActive","colorPrimaryBg","colorPrimaryBgHover","colorPrimaryBorder","colorPrimaryBorderHover","colorPrimaryText","colorPrimaryTextHover","colorPrimaryTextActive","colorLink","colorLinkHover","colorLinkActive","colorText","colorTextSecondary","colorTextTertiary","colorTextQuaternary","colorTextDescription","colorTextDisabled","colorTextHeading","colorTextLabel","colorTextPlaceholder","colorTextLightSolid","colorBgBase","colorBgContainer","colorBgElevated","colorBgLayout","colorBgSpotlight","colorBgMask","colorBgTextHover","colorBgTextActive","colorBgContainerDisabled","colorBorder","colorBorderBg","colorBorderSecondary","colorSplit","colorFill","colorFillSecondary","colorFillTertiary","colorFillQuaternary","colorSuccess","colorSuccessBg","colorSuccessBgHover","colorSuccessBorder","colorSuccessBorderHover","colorSuccessText","colorSuccessTextHover","colorSuccessTextActive","colorError","colorErrorBg","colorErrorBgHover","colorErrorBorder","colorErrorBorderHover","colorErrorText","colorErrorTextHover","colorErrorTextActive","colorWarning","colorWarningBg","colorWarningBgHover","colorWarningBorder","colorWarningBorderHover","colorWarningText","colorWarningTextHover","colorWarningTextActive","colorInfo","colorInfoBg","colorInfoBgHover","colorInfoBorder","colorInfoBorderHover","colorInfoText","colorInfoTextHover","colorInfoTextActive","fontFamilyCode","fontSizeSM","fontSizeLG","fontSizeXL","fontSizeHeading1","fontSizeHeading2","fontSizeHeading3","fontSizeHeading4","fontSizeHeading5","fontWeightStrong","lineHeightSM","lineHeightLG","lineHeightHeading1","lineHeightHeading2","lineHeightHeading3","lineHeightHeading4","lineHeightHeading5","padding","paddingXS","paddingSM","paddingLG","paddingXL","margin","marginXS","marginSM","marginLG","marginXL","marginXXL","controlHeight","controlHeightLG","controlHeightSM","controlHeightXS","borderRadius","borderRadiusLG","borderRadiusSM","borderRadiusXS","boxShadow","boxShadowSecondary","boxShadowTertiary","motionUnit","motionBase","motionEaseInOut","motionEaseOut","motionEaseInBack","zIndexBase","zIndexPopupBase","components","Button","primaryColor","defaultBg","defaultBorderColor","defaultColor","defaultHoverBg","defaultHoverBorderColor","defaultHoverColor","defaultActiveBg","defaultActiveBorderColor","defaultActiveColor","textHoverBg","dangerColor","colorErrorHover","colorErrorActive","borderColorDisabled","primaryShadow","defaultShadow","dangerShadow","paddingContentHorizontal","paddingContentVertical","Input","colorIcon","colorIconHover","hoverBg","hoverBorderColor","activeBg","activeBorderColor","activeShadow","errorActiveShadow","warningActiveShadow","paddingBlock","paddingInline","paddingInlineLG","InputNumber","handleVisible","Select","optionSelectedBg","optionActiveBg","controlItemBgHover","controlItemBgActive","DatePicker","cellHoverBg","cellActiveWithRangeBg","Checkbox","Radio","Switch","handleSize","Slider","handleColor","handleActiveColor","railBg","railHoverBg","trackBg","trackHoverBg","dotBorderColor","dotActiveBorderColor","Form","labelColor","labelFontSize","labelRequiredMarkColor","itemMarginBottom","verticalLabelPadding","Table","headerBg","headerColor","borderColor","rowHoverBg","rowSelectedBg","rowExpandedBg","headerBorderRadius","cellPaddingBlock","cellPaddingInline","cellPaddingBlockSM","cellPaddingInlineSM","cellFontSize","headerSortActiveBg","Descriptions","labelBg","titleColor","contentColor","extraColor","itemPaddingBottom","Card","Statistic","titleFontSize","contentFontSize","Timeline","tailColor","tailWidth","dotBg","dotBorderWidth","Tag","Badge","textFontSize","textFontWeight","Avatar","groupOverlapping","groupSpace","Calendar","itemActiveBg","Collapse","headerPadding","contentPadding","Tree","nodeHoverBg","nodeSelectedBg","directoryNodeSelectedBg","Alert","defaultPadding","withDescriptionPadding","Modal","contentBg","footerBg","Drawer","footerPaddingBlock","footerPaddingInline","Notification","Message","Popconfirm","Progress","remainingColor","lineBorderRadius","Result","subtitleFontSize","iconFontSize","Skeleton","colorFillContent","Spin","Menu","itemBg","itemColor","itemHoverBg","itemHoverColor","itemSelectedBg","itemSelectedColor","darkItemBg","darkSubMenuItemBg","darkItemColor","darkItemHoverBg","darkItemSelectedBg","darkItemSelectedColor","itemBorderRadius","itemMarginInline","itemPaddingInline","Breadcrumb","lastItemColor","linkColor","linkHoverColor","separatorColor","separatorMargin","Pagination","itemLinkBg","itemInputBg","Steps","Tabs","itemActiveColor","inkBarColor","cardPadding","horizontalItemPadding","horizontalItemGutter","Anchor","linkPaddingBlock","linkPaddingInlineStart","Dropdown","Layout","colorBgBody","colorBgHeader","colorBgTrigger","siderBg","triggerBg","triggerColor","footerPadding","Divider","verticalMarginInline","Typography","titleMarginBottom","titleMarginTop","Tooltip","Popover","Upload","colorFillAlter","actionsColor","Tour","FloatButton","Segmented","Mentions","Cascader","TreeSelect","Transfer","Rate","starColor","starBg","Empty","List","itemPadding","itemPaddingSM","itemPaddingLG","metaMarginBottom","avatarMarginRight","buildAntDTheme","assign","_a","_b","contextValue","_jsx","Provider","ConfigProvider","theme","useNewTemboTheme","useContext"],"mappings":"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","x_google_ignoreList":[0,1,2]}
@@ -1,2 +1,2 @@
1
- import{j as r}from"./theme-provider-Z0VeuZ9j.js";import e from"react";import{ConfigProvider as o}from"antd";import{merge as t}from"lodash";const a={neutral:{0:"#ffffff",1:"#fafafa",2:"#f5f5f5",3:"#f0f0f0",4:"#e5e5e5",5:"#d4d4d4",6:"#b3b3b3",7:"#999999",8:"#666666",9:"#1a1a1a",10:"#000000"}},n={neutral:{0:"#000000",1:"#1a1a1a",2:"#666666",3:"#999999",4:"#b3b3b3",5:"#d4d4d4",6:"#e5e5e5",7:"#f0f0f0",8:"#f5f5f5",9:"#fafafa",10:"#ffffff"}},i=r=>{const e="light"===r?a:n;return{primary:{main:"#000000",hover:"#1a1a1a",active:"#000000",light:"#666666",lighter:"#999999",contrast:"#FFFFFF"},action:{main:"#1a6985",hover:"#145268",active:"#0f3d4f",light:"#e8f2f5",lighter:"#f4f9fa",disabled:"#a3c9d6",contrast:"#FFFFFF"},absolute:{white:"#ffffff",black:"#000000"},neutral:{0:e.neutral[0],1:e.neutral[1],2:e.neutral[2],3:e.neutral[3],4:e.neutral[4],5:e.neutral[5],6:e.neutral[6],7:e.neutral[7],8:e.neutral[8],9:e.neutral[9],10:e.neutral[10],brightest:e.neutral[0],lightest:e.neutral[1],lighter:e.neutral[2],light:e.neutral[3],medium:e.neutral[5],dark:e.neutral[7],darker:e.neutral[8],darkest:e.neutral[9],dimmest:e.neutral[10]},success:{main:"#10b981",bg:"#ecfdf5",border:"#a7f3d0",text:"#047857"},error:{main:"#ef4444",bg:"#fef2f2",border:"#fecaca",text:"#dc2626"},warning:{main:"#f59e0b",bg:"#fffbeb",border:"#fde68a",text:"#d97706"},info:{main:"#1a6985",bg:"#e8f2f5",border:"#b8d9e6",text:"#0f3d4f"},surface:{background:e.neutral[0],main:e.neutral[0],elevated:e.neutral[0],hover:e.neutral[1],subtle:e.neutral[1]},text:{primary:e.neutral[10],secondary:e.neutral[8],tertiary:e.neutral[7],quaternary:e.neutral[6],disabled:e.neutral[5],inverse:e.neutral[0]},border:{main:e.neutral[4],light:e.neutral[3],strong:e.neutral[5],divider:e.neutral[4]},components:{button:{primary:{bg:"#1a6985",hover:"#145268",text:"#FFFFFF"},default:{bg:e.neutral[0],border:e.neutral[5],text:e.neutral[10],hover:e.neutral[1]}},input:{bg:e.neutral[0],border:e.neutral[5],borderHover:e.neutral[7],borderFocus:"#1a6985",placeholder:e.neutral[7]},table:{bg:e.neutral[0],headerBg:e.neutral[1],headerText:e.neutral[10],border:e.neutral[4],rowHover:e.neutral[1]},sidebar:{bg:"#000000",hover:"rgba(255, 255, 255, 0.08)",selected:"rgba(255, 255, 255, 0.12)",text:"#FFFFFF",textSecondary:"rgba(255, 255, 255, 0.65)"}},utility:{transparent:"transparent",link:"#1a6985",linkHover:"#145268",linkActive:"#0f3d4f"}}},l=i("light"),d=(r,e="light")=>{const o=i(e);if(!r)return o;const a=t({},o,r);return a.neutral.brightest=a.neutral[0],a.neutral.lightest=a.neutral[1],a.neutral.lighter=a.neutral[2],a.neutral.light=a.neutral[3],a.neutral.medium=a.neutral[5],a.neutral.dark=a.neutral[7],a.neutral.darker=a.neutral[8],a.neutral.darkest=a.neutral[9],a.neutral.dimmest=a.neutral[10],a},c={typography:{fontFamily:"Avenir, MarkPro, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif",fontSize:{xs:12,sm:13,base:14,lg:16,xl:18},fontWeight:{normal:400,medium:500,semibold:600,bold:700},lineHeight:{tight:1.25,base:1.5715,relaxed:1.75}},spacing:{xs:4,sm:8,md:12,lg:16,xl:24,"2xl":32,"3xl":48},radius:{none:0,sm:8,base:12,md:14,lg:16,xl:20,full:9999,button:24,input:10,card:16},shadow:{sm:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",base:"0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08)",md:"0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08)",lg:"0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08)",xl:"0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08)",card:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",elevated:"0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08)",dropdown:"0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08)"},zIndex:{dropdown:1e3,modal:1050,popover:1060,tooltip:1070,notification:1080},transition:{fast:"150ms cubic-bezier(0.4, 0, 0.2, 1)",base:"200ms cubic-bezier(0.4, 0, 0.2, 1)",slow:"300ms cubic-bezier(0.4, 0, 0.2, 1)"}},s=r=>r?t(c,r):c,u=e.createContext({colors:d(),constants:s(),mode:"light"}),b=({children:t,mode:a="light",colors:n,constants:i,themeOverrides:l})=>{const c=e.useMemo(()=>d(n,a),[n,a]),b=e.useMemo(()=>s(i),[i]),g=e.useMemo(()=>((r,e,o,t)=>{var a,n;const i={token:{colorPrimary:r.primary.main,colorPrimaryHover:r.primary.hover,colorPrimaryActive:r.primary.active,colorPrimaryBorder:r.primary.main,colorText:r.text.primary,colorTextSecondary:r.text.secondary,colorTextTertiary:r.text.tertiary,colorTextQuaternary:r.text.quaternary,colorTextDisabled:r.text.disabled,colorBgBase:r.surface.background,colorBgContainer:r.surface.main,colorBgElevated:r.surface.elevated,colorBgLayout:r.surface.background,colorBgSpotlight:r.surface.hover,colorBorder:r.border.main,colorBorderSecondary:r.border.light,colorSplit:r.border.divider,colorSuccess:r.success.main,colorSuccessBg:r.success.bg,colorSuccessBorder:r.success.border,colorSuccessText:r.success.text,colorError:r.error.main,colorErrorBg:r.error.bg,colorErrorBorder:r.error.border,colorErrorText:r.error.text,colorWarning:r.warning.main,colorWarningBg:r.warning.bg,colorWarningBorder:r.warning.border,colorWarningText:r.warning.text,colorInfo:r.info.main,colorInfoBg:r.info.bg,colorInfoBorder:r.info.border,colorInfoText:r.info.text,colorLink:r.utility.link,colorLinkHover:r.utility.linkHover,colorLinkActive:r.utility.linkActive,borderRadius:e.radius.base,borderRadiusLG:e.radius.lg,borderRadiusSM:e.radius.sm,borderRadiusXS:6,boxShadow:e.shadow.base,boxShadowSecondary:e.shadow.card,boxShadowTertiary:e.shadow.elevated,fontFamily:e.typography.fontFamily,fontSize:e.typography.fontSize.base,fontSizeHeading1:38,fontSizeHeading2:30,fontSizeHeading3:24,fontSizeHeading4:20,fontSizeHeading5:e.typography.fontSize.lg,fontWeightStrong:e.typography.fontWeight.medium,lineHeight:e.typography.lineHeight.base,lineHeightHeading1:1.21,lineHeightHeading2:1.27,lineHeightHeading3:1.33,lineHeightHeading4:1.4,lineHeightHeading5:1.5},components:{Button:{colorPrimary:r.components.button.primary.bg,colorPrimaryHover:r.components.button.primary.hover,colorPrimaryActive:r.action.active,colorPrimaryBorder:r.components.button.primary.bg,primaryColor:r.components.button.primary.text,colorBorder:r.components.button.default.border,colorBgContainer:r.components.button.default.bg,colorText:r.components.button.default.text,defaultBg:r.components.button.default.bg,defaultBorderColor:r.components.button.default.border,defaultColor:r.components.button.default.text,primaryShadow:"none",defaultShadow:"none",dangerShadow:"none",fontWeight:e.typography.fontWeight.medium,controlHeight:32,paddingContentHorizontal:e.spacing.lg,borderRadius:e.radius.button,borderRadiusLG:e.radius.button,borderRadiusSM:e.radius.sm+8},Input:{colorBgContainer:r.components.input.bg,colorBorder:r.components.input.border,hoverBorderColor:r.components.input.borderHover,activeBorderColor:r.components.input.borderFocus,colorPrimaryHover:r.components.input.borderFocus,colorTextPlaceholder:r.components.input.placeholder,borderRadius:e.radius.input,borderRadiusLG:e.radius.base,borderRadiusSM:e.radius.sm},Select:{colorBgContainer:r.components.input.bg,colorBorder:r.components.input.border,colorTextPlaceholder:r.components.input.placeholder,colorPrimaryHover:r.action.main,hoverBorderColor:r.components.input.borderHover,activeBorderColor:r.components.input.borderFocus,optionSelectedBg:r.action.main,optionSelectedColor:r.action.contrast,optionActiveBg:r.surface.hover,colorBgElevated:r.neutral.brightest,controlItemBgHover:r.surface.hover,boxShadowSecondary:e.shadow.elevated,borderRadius:e.radius.input,borderRadiusLG:e.radius.base,borderRadiusSM:e.radius.sm},Checkbox:{colorPrimary:r.action.main,colorPrimaryHover:r.action.hover,colorBorder:r.border.strong,borderRadiusSM:6},Radio:{colorPrimary:r.action.main,colorPrimaryHover:r.action.hover,colorBorder:r.border.strong},Switch:{colorPrimary:r.action.main,colorPrimaryHover:r.action.hover,colorTextQuaternary:r.text.quaternary},Form:{labelColor:r.text.primary,labelRequiredMarkColor:r.error.main,labelFontSize:e.typography.fontSize.base,itemMarginBottom:e.spacing.lg},DatePicker:{colorBgContainer:r.components.input.bg,colorBorder:r.components.input.border,hoverBorderColor:r.components.input.borderHover,activeBorderColor:r.components.input.borderFocus,colorPrimary:r.action.main,borderRadius:e.radius.input},InputNumber:{borderRadius:e.radius.input},Table:{colorBgContainer:r.components.table.bg,headerBg:r.components.table.headerBg,headerColor:r.components.table.headerText,borderColor:r.components.table.border,headerSplitColor:r.components.table.border,rowHoverBg:r.components.table.rowHover,rowSelectedBg:r.action.light,rowSelectedHoverBg:r.action.lighter,colorText:r.text.primary,colorTextHeading:r.text.primary,borderRadius:e.radius.base,borderRadiusLG:e.radius.lg},Card:{colorBgContainer:r.surface.main,colorBorder:r.border.main,colorBorderSecondary:r.border.light,boxShadowTertiary:e.shadow.card,borderRadius:e.radius.card,borderRadiusLG:e.radius.lg+4},Statistic:{contentFontSize:24,colorTextHeading:r.text.primary},Descriptions:{labelBg:r.surface.hover,colorTextSecondary:r.text.secondary,itemPaddingBottom:e.spacing.md},Badge:{colorError:r.error.main,colorSuccess:r.success.main,colorInfo:r.info.main,colorInfoBg:r.info.bg,borderRadiusSM:e.radius.input},Tag:{colorBorder:r.border.main,defaultBg:r.surface.hover,borderRadiusSM:e.radius.sm},Timeline:{dotBg:r.surface.main,tailColor:r.border.main},Alert:{colorSuccessBg:r.success.bg,colorSuccessBorder:r.success.border,colorErrorBg:r.error.bg,colorErrorBorder:r.error.border,colorWarningBg:r.warning.bg,colorWarningBorder:r.warning.border,colorInfoBg:r.info.bg,colorInfoBorder:r.info.border,borderRadiusLG:e.radius.base},Modal:{contentBg:r.surface.elevated,headerBg:r.surface.elevated,colorBgMask:"rgba(0, 0, 0, 0.45)",borderRadiusLG:e.radius.lg},Drawer:{colorBgElevated:r.surface.elevated,colorBgMask:"rgba(0, 0, 0, 0.45)",borderRadiusLG:e.radius.lg},Notification:{colorBgElevated:r.neutral.brightest,borderRadiusLG:e.radius.base},Message:{contentBg:r.neutral.brightest,borderRadiusLG:e.radius.base},Spin:{colorPrimary:r.primary.main},Progress:{colorSuccess:r.success.main,colorError:r.error.main,defaultColor:r.primary.main,borderRadius:100},Skeleton:{colorFill:r.neutral[2],colorFillContent:r.neutral[1],borderRadiusSM:e.radius.sm},Menu:{itemBg:"transparent",itemColor:r.text.primary,itemHoverBg:r.surface.hover,itemSelectedBg:r.action.lighter,itemSelectedColor:r.action.main,itemActiveBg:r.action.lighter,subMenuItemBg:"transparent",darkItemBg:r.components.sidebar.bg,darkSubMenuItemBg:r.components.sidebar.bg,darkItemColor:r.components.sidebar.text,darkItemHoverBg:r.components.sidebar.hover,darkItemSelectedBg:r.components.sidebar.selected,darkItemSelectedColor:r.primary.contrast,borderRadius:e.radius.input,borderRadiusLG:e.radius.base},Breadcrumb:{linkColor:r.utility.link,linkHoverColor:r.utility.linkHover,itemColor:r.text.secondary,lastItemColor:r.text.primary,separatorColor:r.text.tertiary,borderRadiusSM:6},Pagination:{colorPrimary:r.primary.main,colorPrimaryHover:r.primary.hover,itemActiveBg:r.primary.main,borderRadius:e.radius.sm},Steps:{colorPrimary:r.action.main,colorText:r.text.secondary,colorTextDescription:r.text.tertiary,borderRadiusSM:100},Tabs:{colorPrimary:r.action.main,colorBorderSecondary:r.border.main,itemColor:r.text.secondary,itemHoverColor:r.action.hover,itemSelectedColor:r.action.main,inkBarColor:r.action.main,borderRadiusSM:e.radius.sm},Layout:{colorBgBody:r.surface.background,colorBgHeader:r.neutral.brightest,colorBgTrigger:r.components.sidebar.bg,siderBg:r.components.sidebar.bg,headerBg:r.neutral.brightest,borderRadiusLG:0},Divider:{colorSplit:r.border.divider},Typography:{colorText:r.text.primary,colorTextSecondary:r.text.secondary,colorTextDescription:r.text.tertiary},Tooltip:{colorBgSpotlight:r.neutral.darkest,colorTextLightSolid:r.neutral.brightest,borderRadius:e.radius.sm},Popover:{colorBgElevated:r.neutral.brightest,borderRadiusLG:e.radius.base},Dropdown:{boxShadowSecondary:e.shadow.dropdown},Calendar:{colorBgContainer:r.neutral.brightest,colorPrimary:r.action.main,borderRadiusLG:e.radius.base}}};return t?Object.assign(Object.assign({},i),{token:Object.assign(Object.assign({},i.token),null!==(a=t.token)&&void 0!==a?a:{}),components:Object.assign(Object.assign({},i.components),null!==(n=t.components)&&void 0!==n?n:{})}):i})(c,b,0,l),[c,b,a,l]),m=e.useMemo(()=>({colors:c,constants:b,mode:a}),[c,b,a]);return r.jsx(u.Provider,{value:m,children:r.jsx(o,{theme:g,children:t})})},g=()=>e.useContext(u);export{b as L,c as a,d as b,s as c,l as d,g as u};
2
- //# sourceMappingURL=theme-provider-CAYLAupF.js.map
1
+ import{j as r}from"./theme-provider-BX8M54Ue.js";import e from"react";import{ConfigProvider as o}from"antd";import{merge as t}from"lodash";const a={neutral:{0:"#ffffff",1:"#fafafa",2:"#f5f5f5",3:"#f0f0f0",4:"#e5e5e5",5:"#d4d4d4",6:"#b3b3b3",7:"#999999",8:"#666666",9:"#1a1a1a",10:"#000000"}},n={neutral:{0:"#000000",1:"#1a1a1a",2:"#666666",3:"#999999",4:"#b3b3b3",5:"#d4d4d4",6:"#e5e5e5",7:"#f0f0f0",8:"#f5f5f5",9:"#fafafa",10:"#ffffff"}},i=r=>{const e="light"===r?a:n;return{primary:{main:"#000000",hover:"#1a1a1a",active:"#000000",light:"#666666",lighter:"#999999",contrast:"#FFFFFF"},action:{main:"#1a6985",hover:"#145268",active:"#0f3d4f",light:"#e8f2f5",lighter:"#f4f9fa",disabled:"#a3c9d6",contrast:"#FFFFFF"},absolute:{white:"#ffffff",black:"#000000"},neutral:{0:e.neutral[0],1:e.neutral[1],2:e.neutral[2],3:e.neutral[3],4:e.neutral[4],5:e.neutral[5],6:e.neutral[6],7:e.neutral[7],8:e.neutral[8],9:e.neutral[9],10:e.neutral[10],brightest:e.neutral[0],lightest:e.neutral[1],lighter:e.neutral[2],light:e.neutral[3],medium:e.neutral[5],dark:e.neutral[7],darker:e.neutral[8],darkest:e.neutral[9],dimmest:e.neutral[10]},success:{main:"#10b981",bg:"#ecfdf5",border:"#a7f3d0",text:"#047857"},error:{main:"#ef4444",bg:"#fef2f2",border:"#fecaca",text:"#dc2626"},warning:{main:"#f59e0b",bg:"#fffbeb",border:"#fde68a",text:"#d97706"},info:{main:"#1a6985",bg:"#e8f2f5",border:"#b8d9e6",text:"#0f3d4f"},surface:{background:e.neutral[0],main:e.neutral[0],elevated:e.neutral[0],hover:e.neutral[1],subtle:e.neutral[1]},text:{primary:e.neutral[10],secondary:e.neutral[8],tertiary:e.neutral[7],quaternary:e.neutral[6],disabled:e.neutral[5],inverse:e.neutral[0]},border:{main:e.neutral[4],light:e.neutral[3],strong:e.neutral[5],divider:e.neutral[4]},components:{button:{primary:{bg:"#1a6985",hover:"#145268",text:"#FFFFFF"},default:{bg:e.neutral[0],border:e.neutral[5],text:e.neutral[10],hover:e.neutral[1]}},input:{bg:e.neutral[0],border:e.neutral[5],borderHover:e.neutral[7],borderFocus:"#1a6985",placeholder:e.neutral[7]},table:{bg:e.neutral[0],headerBg:e.neutral[1],headerText:e.neutral[10],border:e.neutral[4],rowHover:e.neutral[1]},sidebar:{bg:"#000000",hover:"rgba(255, 255, 255, 0.08)",selected:"rgba(255, 255, 255, 0.12)",text:"#FFFFFF",textSecondary:"rgba(255, 255, 255, 0.65)"}},utility:{transparent:"transparent",link:"#1a6985",linkHover:"#145268",linkActive:"#0f3d4f"}}},l=i("light"),d=(r,e="light")=>{const o=i(e);if(!r)return o;const a=t({},o,r);return a.neutral.brightest=a.neutral[0],a.neutral.lightest=a.neutral[1],a.neutral.lighter=a.neutral[2],a.neutral.light=a.neutral[3],a.neutral.medium=a.neutral[5],a.neutral.dark=a.neutral[7],a.neutral.darker=a.neutral[8],a.neutral.darkest=a.neutral[9],a.neutral.dimmest=a.neutral[10],a},c={typography:{fontFamily:"Avenir, MarkPro, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif",fontSize:{xs:12,sm:13,base:14,lg:16,xl:18},fontWeight:{normal:400,medium:500,semibold:600,bold:700},lineHeight:{tight:1.25,base:1.5715,relaxed:1.75}},spacing:{xs:4,sm:8,md:12,lg:16,xl:24,"2xl":32,"3xl":48},radius:{none:0,sm:8,base:12,md:14,lg:16,xl:20,full:9999,button:24,input:10,card:16},shadow:{sm:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",base:"0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08)",md:"0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08)",lg:"0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08)",xl:"0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08)",card:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",elevated:"0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08)",dropdown:"0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08)"},zIndex:{dropdown:1e3,modal:1050,popover:1060,tooltip:1070,notification:1080},transition:{fast:"150ms cubic-bezier(0.4, 0, 0.2, 1)",base:"200ms cubic-bezier(0.4, 0, 0.2, 1)",slow:"300ms cubic-bezier(0.4, 0, 0.2, 1)"}},s=r=>r?t(c,r):c,u=e.createContext({colors:d(),constants:s(),mode:"light"}),b=({children:t,mode:a="light",colors:n,constants:i,themeOverrides:l})=>{const c=e.useMemo(()=>d(n,a),[n,a]),b=e.useMemo(()=>s(i),[i]),g=e.useMemo(()=>((r,e,o,t)=>{var a,n;const i={token:{colorPrimary:r.primary.main,colorPrimaryHover:r.primary.hover,colorPrimaryActive:r.primary.active,colorPrimaryBorder:r.primary.main,colorText:r.text.primary,colorTextSecondary:r.text.secondary,colorTextTertiary:r.text.tertiary,colorTextQuaternary:r.text.quaternary,colorTextDisabled:r.text.disabled,colorBgBase:r.surface.background,colorBgContainer:r.surface.main,colorBgElevated:r.surface.elevated,colorBgLayout:r.surface.background,colorBgSpotlight:r.surface.hover,colorBorder:r.border.main,colorBorderSecondary:r.border.light,colorSplit:r.border.divider,colorSuccess:r.success.main,colorSuccessBg:r.success.bg,colorSuccessBorder:r.success.border,colorSuccessText:r.success.text,colorError:r.error.main,colorErrorBg:r.error.bg,colorErrorBorder:r.error.border,colorErrorText:r.error.text,colorWarning:r.warning.main,colorWarningBg:r.warning.bg,colorWarningBorder:r.warning.border,colorWarningText:r.warning.text,colorInfo:r.info.main,colorInfoBg:r.info.bg,colorInfoBorder:r.info.border,colorInfoText:r.info.text,colorLink:r.utility.link,colorLinkHover:r.utility.linkHover,colorLinkActive:r.utility.linkActive,borderRadius:e.radius.base,borderRadiusLG:e.radius.lg,borderRadiusSM:e.radius.sm,borderRadiusXS:6,boxShadow:e.shadow.base,boxShadowSecondary:e.shadow.card,boxShadowTertiary:e.shadow.elevated,fontFamily:e.typography.fontFamily,fontSize:e.typography.fontSize.base,fontSizeHeading1:38,fontSizeHeading2:30,fontSizeHeading3:24,fontSizeHeading4:20,fontSizeHeading5:e.typography.fontSize.lg,fontWeightStrong:e.typography.fontWeight.medium,lineHeight:e.typography.lineHeight.base,lineHeightHeading1:1.21,lineHeightHeading2:1.27,lineHeightHeading3:1.33,lineHeightHeading4:1.4,lineHeightHeading5:1.5},components:{Button:{colorPrimary:r.components.button.primary.bg,colorPrimaryHover:r.components.button.primary.hover,colorPrimaryActive:r.action.active,colorPrimaryBorder:r.components.button.primary.bg,primaryColor:r.components.button.primary.text,colorBorder:r.components.button.default.border,colorBgContainer:r.components.button.default.bg,colorText:r.components.button.default.text,defaultBg:r.components.button.default.bg,defaultBorderColor:r.components.button.default.border,defaultColor:r.components.button.default.text,primaryShadow:"none",defaultShadow:"none",dangerShadow:"none",fontWeight:e.typography.fontWeight.medium,controlHeight:32,paddingContentHorizontal:e.spacing.lg,borderRadius:e.radius.button,borderRadiusLG:e.radius.button,borderRadiusSM:e.radius.sm+8},Input:{colorBgContainer:r.components.input.bg,colorBorder:r.components.input.border,hoverBorderColor:r.components.input.borderHover,activeBorderColor:r.components.input.borderFocus,colorPrimaryHover:r.components.input.borderFocus,colorTextPlaceholder:r.components.input.placeholder,borderRadius:e.radius.input,borderRadiusLG:e.radius.base,borderRadiusSM:e.radius.sm},Select:{colorBgContainer:r.components.input.bg,colorBorder:r.components.input.border,colorTextPlaceholder:r.components.input.placeholder,colorPrimaryHover:r.action.main,hoverBorderColor:r.components.input.borderHover,activeBorderColor:r.components.input.borderFocus,optionSelectedBg:r.action.main,optionSelectedColor:r.action.contrast,optionActiveBg:r.surface.hover,colorBgElevated:r.neutral.brightest,controlItemBgHover:r.surface.hover,boxShadowSecondary:e.shadow.elevated,borderRadius:e.radius.input,borderRadiusLG:e.radius.base,borderRadiusSM:e.radius.sm},Checkbox:{colorPrimary:r.action.main,colorPrimaryHover:r.action.hover,colorBorder:r.border.strong,borderRadiusSM:6},Radio:{colorPrimary:r.action.main,colorPrimaryHover:r.action.hover,colorBorder:r.border.strong},Switch:{colorPrimary:r.action.main,colorPrimaryHover:r.action.hover,colorTextQuaternary:r.text.quaternary},Form:{labelColor:r.text.primary,labelRequiredMarkColor:r.error.main,labelFontSize:e.typography.fontSize.base,itemMarginBottom:e.spacing.lg},DatePicker:{colorBgContainer:r.components.input.bg,colorBorder:r.components.input.border,hoverBorderColor:r.components.input.borderHover,activeBorderColor:r.components.input.borderFocus,colorPrimary:r.action.main,borderRadius:e.radius.input},InputNumber:{borderRadius:e.radius.input},Table:{colorBgContainer:r.components.table.bg,headerBg:r.components.table.headerBg,headerColor:r.components.table.headerText,borderColor:r.components.table.border,headerSplitColor:r.components.table.border,rowHoverBg:r.components.table.rowHover,rowSelectedBg:r.action.light,rowSelectedHoverBg:r.action.lighter,colorText:r.text.primary,colorTextHeading:r.text.primary,borderRadius:e.radius.base,borderRadiusLG:e.radius.lg},Card:{colorBgContainer:r.surface.main,colorBorder:r.border.main,colorBorderSecondary:r.border.light,boxShadowTertiary:e.shadow.card,borderRadius:e.radius.card,borderRadiusLG:e.radius.lg+4},Statistic:{contentFontSize:24,colorTextHeading:r.text.primary},Descriptions:{labelBg:r.surface.hover,colorTextSecondary:r.text.secondary,itemPaddingBottom:e.spacing.md},Badge:{colorError:r.error.main,colorSuccess:r.success.main,colorInfo:r.info.main,colorInfoBg:r.info.bg,borderRadiusSM:e.radius.input},Tag:{colorBorder:r.border.main,defaultBg:r.surface.hover,borderRadiusSM:e.radius.sm},Timeline:{dotBg:r.surface.main,tailColor:r.border.main},Alert:{colorSuccessBg:r.success.bg,colorSuccessBorder:r.success.border,colorErrorBg:r.error.bg,colorErrorBorder:r.error.border,colorWarningBg:r.warning.bg,colorWarningBorder:r.warning.border,colorInfoBg:r.info.bg,colorInfoBorder:r.info.border,borderRadiusLG:e.radius.base},Modal:{contentBg:r.surface.elevated,headerBg:r.surface.elevated,colorBgMask:"rgba(0, 0, 0, 0.45)",borderRadiusLG:e.radius.lg},Drawer:{colorBgElevated:r.surface.elevated,colorBgMask:"rgba(0, 0, 0, 0.45)",borderRadiusLG:e.radius.lg},Notification:{colorBgElevated:r.neutral.brightest,borderRadiusLG:e.radius.base},Message:{contentBg:r.neutral.brightest,borderRadiusLG:e.radius.base},Spin:{colorPrimary:r.primary.main},Progress:{colorSuccess:r.success.main,colorError:r.error.main,defaultColor:r.primary.main,borderRadius:100},Skeleton:{colorFill:r.neutral[2],colorFillContent:r.neutral[1],borderRadiusSM:e.radius.sm},Menu:{itemBg:"transparent",itemColor:r.text.primary,itemHoverBg:r.surface.hover,itemSelectedBg:r.action.lighter,itemSelectedColor:r.action.main,itemActiveBg:r.action.lighter,subMenuItemBg:"transparent",darkItemBg:r.components.sidebar.bg,darkSubMenuItemBg:r.components.sidebar.bg,darkItemColor:r.components.sidebar.text,darkItemHoverBg:r.components.sidebar.hover,darkItemSelectedBg:r.components.sidebar.selected,darkItemSelectedColor:r.primary.contrast,borderRadius:e.radius.input,borderRadiusLG:e.radius.base},Breadcrumb:{linkColor:r.utility.link,linkHoverColor:r.utility.linkHover,itemColor:r.text.secondary,lastItemColor:r.text.primary,separatorColor:r.text.tertiary,borderRadiusSM:6},Pagination:{colorPrimary:r.primary.main,colorPrimaryHover:r.primary.hover,itemActiveBg:r.primary.main,borderRadius:e.radius.sm},Steps:{colorPrimary:r.action.main,colorText:r.text.secondary,colorTextDescription:r.text.tertiary,borderRadiusSM:100},Tabs:{colorPrimary:r.action.main,colorBorderSecondary:r.border.main,itemColor:r.text.secondary,itemHoverColor:r.action.hover,itemSelectedColor:r.action.main,inkBarColor:r.action.main,borderRadiusSM:e.radius.sm},Layout:{colorBgBody:r.surface.background,colorBgHeader:r.neutral.brightest,colorBgTrigger:r.components.sidebar.bg,siderBg:r.components.sidebar.bg,headerBg:r.neutral.brightest,borderRadiusLG:0},Divider:{colorSplit:r.border.divider},Typography:{colorText:r.text.primary,colorTextSecondary:r.text.secondary,colorTextDescription:r.text.tertiary},Tooltip:{colorBgSpotlight:r.neutral.darkest,colorTextLightSolid:r.neutral.brightest,borderRadius:e.radius.sm},Popover:{colorBgElevated:r.neutral.brightest,borderRadiusLG:e.radius.base},Dropdown:{boxShadowSecondary:e.shadow.dropdown},Calendar:{colorBgContainer:r.neutral.brightest,colorPrimary:r.action.main,borderRadiusLG:e.radius.base}}};return t?Object.assign(Object.assign({},i),{token:Object.assign(Object.assign({},i.token),null!==(a=t.token)&&void 0!==a?a:{}),components:Object.assign(Object.assign({},i.components),null!==(n=t.components)&&void 0!==n?n:{})}):i})(c,b,0,l),[c,b,a,l]),m=e.useMemo(()=>({colors:c,constants:b,mode:a}),[c,b,a]);return r.jsx(u.Provider,{value:m,children:r.jsx(o,{theme:g,children:t})})},g=()=>e.useContext(u);export{b as L,c as a,d as b,s as c,l as d,g as u};
2
+ //# sourceMappingURL=theme-provider-BnND6lJb.js.map