@vef-framework/shared 1.0.127 → 1.0.129

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 (54) hide show
  1. package/cjs/color.cjs +1 -10
  2. package/cjs/constants.cjs +1 -38
  3. package/cjs/context.cjs +1 -35
  4. package/cjs/dom.cjs +1 -22
  5. package/cjs/error.cjs +1 -29
  6. package/cjs/event.cjs +1 -10
  7. package/cjs/expression.cjs +1 -26
  8. package/cjs/function.cjs +1 -15
  9. package/cjs/icons.cjs +1 -135
  10. package/cjs/id.cjs +1 -13
  11. package/cjs/index.cjs +1 -317
  12. package/cjs/json.cjs +1 -17
  13. package/cjs/message.cjs +1 -302
  14. package/cjs/module.cjs +2 -0
  15. package/cjs/path.cjs +1 -39
  16. package/cjs/pinyin.cjs +1 -32
  17. package/cjs/security.cjs +1 -26
  18. package/cjs/store.cjs +1 -103
  19. package/cjs/styles.cjs +1 -54
  20. package/cjs/temporal.cjs +1 -26
  21. package/cjs/theme-variables.cjs +1 -353
  22. package/cjs/types.cjs +0 -2
  23. package/cjs/utils.cjs +1 -322
  24. package/cjs/validation.cjs +1 -188
  25. package/cjs/yaml.cjs +1 -10
  26. package/cjs/zod.cjs +1 -26
  27. package/esm/color.js +1 -8
  28. package/esm/constants.js +1 -30
  29. package/esm/context.js +1 -33
  30. package/esm/dom.js +1 -20
  31. package/esm/error.js +1 -27
  32. package/esm/event.js +1 -8
  33. package/esm/expression.js +1 -22
  34. package/esm/function.js +1 -13
  35. package/esm/icons.js +1 -128
  36. package/esm/id.js +1 -11
  37. package/esm/index.js +1 -31
  38. package/esm/json.js +1 -15
  39. package/esm/message.js +1 -281
  40. package/esm/module.js +2 -0
  41. package/esm/path.js +1 -32
  42. package/esm/pinyin.js +1 -29
  43. package/esm/security.js +1 -23
  44. package/esm/store.js +1 -98
  45. package/esm/styles.js +1 -50
  46. package/esm/temporal.js +1 -22
  47. package/esm/theme-variables.js +1 -351
  48. package/esm/utils.js +1 -110
  49. package/esm/validation.js +1 -150
  50. package/esm/yaml.js +1 -8
  51. package/esm/zod.js +1 -21
  52. package/package.json +1 -1
  53. package/types/index.d.ts +1 -0
  54. package/types/module.d.ts +7 -0
package/esm/security.js CHANGED
@@ -1,24 +1,2 @@
1
1
  "use strict";
2
- import JSEncrypt from 'jsencrypt';
3
-
4
- "use strict";
5
- function encryptRsa(value, publicKey) {
6
- const rsa = new JSEncrypt();
7
- rsa.setPublicKey(publicKey);
8
- const encrypted = rsa.encrypt(value);
9
- if (!encrypted) {
10
- throw new Error(`Failed to encrypt value [${value}] using RSA`);
11
- }
12
- return encrypted;
13
- }
14
- function decryptRsa(value, privateKey) {
15
- const rsa = new JSEncrypt();
16
- rsa.setPrivateKey(privateKey);
17
- const decrypted = rsa.decrypt(value);
18
- if (!decrypted) {
19
- throw new Error(`Failed to decrypt value [${value}] using RSA`);
20
- }
21
- return decrypted;
22
- }
23
-
24
- export { decryptRsa, encryptRsa };
2
+ import c from"jsencrypt";function o(t,n){const e=new c;e.setPublicKey(n);const r=e.encrypt(t);if(!r)throw new Error(`Failed to encrypt value [${t}] using RSA`);return r}function i(t,n){const e=new c;e.setPrivateKey(n);const r=e.decrypt(t);if(!r)throw new Error(`Failed to decrypt value [${t}] using RSA`);return r}export{i as decryptRsa,o as encryptRsa};
package/esm/store.js CHANGED
@@ -1,99 +1,2 @@
1
1
  "use strict";
2
- import { createContext, useState, useRef, useEffect, createElement, useContext } from 'react';
3
- import { createJSONStorage, persist, subscribeWithSelector } from 'zustand/middleware';
4
- import { createWithEqualityFn, useStoreWithEqualityFn } from 'zustand/traditional';
5
- import { createStore as createStore$1 } from 'zustand/vanilla';
6
- import { constantCase } from './utils.js';
7
- import { isNullish } from 'radashi';
8
- import { shallow } from 'zustand/shallow';
9
-
10
- "use strict";
11
- function createStorageProxy(storage) {
12
- const delegate = createJSONStorage(() => storage === "local" ? localStorage : sessionStorage);
13
- return {
14
- getItem: delegate.getItem,
15
- setItem(name, value) {
16
- if (isNullish(value.state)) {
17
- return;
18
- }
19
- delegate.setItem(name, value);
20
- },
21
- removeItem: delegate.removeItem
22
- };
23
- }
24
- function createStore(stateCreator, persistenceOptions) {
25
- const name = persistenceOptions?.name ?? "UNKNOWN";
26
- const storage = persistenceOptions?.storage ?? "local";
27
- const selector = persistenceOptions ? persistenceOptions.selector : () => null;
28
- const storageInstance = createStorageProxy(storage);
29
- return createWithEqualityFn(
30
- persist(
31
- subscribeWithSelector(stateCreator),
32
- {
33
- name: `__VEF_STORE__${constantCase(name)}__`,
34
- storage: storageInstance,
35
- version: 1,
36
- partialize: selector
37
- }
38
- ),
39
- shallow
40
- );
41
- }
42
- function createUnboundStore(stateCreator) {
43
- return createStore$1(
44
- subscribeWithSelector(stateCreator)
45
- );
46
- }
47
- function useUnboundStore(store, selector, equalityFn) {
48
- return useStoreWithEqualityFn(
49
- store,
50
- selector,
51
- equalityFn ?? shallow
52
- );
53
- }
54
- function createComponentStore(name, getStateCreator) {
55
- const StoreContext = createContext(null);
56
- const StoreProvider = ({ initialState, children }) => {
57
- const [store] = useState(() => {
58
- const creator = getStateCreator(initialState);
59
- return createUnboundStore(creator);
60
- });
61
- const isMounted = useRef(false);
62
- useEffect(() => () => {
63
- isMounted.current = false;
64
- }, []);
65
- useEffect(() => {
66
- if (!isMounted.current) {
67
- isMounted.current = true;
68
- }
69
- if (initialState) {
70
- store.setState({
71
- ...initialState
72
- });
73
- }
74
- }, [initialState, store]);
75
- return createElement(
76
- StoreContext.Provider,
77
- { value: store },
78
- children
79
- );
80
- };
81
- const useStoreApi = () => {
82
- const store = useContext(StoreContext);
83
- if (!store) {
84
- throw new Error(`${name}Store can be used only inside ${name}StoreProvider`);
85
- }
86
- return store;
87
- };
88
- const useStore = (selector) => useUnboundStore(
89
- useStoreApi(),
90
- selector
91
- );
92
- return {
93
- StoreProvider,
94
- useStore,
95
- useStoreApi
96
- };
97
- }
98
-
99
- export { createComponentStore, createStore, createUnboundStore, useUnboundStore };
2
+ import{createContext as d,useState as v,useRef as g,createElement as h,useEffect as u,useContext as E}from"react";import{createJSONStorage as _,persist as I,subscribeWithSelector as c}from"zustand/middleware";import{createWithEqualityFn as b,useStoreWithEqualityFn as N}from"zustand/traditional";import{createStore as C}from"zustand/vanilla";import{constantCase as W}from"./utils.js";import{isNullish as $}from"radashi";import{shallow as m}from"zustand/shallow";function w(r){const e=_(()=>r==="local"?localStorage:sessionStorage);return{getItem:e.getItem,setItem(o,n){$(n.state)||e.setItem(o,n)},removeItem:e.removeItem}}function x(r,e){const o=e?.name??"UNKNOWN",n=e?.storage??"local",s=e?e.selector:()=>null,t=w(n);return b(I(c(r),{name:`__VEF_STORE__${W(o)}__`,storage:t,version:1,partialize:s}),m)}function l(r){return C(c(r))}function S(r,e,o){return N(r,e,o??m)}function y(r,e){const o=d(null),n=({initialState:t,children:f})=>{const[i]=v(()=>{const p=e(t);return l(p)}),a=g(!1);return u(()=>()=>{a.current=!1},[]),u(()=>{a.current||(a.current=!0),t&&i.setState({...t})},[t,i]),h(o.Provider,{value:i},f)},s=()=>{const t=E(o);if(!t)throw new Error(`${r}Store can be used only inside ${r}StoreProvider`);return t};return{StoreProvider:n,useStore:t=>S(s(),t),useStoreApi:s}}export{y as createComponentStore,x as createStore,l as createUnboundStore,S as useUnboundStore};
package/esm/styles.js CHANGED
@@ -1,51 +1,2 @@
1
1
  "use strict";
