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