@kaizen/components 1.4.22-canary.3 → 1.4.22-canary.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/iife/KaizenProvider/ThemeProvider/ThemeManager.js +2518 -9
- package/dist/iife/KaizenProvider/ThemeProvider/ThemeManager.spec.js +2212 -13
- package/dist/iife/KaizenProvider/ThemeProvider/index.js +328 -25
- package/dist/iife/KaizenProvider/index.js +330 -27
- package/dist/iife/index.js +362 -519
- package/dist/styles.css +98 -0
- package/package.json +34 -34
- package/dist/iife/Dropdown.module-4CIBZTRZ-4CIBZTRZ.scss +0 -100
- package/dist/iife/Layout.module-MZ6JYT46-MZ6JYT46.scss +0 -58
- package/dist/iife/Margin.module-DJURK5K7-DJURK5K7.scss +0 -19
- package/dist/iife/Menu.module-N76N74LN-N76N74LN.scss +0 -111
- package/dist/iife/Padding.module-QSNUEZBU-QSNUEZBU.scss +0 -19
- package/dist/iife/Text.module-SXGFOHGJ-SXGFOHGJ.scss +0 -173
- /package/dist/iife/{Icon.module-VD7NKLAR-VD7NKLAR.scss → Icon.module-VD7NKLAR.scss} +0 -0
- /package/dist/iife/{SkipLink.module-KAZA7PAL-KAZA7PAL.scss → SkipLink.module-KAZA7PAL.scss} +0 -0
- /package/dist/iife/{VisuallyHidden.module-E5JUNEF5-E5JUNEF5.scss → VisuallyHidden.module-E5JUNEF5.scss} +0 -0
|
@@ -1382,7 +1382,7 @@
|
|
|
1382
1382
|
}
|
|
1383
1383
|
return dispatcher.useContext(Context2);
|
|
1384
1384
|
}
|
|
1385
|
-
function
|
|
1385
|
+
function useState3(initialState) {
|
|
1386
1386
|
var dispatcher = resolveDispatcher();
|
|
1387
1387
|
return dispatcher.useState(initialState);
|
|
1388
1388
|
}
|
|
@@ -2184,7 +2184,7 @@
|
|
|
2184
2184
|
exports.useMemo = useMemo;
|
|
2185
2185
|
exports.useReducer = useReducer;
|
|
2186
2186
|
exports.useRef = useRef;
|
|
2187
|
-
exports.useState =
|
|
2187
|
+
exports.useState = useState3;
|
|
2188
2188
|
exports.useSyncExternalStore = useSyncExternalStore;
|
|
2189
2189
|
exports.useTransition = useTransition;
|
|
2190
2190
|
exports.version = ReactVersion;
|
|
@@ -2913,16 +2913,322 @@
|
|
|
2913
2913
|
});
|
|
2914
2914
|
|
|
2915
2915
|
// src/KaizenProvider/ThemeProvider/ThemeProvider.tsx
|
|
2916
|
-
var
|
|
2916
|
+
var import_react2 = __toESM(require_react());
|
|
2917
2917
|
|
|
2918
|
-
// ../design-tokens/
|
|
2918
|
+
// ../design-tokens/dist/esm/index.js
|
|
2919
2919
|
var import_color_string = __toESM(require_color_string());
|
|
2920
|
-
|
|
2921
|
-
// ../design-tokens/src/lib/cssVariables.ts
|
|
2922
2920
|
var import_lodash = __toESM(require_lodash());
|
|
2921
|
+
var import_react = __toESM(require_react());
|
|
2922
|
+
var heartTheme = {
|
|
2923
|
+
themeKey: "heart",
|
|
2924
|
+
animation: {
|
|
2925
|
+
easingFunction: {
|
|
2926
|
+
easeInOut: "cubic-bezier(0.455, 0.03, 0.515, 0.955)",
|
|
2927
|
+
easeIn: "cubic-bezier(0.55, 0.085, 0.68, 0.53)",
|
|
2928
|
+
easeOut: "cubic-bezier(0.25, 0.46, 0.45, 0.94)",
|
|
2929
|
+
linear: "linear",
|
|
2930
|
+
bounceIn: "cubic-bezier(0.485, 0.155, 0.24, 1.245)",
|
|
2931
|
+
bounceOut: "cubic-bezier(0.485, 0.155, 0.515, 0.845)",
|
|
2932
|
+
bounceInOut: "cubic-bezier(0.76, -0.245, 0.24, 1.245)"
|
|
2933
|
+
},
|
|
2934
|
+
duration: {
|
|
2935
|
+
instant: "0ms",
|
|
2936
|
+
immediate: "100ms",
|
|
2937
|
+
rapid: "200ms",
|
|
2938
|
+
fast: "300ms",
|
|
2939
|
+
slow: "400ms",
|
|
2940
|
+
deliberate: "700ms"
|
|
2941
|
+
}
|
|
2942
|
+
},
|
|
2943
|
+
border: {
|
|
2944
|
+
solid: {
|
|
2945
|
+
borderWidth: "2px",
|
|
2946
|
+
borderRadius: "7px",
|
|
2947
|
+
borderStyle: "solid",
|
|
2948
|
+
borderColor: "#e1e2ea"
|
|
2949
|
+
},
|
|
2950
|
+
dashed: {
|
|
2951
|
+
borderWidth: "2px",
|
|
2952
|
+
borderRadius: "7px",
|
|
2953
|
+
borderStyle: "dashed"
|
|
2954
|
+
},
|
|
2955
|
+
borderless: {
|
|
2956
|
+
borderWidth: "2px",
|
|
2957
|
+
borderRadius: "7px",
|
|
2958
|
+
borderStyle: "solid",
|
|
2959
|
+
borderColor: "transparent"
|
|
2960
|
+
},
|
|
2961
|
+
focusRing: {
|
|
2962
|
+
borderWidth: "2px",
|
|
2963
|
+
borderRadius: "10px",
|
|
2964
|
+
borderStyle: "solid"
|
|
2965
|
+
}
|
|
2966
|
+
},
|
|
2967
|
+
color: {
|
|
2968
|
+
purple: {
|
|
2969
|
+
100: "#f4edf8",
|
|
2970
|
+
200: "#dfc9ea",
|
|
2971
|
+
300: "#c9a5dd",
|
|
2972
|
+
400: "#ae67b1",
|
|
2973
|
+
500: "#844587",
|
|
2974
|
+
600: "#5f3361",
|
|
2975
|
+
700: "#4a234d",
|
|
2976
|
+
800: "#2f2438"
|
|
2977
|
+
},
|
|
2978
|
+
blue: {
|
|
2979
|
+
100: "#e6f6ff",
|
|
2980
|
+
200: "#bde2f5",
|
|
2981
|
+
300: "#73c0e8",
|
|
2982
|
+
400: "#008bd6",
|
|
2983
|
+
500: "#0168b3",
|
|
2984
|
+
600: "#004970",
|
|
2985
|
+
700: "#003157"
|
|
2986
|
+
},
|
|
2987
|
+
green: {
|
|
2988
|
+
100: "#e8f8f4",
|
|
2989
|
+
200: "#c4ede2",
|
|
2990
|
+
300: "#8fdbc7",
|
|
2991
|
+
400: "#5dcbad",
|
|
2992
|
+
500: "#44a289",
|
|
2993
|
+
600: "#2c7d67",
|
|
2994
|
+
700: "#22594a"
|
|
2995
|
+
},
|
|
2996
|
+
yellow: {
|
|
2997
|
+
100: "#fff9e4",
|
|
2998
|
+
200: "#ffeeb3",
|
|
2999
|
+
300: "#ffe36e",
|
|
3000
|
+
400: "#ffca4d",
|
|
3001
|
+
500: "#ffb600",
|
|
3002
|
+
600: "#c68600",
|
|
3003
|
+
700: "#876400"
|
|
3004
|
+
},
|
|
3005
|
+
red: {
|
|
3006
|
+
100: "#fdeaee",
|
|
3007
|
+
200: "#f9c2cb",
|
|
3008
|
+
300: "#f597a8",
|
|
3009
|
+
400: "#e0707d",
|
|
3010
|
+
500: "#c93b55",
|
|
3011
|
+
600: "#a82433",
|
|
3012
|
+
700: "#6c1e20"
|
|
3013
|
+
},
|
|
3014
|
+
orange: {
|
|
3015
|
+
100: "#fff0e8",
|
|
3016
|
+
200: "#ffd1b9",
|
|
3017
|
+
300: "#ffb08a",
|
|
3018
|
+
400: "#ff9461",
|
|
3019
|
+
500: "#e96c2f",
|
|
3020
|
+
600: "#b74302",
|
|
3021
|
+
700: "#903c00"
|
|
3022
|
+
},
|
|
3023
|
+
gray: {
|
|
3024
|
+
100: "#f9f9f9",
|
|
3025
|
+
200: "#f4f4f5",
|
|
3026
|
+
300: "#eaeaec",
|
|
3027
|
+
400: "#cdcdd0",
|
|
3028
|
+
500: "#8c8c97",
|
|
3029
|
+
600: "#524e56"
|
|
3030
|
+
},
|
|
3031
|
+
white: "#ffffff"
|
|
3032
|
+
},
|
|
3033
|
+
dataViz: {
|
|
3034
|
+
favorable: "#7dd5bd",
|
|
3035
|
+
unfavorable: "#e68d97"
|
|
3036
|
+
},
|
|
3037
|
+
layout: {
|
|
3038
|
+
contentMaxWidth: "1392px",
|
|
3039
|
+
contentMaxWidthWithSidebar: "1080px",
|
|
3040
|
+
contentSideMargin: "72px",
|
|
3041
|
+
mobileActionsDrawerHeight: "60px",
|
|
3042
|
+
navigationBarHeight: "72px",
|
|
3043
|
+
breakpoints: {
|
|
3044
|
+
medium: "768px",
|
|
3045
|
+
large: "1080px"
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
shadow: {
|
|
3049
|
+
small: {
|
|
3050
|
+
boxShadow: "0px 3px 16px rgba(0, 0, 0, 0.06), 0px 1px 3px rgba(0, 0, 0, 0.1)"
|
|
3051
|
+
},
|
|
3052
|
+
large: {
|
|
3053
|
+
boxShadow: "0px 8px 40px rgba(0, 0, 0, 0.08), 0px 3px 9px rgba(0, 0, 0, 0.1)"
|
|
3054
|
+
}
|
|
3055
|
+
},
|
|
3056
|
+
spacing: {
|
|
3057
|
+
xs: "0.375rem",
|
|
3058
|
+
sm: "0.75rem",
|
|
3059
|
+
md: "1.5rem",
|
|
3060
|
+
lg: "2.25rem",
|
|
3061
|
+
xl: "3rem",
|
|
3062
|
+
xxl: "3.75rem",
|
|
3063
|
+
xxxl: "4.5rem",
|
|
3064
|
+
xxxxl: "5.25rem",
|
|
3065
|
+
xxxxxl: "6rem",
|
|
3066
|
+
0: "0",
|
|
3067
|
+
1: ".0625rem",
|
|
3068
|
+
2: ".125rem",
|
|
3069
|
+
4: ".25rem",
|
|
3070
|
+
6: ".375rem",
|
|
3071
|
+
8: ".5rem",
|
|
3072
|
+
12: ".75rem",
|
|
3073
|
+
16: "1rem",
|
|
3074
|
+
24: "1.5rem",
|
|
3075
|
+
32: "2rem",
|
|
3076
|
+
40: "2.5rem",
|
|
3077
|
+
48: "3rem",
|
|
3078
|
+
56: "3.5rem",
|
|
3079
|
+
64: "4rem",
|
|
3080
|
+
72: "4.5rem",
|
|
3081
|
+
80: "5rem",
|
|
3082
|
+
96: "6rem",
|
|
3083
|
+
112: "7rem",
|
|
3084
|
+
128: "8rem",
|
|
3085
|
+
160: "10rem",
|
|
3086
|
+
200: "12.5rem",
|
|
3087
|
+
240: "15rem",
|
|
3088
|
+
280: "17.5rem",
|
|
3089
|
+
320: "20rem"
|
|
3090
|
+
},
|
|
3091
|
+
typography: {
|
|
3092
|
+
dataLarge: {
|
|
3093
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3094
|
+
fontWeight: 700,
|
|
3095
|
+
fontSize: "5.25rem",
|
|
3096
|
+
lineHeight: "5.25rem",
|
|
3097
|
+
letterSpacing: "normal"
|
|
3098
|
+
},
|
|
3099
|
+
dataLargeUnits: {
|
|
3100
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3101
|
+
fontWeight: 700,
|
|
3102
|
+
fontSize: "2.625rem",
|
|
3103
|
+
lineHeight: "5.25rem",
|
|
3104
|
+
letterSpacing: "normal"
|
|
3105
|
+
},
|
|
3106
|
+
dataMedium: {
|
|
3107
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3108
|
+
fontWeight: 700,
|
|
3109
|
+
fontSize: "3rem",
|
|
3110
|
+
lineHeight: "5rem",
|
|
3111
|
+
letterSpacing: "normal"
|
|
3112
|
+
},
|
|
3113
|
+
dataMediumUnits: {
|
|
3114
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3115
|
+
fontWeight: 700,
|
|
3116
|
+
fontSize: "1.5rem",
|
|
3117
|
+
lineHeight: "5rem",
|
|
3118
|
+
letterSpacing: "normal"
|
|
3119
|
+
},
|
|
3120
|
+
dataSmall: {
|
|
3121
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3122
|
+
fontWeight: 700,
|
|
3123
|
+
fontSize: "1.5rem",
|
|
3124
|
+
lineHeight: "1.5rem",
|
|
3125
|
+
letterSpacing: "normal"
|
|
3126
|
+
},
|
|
3127
|
+
dataSmallUnits: {
|
|
3128
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3129
|
+
fontWeight: 700,
|
|
3130
|
+
fontSize: "1.125rem",
|
|
3131
|
+
lineHeight: "1.5rem",
|
|
3132
|
+
letterSpacing: "normal"
|
|
3133
|
+
},
|
|
3134
|
+
display0: {
|
|
3135
|
+
fontFamily: '"Tiempos Headline", Georgia, serif',
|
|
3136
|
+
fontWeight: 800,
|
|
3137
|
+
fontSize: "4.5rem",
|
|
3138
|
+
lineHeight: "5.25rem",
|
|
3139
|
+
letterSpacing: "0em"
|
|
3140
|
+
},
|
|
3141
|
+
heading1: {
|
|
3142
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3143
|
+
fontWeight: 700,
|
|
3144
|
+
fontSize: "2.125rem",
|
|
3145
|
+
lineHeight: "2.625rem",
|
|
3146
|
+
letterSpacing: "normal"
|
|
3147
|
+
},
|
|
3148
|
+
heading2: {
|
|
3149
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3150
|
+
fontWeight: 700,
|
|
3151
|
+
fontSize: "1.75rem",
|
|
3152
|
+
lineHeight: "2.25rem",
|
|
3153
|
+
letterSpacing: "normal"
|
|
3154
|
+
},
|
|
3155
|
+
heading3: {
|
|
3156
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3157
|
+
fontWeight: 700,
|
|
3158
|
+
fontSize: "1.375rem",
|
|
3159
|
+
lineHeight: "1.875rem",
|
|
3160
|
+
letterSpacing: "normal"
|
|
3161
|
+
},
|
|
3162
|
+
heading4: {
|
|
3163
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3164
|
+
fontWeight: 600,
|
|
3165
|
+
fontSize: "1.125rem",
|
|
3166
|
+
lineHeight: "1.5rem",
|
|
3167
|
+
letterSpacing: "normal"
|
|
3168
|
+
},
|
|
3169
|
+
heading5: {
|
|
3170
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3171
|
+
fontWeight: 600,
|
|
3172
|
+
fontSize: "1rem",
|
|
3173
|
+
lineHeight: "1.5rem",
|
|
3174
|
+
letterSpacing: "normal"
|
|
3175
|
+
},
|
|
3176
|
+
heading6: {
|
|
3177
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3178
|
+
fontWeight: 700,
|
|
3179
|
+
fontSize: "0.875rem",
|
|
3180
|
+
lineHeight: "1.5rem",
|
|
3181
|
+
letterSpacing: "normal"
|
|
3182
|
+
},
|
|
3183
|
+
paragraphIntroLede: {
|
|
3184
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3185
|
+
fontWeight: 400,
|
|
3186
|
+
fontSize: "1.25rem",
|
|
3187
|
+
lineHeight: "1.875rem",
|
|
3188
|
+
letterSpacing: "0"
|
|
3189
|
+
},
|
|
3190
|
+
paragraphBody: {
|
|
3191
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3192
|
+
fontWeight: 400,
|
|
3193
|
+
fontSize: "1rem",
|
|
3194
|
+
lineHeight: "1.5rem",
|
|
3195
|
+
letterSpacing: "normal"
|
|
3196
|
+
},
|
|
3197
|
+
paragraphSmall: {
|
|
3198
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3199
|
+
fontWeight: 400,
|
|
3200
|
+
fontSize: "0.875rem",
|
|
3201
|
+
lineHeight: "1.125rem",
|
|
3202
|
+
letterSpacing: "normal"
|
|
3203
|
+
},
|
|
3204
|
+
paragraphExtraSmall: {
|
|
3205
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3206
|
+
fontWeight: 400,
|
|
3207
|
+
fontSize: "0.75rem",
|
|
3208
|
+
lineHeight: "1.125rem",
|
|
3209
|
+
letterSpacing: "normal"
|
|
3210
|
+
},
|
|
3211
|
+
paragraphBold: {
|
|
3212
|
+
fontWeight: 600
|
|
3213
|
+
},
|
|
3214
|
+
buttonPrimary: {
|
|
3215
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3216
|
+
fontWeight: 700,
|
|
3217
|
+
fontSize: "1.125rem",
|
|
3218
|
+
lineHeight: "1.5rem",
|
|
3219
|
+
letterSpacing: "normal"
|
|
3220
|
+
},
|
|
3221
|
+
buttonSecondary: {
|
|
3222
|
+
fontFamily: '"Inter", "Noto Sans", Helvetica, Arial, sans-serif',
|
|
3223
|
+
fontWeight: 500,
|
|
3224
|
+
fontSize: "1rem",
|
|
3225
|
+
lineHeight: "1.5rem",
|
|
3226
|
+
letterSpacing: "normal"
|
|
3227
|
+
}
|
|
3228
|
+
}
|
|
3229
|
+
};
|
|
3230
|
+
var defaultTheme = heartTheme;
|
|
2923
3231
|
var objectPathToCssVarIdentifier = (path) => `--${path.map(import_lodash.default).join("-")}`;
|
|
2924
|
-
|
|
2925
|
-
// ../design-tokens/src/lib/addExtraThemeEntries.ts
|
|
2926
3232
|
var addExtraThemeEntries = (path, key, value, printValue, {
|
|
2927
3233
|
augmentWithId
|
|
2928
3234
|
}) => {
|
|
@@ -2944,8 +3250,6 @@
|
|
|
2944
3250
|
}
|
|
2945
3251
|
return result;
|
|
2946
3252
|
};
|
|
2947
|
-
|
|
2948
|
-
// ../design-tokens/src/lib/mapLeafsOfObject.ts
|
|
2949
3253
|
function mapLeafsOfObject(object, mapper) {
|
|
2950
3254
|
const recurser = (currentPath, obj) => {
|
|
2951
3255
|
const handleEntry = (key, value) => {
|
|
@@ -2965,8 +3269,6 @@
|
|
|
2965
3269
|
};
|
|
2966
3270
|
return recurser([], object);
|
|
2967
3271
|
}
|
|
2968
|
-
|
|
2969
|
-
// ../design-tokens/src/lib/makeCssVariableDefinitionsMap.ts
|
|
2970
3272
|
function makeCssVariableDefinitionsMap(theme) {
|
|
2971
3273
|
let accumulatedCssVariables = {};
|
|
2972
3274
|
mapLeafsOfObject(theme, (path, value) => {
|
|
@@ -2985,6 +3287,7 @@
|
|
|
2985
3287
|
});
|
|
2986
3288
|
return accumulatedCssVariables;
|
|
2987
3289
|
}
|
|
3290
|
+
var ThemeContext = import_react.default.createContext(defaultTheme);
|
|
2988
3291
|
|
|
2989
3292
|
// src/KaizenProvider/ThemeProvider/ThemeManager.ts
|
|
2990
3293
|
var ThemeManager = class {
|
|
@@ -3038,7 +3341,7 @@
|
|
|
3038
3341
|
};
|
|
3039
3342
|
|
|
3040
3343
|
// src/KaizenProvider/ThemeProvider/themes/heart.ts
|
|
3041
|
-
var
|
|
3344
|
+
var heartTheme2 = {
|
|
3042
3345
|
themeKey: "heart",
|
|
3043
3346
|
animation: {
|
|
3044
3347
|
easingFunction: {
|
|
@@ -3348,21 +3651,21 @@
|
|
|
3348
3651
|
};
|
|
3349
3652
|
|
|
3350
3653
|
// src/KaizenProvider/ThemeProvider/themes/index.ts
|
|
3351
|
-
var
|
|
3654
|
+
var defaultTheme2 = heartTheme2;
|
|
3352
3655
|
|
|
3353
3656
|
// src/KaizenProvider/ThemeProvider/ThemeProvider.tsx
|
|
3354
|
-
var
|
|
3657
|
+
var ThemeContext2 = (0, import_react2.createContext)(defaultTheme2);
|
|
3355
3658
|
var ThemeProvider = ({
|
|
3356
3659
|
themeManager,
|
|
3357
3660
|
...props
|
|
3358
3661
|
}) => {
|
|
3359
|
-
const [themeManagerInstance] = (0,
|
|
3360
|
-
() => themeManager || new ThemeManager(
|
|
3662
|
+
const [themeManagerInstance] = (0, import_react2.useState)(
|
|
3663
|
+
() => themeManager || new ThemeManager(defaultTheme2)
|
|
3361
3664
|
);
|
|
3362
|
-
const [theme, setTheme] = (0,
|
|
3665
|
+
const [theme, setTheme] = (0, import_react2.useState)(
|
|
3363
3666
|
themeManagerInstance.getCurrentTheme()
|
|
3364
3667
|
);
|
|
3365
|
-
(0,
|
|
3668
|
+
(0, import_react2.useEffect)(() => {
|
|
3366
3669
|
let cancelled = false;
|
|
3367
3670
|
const listener = (newTheme) => {
|
|
3368
3671
|
if (!cancelled)
|
|
@@ -3374,7 +3677,7 @@
|
|
|
3374
3677
|
themeManagerInstance.removeThemeChangeListener(listener);
|
|
3375
3678
|
};
|
|
3376
3679
|
}, []);
|
|
3377
|
-
return /* @__PURE__ */
|
|
3680
|
+
return /* @__PURE__ */ import_react2.default.createElement(import_react2.default.Fragment, null, /* @__PURE__ */ import_react2.default.createElement(ThemeContext2.Provider, { value: theme }, props.children), /* @__PURE__ */ import_react2.default.createElement(
|
|
3378
3681
|
"link",
|
|
3379
3682
|
{
|
|
3380
3683
|
rel: "preload",
|
|
@@ -3383,7 +3686,7 @@
|
|
|
3383
3686
|
type: "font/woff2",
|
|
3384
3687
|
crossOrigin: "anonymous"
|
|
3385
3688
|
}
|
|
3386
|
-
), /* @__PURE__ */
|
|
3689
|
+
), /* @__PURE__ */ import_react2.default.createElement(
|
|
3387
3690
|
"link",
|
|
3388
3691
|
{
|
|
3389
3692
|
rel: "preload",
|
|
@@ -3392,7 +3695,7 @@
|
|
|
3392
3695
|
type: "font/woff2",
|
|
3393
3696
|
crossOrigin: "anonymous"
|
|
3394
3697
|
}
|
|
3395
|
-
), /* @__PURE__ */
|
|
3698
|
+
), /* @__PURE__ */ import_react2.default.createElement(
|
|
3396
3699
|
"link",
|
|
3397
3700
|
{
|
|
3398
3701
|
rel: "preload",
|
|
@@ -3401,7 +3704,7 @@
|
|
|
3401
3704
|
type: "font/woff2",
|
|
3402
3705
|
crossOrigin: "anonymous"
|
|
3403
3706
|
}
|
|
3404
|
-
), /* @__PURE__ */
|
|
3707
|
+
), /* @__PURE__ */ import_react2.default.createElement(
|
|
3405
3708
|
"link",
|
|
3406
3709
|
{
|
|
3407
3710
|
rel: "preload",
|
|
@@ -3410,7 +3713,7 @@
|
|
|
3410
3713
|
type: "font/woff2",
|
|
3411
3714
|
crossOrigin: "anonymous"
|
|
3412
3715
|
}
|
|
3413
|
-
), /* @__PURE__ */
|
|
3716
|
+
), /* @__PURE__ */ import_react2.default.createElement(
|
|
3414
3717
|
"link",
|
|
3415
3718
|
{
|
|
3416
3719
|
rel: "preload",
|
|
@@ -3421,7 +3724,7 @@
|
|
|
3421
3724
|
}
|
|
3422
3725
|
));
|
|
3423
3726
|
};
|
|
3424
|
-
var useTheme = () => (0,
|
|
3727
|
+
var useTheme = () => (0, import_react2.useContext)(ThemeContext2);
|
|
3425
3728
|
})();
|
|
3426
3729
|
/*! Bundled license information:
|
|
3427
3730
|
|