2
- import { css } from '@emotion/react';
3
-
4
- "use strict";
5
- const breakpointWidths = {
6
- xs: 0,
7
- sm: 576,
8
- md: 768,
9
- lg: 992,
10
- xl: 1200,
11
- xxl: 1400
12
- };
13
- const breakpoints = [
14
- "xs",
15
- "sm",
16
- "md",
17
- "lg",
18
- "xl",
19
- "xxl"
20
- ];
21
- const bmq = Object.keys(breakpointWidths).reduce(
22
- (acc, label) => {
23
- acc[label] = `@media (min-width: ${breakpointWidths[label]}px)`;
24
- return acc;
25
- },
26
- {}
27
- );
28
- const styles = {
29
- // Flex center style
30
- flexCenter: css({
31
- display: "flex",
32
- justifyContent: "center",
33
- alignItems: "center"
34
- }),
35
- // Full height style
36
- fullHeight: css({
37
- height: "100%"
38
- }),
39
- // Full width style
40
- fullWidth: css({
41
- width: "100%"
42
- }),
43
- // Scrollbar style
44
- scrollbar: css({
45
- scrollbarWidth: "thin",
46
- scrollbarColor: "rgba(0, 0, 0, 0.3) transparent",
47
- scrollbarGutter: "stable"
48
- })
49
- };
50
-
51
- export { bmq, breakpoints, styles };
2
+ import{css as t}from"@emotion/react";const e={xs:0,sm:576,md:768,lg:992,xl:1200,xxl:1400},r=["xs","sm","md","lg","xl","xxl"],i=Object.keys(e).reduce((l,s)=>(l[s]=`@media (min-width: ${e[s]}px)`,l),{}),n={flexCenter:t({display:"flex",justifyContent:"center",alignItems:"center"}),fullHeight:t({height:"100%"}),fullWidth:t({width:"100%"}),scrollbar:t({scrollbarWidth:"thin",scrollbarColor:"rgba(0, 0, 0, 0.3) transparent",scrollbarGutter:"stable"})};export{i as bmq,r as breakpoints,n as styles};
package/esm/temporal.js CHANGED
@@ -1,23 +1,2 @@
1
1
  "use strict";
2
- import { tz } from '@date-fns/tz';
3
- import { format } from 'date-fns';
4
- import { zhCN } from 'date-fns/locale';
5
-
6
- "use strict";
7
- function getNowDate() {
8
- return /* @__PURE__ */ new Date();
9
- }
10
- function getNowDateString() {
11
- return format(getNowDate(), "yyyy-MM-dd", {
12
- locale: zhCN,
13
- in: tz("Asia/Shanghai")
14
- });
15
- }
16
- function getTodayString() {
17
- return format(getNowDate(), "PPPPpp", {
18
- locale: zhCN,
19
- in: tz("Asia/Shanghai")
20
- });
21
- }
22
-
23
- export { getNowDate, getNowDateString, getTodayString };
2
+ import{tz as r}from"@date-fns/tz";import{format as n}from"date-fns";import{zhCN as o}from"date-fns/locale";function t(){return new Date}function i(){return n(t(),"yyyy-MM-dd",{locale:o,in:r("Asia/Shanghai")})}function e(){return n(t(),"PPPPpp",{locale:o,in:r("Asia/Shanghai")})}export{t as getNowDate,i as getNowDateString,e as getTodayString};
@@ -1,352 +1,2 @@
1
1
  "use strict";
2
- "use strict";
3
- const themeVariables = {
4
- colorChart1: "hsl(221.2 83.2% 53.3%)",
5
- colorChart2: "hsl(216 92% 60%)",
6
- colorChart3: "hsl(212 95% 68%)",
7
- colorChart4: "hsl(210 98% 78%)",
8
- colorChart5: "hsl(212 97% 87%)",
9
- blue: "var(--vef-blue)",
10
- purple: "var(--vef-purple)",
11
- cyan: "var(--vef-cyan)",
12
- green: "var(--vef-green)",
13
- magenta: "var(--vef-magenta)",
14
- pink: "var(--vef-pink)",
15
- red: "var(--vef-red)",
16
- orange: "var(--vef-orange)",
17
- yellow: "var(--vef-yellow)",
18
- volcano: "var(--vef-volcano)",
19
- geekblue: "var(--vef-geekblue)",
20
- gold: "var(--vef-gold)",
21
- lime: "var(--vef-lime)",
22
- colorPrimary: "var(--vef-color-primary)",
23
- colorSuccess: "var(--vef-color-success)",
24
- colorWarning: "var(--vef-color-warning)",
25
- colorError: "var(--vef-color-error)",
26
- colorInfo: "var(--vef-color-info)",
27
- colorLink: "var(--vef-color-link)",
28
- colorTextBase: "var(--vef-color-text-base)",
29
- colorBgBase: "var(--vef-color-bg-base)",
30
- fontFamily: "var(--vef-font-family)",
31
- fontFamilyCode: "var(--vef-font-family-code)",
32
- fontSize: "var(--vef-font-size)",
33
- lineWidth: "var(--vef-line-width)",
34
- lineType: "var(--vef-line-type)",
35
- motionEaseOutCirc: "var(--vef-motion-ease-out-circ)",
36
- motionEaseInOutCirc: "var(--vef-motion-ease-in-out-circ)",
37
- motionEaseOut: "var(--vef-motion-ease-out)",
38
- motionEaseInOut: "var(--vef-motion-ease-in-out)",
39
- motionEaseOutBack: "var(--vef-motion-ease-out-back)",
40
- motionEaseInBack: "var(--vef-motion-ease-in-back)",
41
- motionEaseInQuint: "var(--vef-motion-ease-in-quint)",
42
- motionEaseOutQuint: "var(--vef-motion-ease-out-quint)",
43
- borderRadius: "var(--vef-border-radius)",
44
- sizePopupArrow: "var(--vef-size-popup-arrow)",
45
- controlHeight: "var(--vef-control-height)",
46
- zIndexBase: "var(--vef-z-index-base)",
47
- zIndexPopupBase: "var(--vef-z-index-popup-base)",
48
- opacityImage: "var(--vef-opacity-image)",
49
- colorBgLayout: "var(--vef-color-bg-layout)",
50
- colorBgSpotlight: "var(--vef-color-bg-spotlight)",
51
- blue1: "var(--vef-blue-1)",
52
- blue2: "var(--vef-blue-2)",
53
- blue3: "var(--vef-blue-3)",
54
- blue4: "var(--vef-blue-4)",
55
- blue5: "var(--vef-blue-5)",
56
- blue6: "var(--vef-blue-6)",
57
- blue7: "var(--vef-blue-7)",
58
- blue8: "var(--vef-blue-8)",
59
- blue9: "var(--vef-blue-9)",
60
- blue10: "var(--vef-blue-10)",
61
- purple1: "var(--vef-purple-1)",
62
- purple2: "var(--vef-purple-2)",
63
- purple3: "var(--vef-purple-3)",
64
- purple4: "var(--vef-purple-4)",
65
- purple5: "var(--vef-purple-5)",
66
- purple6: "var(--vef-purple-6)",
67
- purple7: "var(--vef-purple-7)",
68
- purple8: "var(--vef-purple-8)",
69
- purple9: "var(--vef-purple-9)",
70
- purple10: "var(--vef-purple-10)",
71
- cyan1: "var(--vef-cyan-1)",
72
- cyan2: "var(--vef-cyan-2)",
73
- cyan3: "var(--vef-cyan-3)",
74
- cyan4: "var(--vef-cyan-4)",
75
- cyan5: "var(--vef-cyan-5)",
76
- cyan6: "var(--vef-cyan-6)",
77
- cyan7: "var(--vef-cyan-7)",
78
- cyan8: "var(--vef-cyan-8)",
79
- cyan9: "var(--vef-cyan-9)",
80
- cyan10: "var(--vef-cyan-10)",
81
- green1: "var(--vef-green-1)",
82
- green2: "var(--vef-green-2)",
83
- green3: "var(--vef-green-3)",
84
- green4: "var(--vef-green-4)",
85
- green5: "var(--vef-green-5)",
86
- green6: "var(--vef-green-6)",
87
- green7: "var(--vef-green-7)",
88
- green8: "var(--vef-green-8)",
89
- green9: "var(--vef-green-9)",
90
- green10: "var(--vef-green-10)",
91
- magenta1: "var(--vef-magenta-1)",
92
- magenta2: "var(--vef-magenta-2)",
93
- magenta3: "var(--vef-magenta-3)",
94
- magenta4: "var(--vef-magenta-4)",
95
- magenta5: "var(--vef-magenta-5)",
96
- magenta6: "var(--vef-magenta-6)",
97
- magenta7: "var(--vef-magenta-7)",
98
- magenta8: "var(--vef-magenta-8)",
99
- magenta9: "var(--vef-magenta-9)",
100
- magenta10: "var(--vef-magenta-10)",
101
- pink1: "var(--vef-pink-1)",
102
- pink2: "var(--vef-pink-2)",
103
- pink3: "var(--vef-pink-3)",
104
- pink4: "var(--vef-pink-4)",
105
- pink5: "var(--vef-pink-5)",
106
- pink6: "var(--vef-pink-6)",
107
- pink7: "var(--vef-pink-7)",
108
- pink8: "var(--vef-pink-8)",
109
- pink9: "var(--vef-pink-9)",
110
- pink10: "var(--vef-pink-10)",
111
- red1: "var(--vef-red-1)",
112
- red2: "var(--vef-red-2)",
113
- red3: "var(--vef-red-3)",
114
- red4: "var(--vef-red-4)",
115
- red5: "var(--vef-red-5)",
116
- red6: "var(--vef-red-6)",
117
- red7: "var(--vef-red-7)",
118
- red8: "var(--vef-red-8)",
119
- red9: "var(--vef-red-9)",
120
- red10: "var(--vef-red-10)",
121
- orange1: "var(--vef-orange-1)",
122
- orange2: "var(--vef-orange-2)",
123
- orange3: "var(--vef-orange-3)",
124
- orange4: "var(--vef-orange-4)",
125
- orange5: "var(--vef-orange-5)",
126
- orange6: "var(--vef-orange-6)",
127
- orange7: "var(--vef-orange-7)",
128
- orange8: "var(--vef-orange-8)",
129
- orange9: "var(--vef-orange-9)",
130
- orange10: "var(--vef-orange-10)",
131
- yellow1: "var(--vef-yellow-1)",
132
- yellow2: "var(--vef-yellow-2)",
133
- yellow3: "var(--vef-yellow-3)",
134
- yellow4: "var(--vef-yellow-4)",
135
- yellow5: "var(--vef-yellow-5)",
136
- yellow6: "var(--vef-yellow-6)",
137
- yellow7: "var(--vef-yellow-7)",
138
- yellow8: "var(--vef-yellow-8)",
139
- yellow9: "var(--vef-yellow-9)",
140
- yellow10: "var(--vef-yellow-10)",
141
- volcano1: "var(--vef-volcano-1)",
142
- volcano2: "var(--vef-volcano-2)",
143
- volcano3: "var(--vef-volcano-3)",
144
- volcano4: "var(--vef-volcano-4)",
145
- volcano5: "var(--vef-volcano-5)",
146
- volcano6: "var(--vef-volcano-6)",
147
- volcano7: "var(--vef-volcano-7)",
148
- volcano8: "var(--vef-volcano-8)",
149
- volcano9: "var(--vef-volcano-9)",
150
- volcano10: "var(--vef-volcano-10)",
151
- geekblue1: "var(--vef-geekblue-1)",
152
- geekblue2: "var(--vef-geekblue-2)",
153
- geekblue3: "var(--vef-geekblue-3)",
154
- geekblue4: "var(--vef-geekblue-4)",
155
- geekblue5: "var(--vef-geekblue-5)",
156
- geekblue6: "var(--vef-geekblue-6)",
157
- geekblue7: "var(--vef-geekblue-7)",
158
- geekblue8: "var(--vef-geekblue-8)",
159
- geekblue9: "var(--vef-geekblue-9)",
160
- geekblue10: "var(--vef-geekblue-10)",
161
- gold1: "var(--vef-gold-1)",
162
- gold2: "var(--vef-gold-2)",
163
- gold3: "var(--vef-gold-3)",
164
- gold4: "var(--vef-gold-4)",
165
- gold5: "var(--vef-gold-5)",
166
- gold6: "var(--vef-gold-6)",
167
- gold7: "var(--vef-gold-7)",
168
- gold8: "var(--vef-gold-8)",
169
- gold9: "var(--vef-gold-9)",
170
- gold10: "var(--vef-gold-10)",
171
- lime1: "var(--vef-lime-1)",
172
- lime2: "var(--vef-lime-2)",
173
- lime3: "var(--vef-lime-3)",
174
- lime4: "var(--vef-lime-4)",
175
- lime5: "var(--vef-lime-5)",
176
- lime6: "var(--vef-lime-6)",
177
- lime7: "var(--vef-lime-7)",
178
- lime8: "var(--vef-lime-8)",
179
- lime9: "var(--vef-lime-9)",
180
- lime10: "var(--vef-lime-10)",
181
- colorText: "var(--vef-color-text)",
182
- colorTextSecondary: "var(--vef-color-text-secondary)",
183
- colorTextTertiary: "var(--vef-color-text-tertiary)",
184
- colorTextQuaternary: "var(--vef-color-text-quaternary)",
185
- colorTextSlate: "#64748b",
186
- colorFill: "var(--vef-color-fill)",
187
- colorFillSecondary: "var(--vef-color-fill-secondary)",
188
- colorFillTertiary: "var(--vef-color-fill-tertiary)",
189
- colorFillQuaternary: "var(--vef-color-fill-quaternary)",
190
- colorBgSolid: "var(--vef-color-bg-solid)",
191
- colorBgSolidHover: "var(--vef-color-bg-solid-hover)",
192
- colorBgSolidActive: "var(--vef-color-bg-solid-active)",
193
- colorBgContainer: "var(--vef-color-bg-container)",
194
- colorBgElevated: "var(--vef-color-bg-elevated)",
195
- colorBgBlur: "var(--vef-color-bg-blur)",
196
- colorBorder: "var(--vef-color-border)",
197
- colorBorderSecondary: "var(--vef-color-border-secondary)",
198
- colorPrimaryBg: "var(--vef-color-primary-bg)",
199
- colorPrimaryBgHover: "var(--vef-color-primary-bg-hover)",
200
- colorPrimaryBorder: "var(--vef-color-primary-border)",
201
- colorPrimaryBorderHover: "var(--vef-color-primary-border-hover)",
202
- colorPrimaryHover: "var(--vef-color-primary-hover)",
203
- colorPrimaryActive: "var(--vef-color-primary-active)",
204
- colorPrimaryTextHover: "var(--vef-color-primary-text-hover)",
205
- colorPrimaryText: "var(--vef-color-primary-text)",
206
- colorPrimaryTextActive: "var(--vef-color-primary-text-active)",
207
- colorSuccessBg: "var(--vef-color-success-bg)",
208
- colorSuccessBgHover: "var(--vef-color-success-bg-hover)",
209
- colorSuccessBorder: "var(--vef-color-success-border)",
210
- colorSuccessBorderHover: "var(--vef-color-success-border-hover)",
211
- colorSuccessHover: "var(--vef-color-success-hover)",
212
- colorSuccessActive: "var(--vef-color-success-active)",
213
- colorSuccessTextHover: "var(--vef-color-success-text-hover)",
214
- colorSuccessText: "var(--vef-color-success-text)",
215
- colorSuccessTextActive: "var(--vef-color-success-text-active)",
216
- colorErrorBg: "var(--vef-color-error-bg)",
217
- colorErrorBgHover: "var(--vef-color-error-bg-hover)",
218
- colorErrorBgFilledHover: "var(--vef-color-error-bg-filled-hover)",
219
- colorErrorBgActive: "var(--vef-color-error-bg-active)",
220
- colorErrorBorder: "var(--vef-color-error-border)",
221
- colorErrorBorderHover: "var(--vef-color-error-border-hover)",
222
- colorErrorHover: "var(--vef-color-error-hover)",
223
- colorErrorActive: "var(--vef-color-error-active)",
224
- colorErrorTextHover: "var(--vef-color-error-text-hover)",
225
- colorErrorText: "var(--vef-color-error-text)",
226
- colorErrorTextActive: "var(--vef-color-error-text-active)",
227
- colorWarningBg: "var(--vef-color-warning-bg)",
228
- colorWarningBgHover: "var(--vef-color-warning-bg-hover)",
229
- colorWarningBorder: "var(--vef-color-warning-border)",
230
- colorWarningBorderHover: "var(--vef-color-warning-border-hover)",
231
- colorWarningHover: "var(--vef-color-warning-hover)",
232
- colorWarningActive: "var(--vef-color-warning-active)",
233
- colorWarningTextHover: "var(--vef-color-warning-text-hover)",
234
- colorWarningText: "var(--vef-color-warning-text)",
235
- colorWarningTextActive: "var(--vef-color-warning-text-active)",
236
- colorInfoBg: "var(--vef-color-info-bg)",
237
- colorInfoBgHover: "var(--vef-color-info-bg-hover)",
238
- colorInfoBorder: "var(--vef-color-info-border)",
239
- colorInfoBorderHover: "var(--vef-color-info-border-hover)",
240
- colorInfoHover: "var(--vef-color-info-hover)",
241
- colorInfoActive: "var(--vef-color-info-active)",
242
- colorInfoTextHover: "var(--vef-color-info-text-hover)",
243
- colorInfoText: "var(--vef-color-info-text)",
244
- colorInfoTextActive: "var(--vef-color-info-text-active)",
245
- colorLinkHover: "var(--vef-color-link-hover)",
246
- colorLinkActive: "var(--vef-color-link-active)",
247
- colorBgMask: "var(--vef-color-bg-mask)",
248
- colorWhite: "var(--vef-color-white)",
249
- fontSizeSm: "var(--vef-font-size-sm)",
250
- fontSizeLg: "var(--vef-font-size-lg)",
251
- fontSizeXl: "var(--vef-font-size-xl)",
252
- fontSizeHeading1: "var(--vef-font-size-heading-1)",
253
- fontSizeHeading2: "var(--vef-font-size-heading-2)",
254
- fontSizeHeading3: "var(--vef-font-size-heading-3)",
255
- fontSizeHeading4: "var(--vef-font-size-heading-4)",
256
- fontSizeHeading5: "var(--vef-font-size-heading-5)",
257
- lineHeight: "var(--vef-line-height)",
258
- lineHeightLg: "var(--vef-line-height-lg)",
259
- lineHeightSm: "var(--vef-line-height-sm)",
260
- fontHeight: "var(--vef-font-height)",
261
- fontHeightLg: "var(--vef-font-height-lg)",
262
- fontHeightSm: "var(--vef-font-height-sm)",
263
- lineHeightHeading1: "var(--vef-line-height-heading-1)",
264
- lineHeightHeading2: "var(--vef-line-height-heading-2)",
265
- lineHeightHeading3: "var(--vef-line-height-heading-3)",
266
- lineHeightHeading4: "var(--vef-line-height-heading-4)",
267
- lineHeightHeading5: "var(--vef-line-height-heading-5)",
268
- controlHeightSm: "var(--vef-control-height-sm)",
269
- controlHeightXs: "var(--vef-control-height-xs)",
270
- controlHeightLg: "var(--vef-control-height-lg)",
271
- motionDurationFast: "var(--vef-motion-duration-fast)",
272
- motionDurationMid: "var(--vef-motion-duration-mid)",
273
- motionDurationSlow: "var(--vef-motion-duration-slow)",
274
- lineWidthBold: "var(--vef-line-width-bold)",
275
- borderRadiusXs: "var(--vef-border-radius-xs)",
276
- borderRadiusSm: "var(--vef-border-radius-sm)",
277
- borderRadiusLg: "var(--vef-border-radius-lg)",
278
- borderRadiusOuter: "var(--vef-border-radius-outer)",
279
- colorFillContent: "var(--vef-color-fill-content)",
280
- colorFillContentHover: "var(--vef-color-fill-content-hover)",
281
- colorFillAlt: "var(--vef-color-fill-alter)",
282
- colorBgContainerDisabled: "var(--vef-color-bg-container-disabled)",
283
- colorBorderBg: "var(--vef-color-border-bg)",
284
- colorSplit: "var(--vef-color-split)",
285
- colorTextPlaceholder: "var(--vef-color-text-placeholder)",
286
- colorTextDisabled: "var(--vef-color-text-disabled)",
287
- colorTextHeading: "var(--vef-color-text-heading)",
288
- colorTextLabel: "var(--vef-color-text-label)",
289
- colorTextDescription: "var(--vef-color-text-description)",
290
- colorTextLightSolid: "var(--vef-color-text-light-solid)",
291
- colorHighlight: "var(--vef-color-highlight)",
292
- colorBgTextHover: "var(--vef-color-bg-text-hover)",
293
- colorBgTextActive: "var(--vef-color-bg-text-active)",
294
- colorIcon: "var(--vef-color-icon)",
295
- colorIconHover: "var(--vef-color-icon-hover)",
296
- colorErrorOutline: "var(--vef-color-error-outline)",
297
- colorWarningOutline: "var(--vef-color-warning-outline)",
298
- fontSizeIcon: "var(--vef-font-size-icon)",
299
- lineWidthFocus: "var(--vef-line-width-focus)",
300
- controlOutlineWidth: "var(--vef-control-outline-width)",
301
- controlInteractiveSize: "var(--vef-control-interactive-size)",
302
- controlItemBgHover: "var(--vef-control-item-bg-hover)",
303
- controlItemBgActive: "var(--vef-control-item-bg-active)",
304
- controlItemBgActiveHover: "var(--vef-control-item-bg-active-hover)",
305
- controlItemBgActiveDisabled: "var(--vef-control-item-bg-active-disabled)",
306
- controlTmpOutline: "var(--vef-control-tmp-outline)",
307
- controlOutline: "var(--vef-control-outline)",
308
- fontWeightStrong: "var(--vef-font-weight-strong)",
309
- opacityLoading: "var(--vef-opacity-loading)",
310
- linkDecoration: "var(--vef-link-decoration)",
311
- linkHoverDecoration: "var(--vef-link-hover-decoration)",
312
- linkFocusDecoration: "var(--vef-link-focus-decoration)",
313
- controlPaddingHorizontal: "var(--vef-control-padding-horizontal)",
314
- controlPaddingHorizontalSm: "var(--vef-control-padding-horizontal-sm)",
315
- paddingXxs: "var(--vef-padding-xxs)",
316
- paddingXs: "var(--vef-padding-xs)",
317
- paddingSm: "var(--vef-padding-sm)",
318
- padding: "var(--vef-padding)",
319
- paddingMd: "var(--vef-padding-md)",
320
- paddingLg: "var(--vef-padding-lg)",
321
- paddingXl: "var(--vef-padding-xl)",
322
- paddingContentHorizontalLg: "var(--vef-padding-content-horizontal-lg)",
323
- paddingContentVerticalLg: "var(--vef-padding-content-vertical-lg)",
324
- paddingContentHorizontal: "var(--vef-padding-content-horizontal)",
325
- paddingContentVertical: "var(--vef-padding-content-vertical)",
326
- paddingContentHorizontalSm: "var(--vef-padding-content-horizontal-sm)",
327
- paddingContentVerticalSm: "var(--vef-padding-content-vertical-sm)",
328
- marginXxs: "var(--vef-margin-xxs)",
329
- marginXs: "var(--vef-margin-xs)",
330
- marginSm: "var(--vef-margin-sm)",
331
- margin: "var(--vef-margin)",
332
- marginMd: "var(--vef-margin-md)",
333
- marginLg: "var(--vef-margin-lg)",
334
- marginXl: "var(--vef-margin-xl)",
335
- marginXxl: "var(--vef-margin-xxl)",
336
- boxShadow: "var(--vef-box-shadow)",
337
- boxShadowSecondary: "var(--vef-box-shadow-secondary)",
338
- boxShadowTertiary: "var(--vef-box-shadow-tertiary)",
339
- boxShadowPopoverArrow: "var(--vef-box-shadow-popover-arrow)",
340
- boxShadowCard: "var(--vef-box-shadow-card)",
341
- boxShadowDrawerRight: "var(--vef-box-shadow-drawer-right)",
342
- boxShadowDrawerLeft: "var(--vef-box-shadow-drawer-left)",
343
- boxShadowDrawerUp: "var(--vef-box-shadow-drawer-up)",
344
- boxShadowDrawerDown: "var(--vef-box-shadow-drawer-down)",
345
- boxShadowTabsOverflowLeft: "var(--vef-box-shadow-tabs-overflow-left)",
346
- boxShadowTabsOverflowRight: "var(--vef-box-shadow-tabs-overflow-right)",
347
- boxShadowTabsOverflowTop: "var(--vef-box-shadow-tabs-overflow-top)",
348
- boxShadowTabsOverflowBottom: "var(--vef-box-shadow-tabs-overflow-bottom)",
349
- boxShadowElevated: "0 0 1px rgb(0 0 0 / 30%), 0 4px 14px rgb(0 0 0 / 10%)"
350
- };
351
-
352
- export { themeVariables };
2
+ const e={colorChart1:"hsl(221.2 83.2% 53.3%)",colorChart2:"hsl(216 92% 60%)",colorChart3:"hsl(212 95% 68%)",colorChart4:"hsl(210 98% 78%)",colorChart5:"hsl(212 97% 87%)",blue:"var(--vef-blue)",purple:"var(--vef-purple)",cyan:"var(--vef-cyan)",green:"var(--vef-green)",magenta:"var(--vef-magenta)",pink:"var(--vef-pink)",red:"var(--vef-red)",orange:"var(--vef-orange)",yellow:"var(--vef-yellow)",volcano:"var(--vef-volcano)",geekblue:"var(--vef-geekblue)",gold:"var(--vef-gold)",lime:"var(--vef-lime)",colorPrimary:"var(--vef-color-primary)",colorSuccess:"var(--vef-color-success)",colorWarning:"var(--vef-color-warning)",colorError:"var(--vef-color-error)",colorInfo:"var(--vef-color-info)",colorLink:"var(--vef-color-link)",colorTextBase:"var(--vef-color-text-base)",colorBgBase:"var(--vef-color-bg-base)",fontFamily:"var(--vef-font-family)",fontFamilyCode:"var(--vef-font-family-code)",fontSize:"var(--vef-font-size)",lineWidth:"var(--vef-line-width)",lineType:"var(--vef-line-type)",motionEaseOutCirc:"var(--vef-motion-ease-out-circ)",motionEaseInOutCirc:"var(--vef-motion-ease-in-out-circ)",motionEaseOut:"var(--vef-motion-ease-out)",motionEaseInOut:"var(--vef-motion-ease-in-out)",motionEaseOutBack:"var(--vef-motion-ease-out-back)",motionEaseInBack:"var(--vef-motion-ease-in-back)",motionEaseInQuint:"var(--vef-motion-ease-in-quint)",motionEaseOutQuint:"var(--vef-motion-ease-out-quint)",borderRadius:"var(--vef-border-radius)",sizePopupArrow:"var(--vef-size-popup-arrow)",controlHeight:"var(--vef-control-height)",zIndexBase:"var(--vef-z-index-base)",zIndexPopupBase:"var(--vef-z-index-popup-base)",opacityImage:"var(--vef-opacity-image)",colorBgLayout:"var(--vef-color-bg-layout)",colorBgSpotlight:"var(--vef-color-bg-spotlight)",blue1:"var(--vef-blue-1)",blue2:"var(--vef-blue-2)",blue3:"var(--vef-blue-3)",blue4:"var(--vef-blue-4)",blue5:"var(--vef-blue-5)",blue6:"var(--vef-blue-6)",blue7:"var(--vef-blue-7)",blue8:"var(--vef-blue-8)",blue9:"var(--vef-blue-9)",blue10:"var(--vef-blue-10)",purple1:"var(--vef-purple-1)",purple2:"var(--vef-purple-2)",purple3:"var(--vef-purple-3)",purple4:"var(--vef-purple-4)",purple5:"var(--vef-purple-5)",purple6:"var(--vef-purple-6)",purple7:"var(--vef-purple-7)",purple8:"var(--vef-purple-8)",purple9:"var(--vef-purple-9)",purple10:"var(--vef-purple-10)",cyan1:"var(--vef-cyan-1)",cyan2:"var(--vef-cyan-2)",cyan3:"var(--vef-cyan-3)",cyan4:"var(--vef-cyan-4)",cyan5:"var(--vef-cyan-5)",cyan6:"var(--vef-cyan-6)",cyan7:"var(--vef-cyan-7)",cyan8:"var(--vef-cyan-8)",cyan9:"var(--vef-cyan-9)",cyan10:"var(--vef-cyan-10)",green1:"var(--vef-green-1)",green2:"var(--vef-green-2)",green3:"var(--vef-green-3)",green4:"var(--vef-green-4)",green5:"var(--vef-green-5)",green6:"var(--vef-green-6)",green7:"var(--vef-green-7)",green8:"var(--vef-green-8)",green9:"var(--vef-green-9)",green10:"var(--vef-green-10)",magenta1:"var(--vef-magenta-1)",magenta2:"var(--vef-magenta-2)",magenta3:"var(--vef-magenta-3)",magenta4:"var(--vef-magenta-4)",magenta5:"var(--vef-magenta-5)",magenta6:"var(--vef-magenta-6)",magenta7:"var(--vef-magenta-7)",magenta8:"var(--vef-magenta-8)",magenta9:"var(--vef-magenta-9)",magenta10:"var(--vef-magenta-10)",pink1:"var(--vef-pink-1)",pink2:"var(--vef-pink-2)",pink3:"var(--vef-pink-3)",pink4:"var(--vef-pink-4)",pink5:"var(--vef-pink-5)",pink6:"var(--vef-pink-6)",pink7:"var(--vef-pink-7)",pink8:"var(--vef-pink-8)",pink9:"var(--vef-pink-9)",pink10:"var(--vef-pink-10)",red1:"var(--vef-red-1)",red2:"var(--vef-red-2)",red3:"var(--vef-red-3)",red4:"var(--vef-red-4)",red5:"var(--vef-red-5)",red6:"var(--vef-red-6)",red7:"var(--vef-red-7)",red8:"var(--vef-red-8)",red9:"var(--vef-red-9)",red10:"var(--vef-red-10)",orange1:"var(--vef-orange-1)",orange2:"var(--vef-orange-2)",orange3:"var(--vef-orange-3)",orange4:"var(--vef-orange-4)",orange5:"var(--vef-orange-5)",orange6:"var(--vef-orange-6)",orange7:"var(--vef-orange-7)",orange8:"var(--vef-orange-8)",orange9:"var(--vef-orange-9)",orange10:"var(--vef-orange-10)",yellow1:"var(--vef-yellow-1)",yellow2:"var(--vef-yellow-2)",yellow3:"var(--vef-yellow-3)",yellow4:"var(--vef-yellow-4)",yellow5:"var(--vef-yellow-5)",yellow6:"var(--vef-yellow-6)",yellow7:"var(--vef-yellow-7)",yellow8:"var(--vef-yellow-8)",yellow9:"var(--vef-yellow-9)",yellow10:"var(--vef-yellow-10)",volcano1:"var(--vef-volcano-1)",volcano2:"var(--vef-volcano-2)",volcano3:"var(--vef-volcano-3)",volcano4:"var(--vef-volcano-4)",volcano5:"var(--vef-volcano-5)",volcano6:"var(--vef-volcano-6)",volcano7:"var(--vef-volcano-7)",volcano8:"var(--vef-volcano-8)",volcano9:"var(--vef-volcano-9)",volcano10:"var(--vef-volcano-10)",geekblue1:"var(--vef-geekblue-1)",geekblue2:"var(--vef-geekblue-2)",geekblue3:"var(--vef-geekblue-3)",geekblue4:"var(--vef-geekblue-4)",geekblue5:"var(--vef-geekblue-5)",geekblue6:"var(--vef-geekblue-6)",geekblue7:"var(--vef-geekblue-7)",geekblue8:"var(--vef-geekblue-8)",geekblue9:"var(--vef-geekblue-9)",geekblue10:"var(--vef-geekblue-10)",gold1:"var(--vef-gold-1)",gold2:"var(--vef-gold-2)",gold3:"var(--vef-gold-3)",gold4:"var(--vef-gold-4)",gold5:"var(--vef-gold-5)",gold6:"var(--vef-gold-6)",gold7:"var(--vef-gold-7)",gold8:"var(--vef-gold-8)",gold9:"var(--vef-gold-9)",gold10:"var(--vef-gold-10)",lime1:"var(--vef-lime-1)",lime2:"var(--vef-lime-2)",lime3:"var(--vef-lime-3)",lime4:"var(--vef-lime-4)",lime5:"var(--vef-lime-5)",lime6:"var(--vef-lime-6)",lime7:"var(--vef-lime-7)",lime8:"var(--vef-lime-8)",lime9:"var(--vef-lime-9)",lime10:"var(--vef-lime-10)",colorText:"var(--vef-color-text)",colorTextSecondary:"var(--vef-color-text-secondary)",colorTextTertiary:"var(--vef-color-text-tertiary)",colorTextQuaternary:"var(--vef-color-text-quaternary)",colorTextSlate:"#64748b",colorFill:"var(--vef-color-fill)",colorFillSecondary:"var(--vef-color-fill-secondary)",colorFillTertiary:"var(--vef-color-fill-tertiary)",colorFillQuaternary:"var(--vef-color-fill-quaternary)",colorBgSolid:"var(--vef-color-bg-solid)",colorBgSolidHover:"var(--vef-color-bg-solid-hover)",colorBgSolidActive:"var(--vef-color-bg-solid-active)",colorBgContainer:"var(--vef-color-bg-container)",colorBgElevated:"var(--vef-color-bg-elevated)",colorBgBlur:"var(--vef-color-bg-blur)",colorBorder:"var(--vef-color-border)",colorBorderSecondary:"var(--vef-color-border-secondary)",colorPrimaryBg:"var(--vef-color-primary-bg)",colorPrimaryBgHover:"var(--vef-color-primary-bg-hover)",colorPrimaryBorder:"var(--vef-color-primary-border)",colorPrimaryBorderHover:"var(--vef-color-primary-border-hover)",colorPrimaryHover:"var(--vef-color-primary-hover)",colorPrimaryActive:"var(--vef-color-primary-active)",colorPrimaryTextHover:"var(--vef-color-primary-text-hover)",colorPrimaryText:"var(--vef-color-primary-text)",colorPrimaryTextActive:"var(--vef-color-primary-text-active)",colorSuccessBg:"var(--vef-color-success-bg)",colorSuccessBgHover:"var(--vef-color-success-bg-hover)",colorSuccessBorder:"var(--vef-color-success-border)",colorSuccessBorderHover:"var(--vef-color-success-border-hover)",colorSuccessHover:"var(--vef-color-success-hover)",colorSuccessActive:"var(--vef-color-success-active)",colorSuccessTextHover:"var(--vef-color-success-text-hover)",colorSuccessText:"var(--vef-color-success-text)",colorSuccessTextActive:"var(--vef-color-success-text-active)",colorErrorBg:"var(--vef-color-error-bg)",colorErrorBgHover:"var(--vef-color-error-bg-hover)",colorErrorBgFilledHover:"var(--vef-color-error-bg-filled-hover)",colorErrorBgActive:"var(--vef-color-error-bg-active)",colorErrorBorder:"var(--vef-color-error-border)",colorErrorBorderHover:"var(--vef-color-error-border-hover)",colorErrorHover:"var(--vef-color-error-hover)",colorErrorActive:"var(--vef-color-error-active)",colorErrorTextHover:"var(--vef-color-error-text-hover)",colorErrorText:"var(--vef-color-error-text)",colorErrorTextActive:"var(--vef-color-error-text-active)",colorWarningBg:"var(--vef-color-warning-bg)",colorWarningBgHover:"var(--vef-color-warning-bg-hover)",colorWarningBorder:"var(--vef-color-warning-border)",colorWarningBorderHover:"var(--vef-color-warning-border-hover)",colorWarningHover:"var(--vef-color-warning-hover)",colorWarningActive:"var(--vef-color-warning-active)",colorWarningTextHover:"var(--vef-color-warning-text-hover)",colorWarningText:"var(--vef-color-warning-text)",colorWarningTextActive:"var(--vef-color-warning-text-active)",colorInfoBg:"var(--vef-color-info-bg)",colorInfoBgHover:"var(--vef-color-info-bg-hover)",colorInfoBorder:"var(--vef-color-info-border)",colorInfoBorderHover:"var(--vef-color-info-border-hover)",colorInfoHover:"var(--vef-color-info-hover)",colorInfoActive:"var(--vef-color-info-active)",colorInfoTextHover:"var(--vef-color-info-text-hover)",colorInfoText:"var(--vef-color-info-text)",colorInfoTextActive:"var(--vef-color-info-text-active)",colorLinkHover:"var(--vef-color-link-hover)",colorLinkActive:"var(--vef-color-link-active)",colorBgMask:"var(--vef-color-bg-mask)",colorWhite:"var(--vef-color-white)",fontSizeSm:"var(--vef-font-size-sm)",fontSizeLg:"var(--vef-font-size-lg)",fontSizeXl:"var(--vef-font-size-xl)",fontSizeHeading1:"var(--vef-font-size-heading-1)",fontSizeHeading2:"var(--vef-font-size-heading-2)",fontSizeHeading3:"var(--vef-font-size-heading-3)",fontSizeHeading4:"var(--vef-font-size-heading-4)",fontSizeHeading5:"var(--vef-font-size-heading-5)",lineHeight:"var(--vef-line-height)",lineHeightLg:"var(--vef-line-height-lg)",lineHeightSm:"var(--vef-line-height-sm)",fontHeight:"var(--vef-font-height)",fontHeightLg:"var(--vef-font-height-lg)",fontHeightSm:"var(--vef-font-height-sm)",lineHeightHeading1:"var(--vef-line-height-heading-1)",lineHeightHeading2:"var(--vef-line-height-heading-2)",lineHeightHeading3:"var(--vef-line-height-heading-3)",lineHeightHeading4:"var(--vef-line-height-heading-4)",lineHeightHeading5:"var(--vef-line-height-heading-5)",controlHeightSm:"var(--vef-control-height-sm)",controlHeightXs:"var(--vef-control-height-xs)",controlHeightLg:"var(--vef-control-height-lg)",motionDurationFast:"var(--vef-motion-duration-fast)",motionDurationMid:"var(--vef-motion-duration-mid)",motionDurationSlow:"var(--vef-motion-duration-slow)",lineWidthBold:"var(--vef-line-width-bold)",borderRadiusXs:"var(--vef-border-radius-xs)",borderRadiusSm:"var(--vef-border-radius-sm)",borderRadiusLg:"var(--vef-border-radius-lg)",borderRadiusOuter:"var(--vef-border-radius-outer)",colorFillContent:"var(--vef-color-fill-content)",colorFillContentHover:"var(--vef-color-fill-content-hover)",colorFillAlt:"var(--vef-color-fill-alter)",colorBgContainerDisabled:"var(--vef-color-bg-container-disabled)",colorBorderBg:"var(--vef-color-border-bg)",colorSplit:"var(--vef-color-split)",colorTextPlaceholder:"var(--vef-color-text-placeholder)",colorTextDisabled:"var(--vef-color-text-disabled)",colorTextHeading:"var(--vef-color-text-heading)",colorTextLabel:"var(--vef-color-text-label)",colorTextDescription:"var(--vef-color-text-description)",colorTextLightSolid:"var(--vef-color-text-light-solid)",colorHighlight:"var(--vef-color-highlight)",colorBgTextHover:"var(--vef-color-bg-text-hover)",colorBgTextActive:"var(--vef-color-bg-text-active)",colorIcon:"var(--vef-color-icon)",colorIconHover:"var(--vef-color-icon-hover)",colorErrorOutline:"var(--vef-color-error-outline)",colorWarningOutline:"var(--vef-color-warning-outline)",fontSizeIcon:"var(--vef-font-size-icon)",lineWidthFocus:"var(--vef-line-width-focus)",controlOutlineWidth:"var(--vef-control-outline-width)",controlInteractiveSize:"var(--vef-control-interactive-size)",controlItemBgHover:"var(--vef-control-item-bg-hover)",controlItemBgActive:"var(--vef-control-item-bg-active)",controlItemBgActiveHover:"var(--vef-control-item-bg-active-hover)",controlItemBgActiveDisabled:"var(--vef-control-item-bg-active-disabled)",controlTmpOutline:"var(--vef-control-tmp-outline)",controlOutline:"var(--vef-control-outline)",fontWeightStrong:"var(--vef-font-weight-strong)",opacityLoading:"var(--vef-opacity-loading)",linkDecoration:"var(--vef-link-decoration)",linkHoverDecoration:"var(--vef-link-hover-decoration)",linkFocusDecoration:"var(--vef-link-focus-decoration)",controlPaddingHorizontal:"var(--vef-control-padding-horizontal)",controlPaddingHorizontalSm:"var(--vef-control-padding-horizontal-sm)",paddingXxs:"var(--vef-padding-xxs)",paddingXs:"var(--vef-padding-xs)",paddingSm:"var(--vef-padding-sm)",padding:"var(--vef-padding)",paddingMd:"var(--vef-padding-md)",paddingLg:"var(--vef-padding-lg)",paddingXl:"var(--vef-padding-xl)",paddingContentHorizontalLg:"var(--vef-padding-content-horizontal-lg)",paddingContentVerticalLg:"var(--vef-padding-content-vertical-lg)",paddingContentHorizontal:"var(--vef-padding-content-horizontal)",paddingContentVertical:"var(--vef-padding-content-vertical)",paddingContentHorizontalSm:"var(--vef-padding-content-horizontal-sm)",paddingContentVerticalSm:"var(--vef-padding-content-vertical-sm)",marginXxs:"var(--vef-margin-xxs)",marginXs:"var(--vef-margin-xs)",marginSm:"var(--vef-margin-sm)",margin:"var(--vef-margin)",marginMd:"var(--vef-margin-md)",marginLg:"var(--vef-margin-lg)",marginXl:"var(--vef-margin-xl)",marginXxl:"var(--vef-margin-xxl)",boxShadow:"var(--vef-box-shadow)",boxShadowSecondary:"var(--vef-box-shadow-secondary)",boxShadowTertiary:"var(--vef-box-shadow-tertiary)",boxShadowPopoverArrow:"var(--vef-box-shadow-popover-arrow)",boxShadowCard:"var(--vef-box-shadow-card)",boxShadowDrawerRight:"var(--vef-box-shadow-drawer-right)",boxShadowDrawerLeft:"var(--vef-box-shadow-drawer-left)",boxShadowDrawerUp:"var(--vef-box-shadow-drawer-up)",boxShadowDrawerDown:"var(--vef-box-shadow-drawer-down)",boxShadowTabsOverflowLeft:"var(--vef-box-shadow-tabs-overflow-left)",boxShadowTabsOverflowRight:"var(--vef-box-shadow-tabs-overflow-right)",boxShadowTabsOverflowTop:"var(--vef-box-shadow-tabs-overflow-top)",boxShadowTabsOverflowBottom:"var(--vef-box-shadow-tabs-overflow-bottom)",boxShadowElevated:"0 0 1px rgb(0 0 0 / 30%), 0 4px 14px rgb(0 0 0 / 10%)"};export{e as themeVariables};