@sistent/sistent 0.15.5 → 0.15.6

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/index.d.ts CHANGED
@@ -8,8 +8,8 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
8
8
  import * as _emotion_styled from '@emotion/styled';
9
9
  import * as _mui_system from '@mui/system';
10
10
  import { Store as Store$1, Dispatch } from 'redux';
11
- import { TypographyOptions } from '@mui/material/styles/createTypography';
12
11
  import { EmotionCache } from '@emotion/react';
12
+ import { TypographyOptions } from '@mui/material/styles/createTypography';
13
13
  import * as xstate from 'xstate';
14
14
  import { EventObject, DoneActorEvent, ErrorActorEvent, SnapshotFrom, NonReducibleUnknown, ActorLogic, AnyMachineSnapshot, AnyActorLogic, AnyEventObject, AnyActorRef } from 'xstate';
15
15
  import { Store, Selector, UnknownAction } from '@reduxjs/toolkit';
@@ -2028,387 +2028,6 @@ declare const grafanaCredentialSchema: {
2028
2028
 
2029
2029
  declare const grafanaCredentialUiSchema: {};
2030
2030
 
2031
- declare module '@mui/material/styles' {
2032
- interface Interactiveness {
2033
- default: string;
2034
- hover: string;
2035
- disabled?: string;
2036
- pressed: string;
2037
- secondary: string;
2038
- tertiary: string;
2039
- }
2040
- interface TypeBackground {
2041
- secondary?: string;
2042
- supplementary?: string;
2043
- graphics?: {
2044
- default: string;
2045
- };
2046
- tabs?: string;
2047
- elevatedComponents?: string;
2048
- card?: string;
2049
- tertiary?: string;
2050
- hover?: string;
2051
- blur?: {
2052
- heavy: string;
2053
- light: string;
2054
- };
2055
- neutral?: {
2056
- default: string;
2057
- hover: string;
2058
- pressed: string;
2059
- };
2060
- constant?: {
2061
- disabled: string;
2062
- white: string;
2063
- table: string;
2064
- };
2065
- inverse?: string;
2066
- brand?: Interactiveness;
2067
- cta?: Interactiveness;
2068
- info?: Interactiveness;
2069
- success?: Interactiveness;
2070
- warning?: Interactiveness;
2071
- error?: Interactiveness;
2072
- code?: string;
2073
- surfaces?: string;
2074
- appNavigationBar?: string;
2075
- secondaryAppNavigationBar?: string;
2076
- }
2077
- interface TypeText {
2078
- default?: string;
2079
- secondary: string;
2080
- tertiary?: string;
2081
- disabled: string;
2082
- inverse?: string;
2083
- brand?: string;
2084
- info?: string;
2085
- success?: string;
2086
- warning?: string;
2087
- error?: string;
2088
- neutral?: {
2089
- default: string;
2090
- alt: string;
2091
- };
2092
- constant?: {
2093
- white: string;
2094
- disabled: string;
2095
- };
2096
- }
2097
- interface PaletteColor {
2098
- secondary?: string;
2099
- supplementary?: string;
2100
- blur?: {
2101
- heavy: string;
2102
- light: string;
2103
- };
2104
- neutral?: {
2105
- default: string;
2106
- hover: string;
2107
- pressed: string;
2108
- alt: string;
2109
- };
2110
- constant?: {
2111
- white: string;
2112
- disabled: string;
2113
- table: string;
2114
- };
2115
- inverse?: string;
2116
- brand?: Interactiveness;
2117
- cta?: Interactiveness;
2118
- info?: Interactiveness;
2119
- success?: Interactiveness;
2120
- warning?: Interactiveness;
2121
- error?: Interactiveness;
2122
- code?: string;
2123
- strong?: string;
2124
- normal?: string;
2125
- disabled?: string;
2126
- surfaces?: string;
2127
- }
2128
- interface SimplePaletteColorOptions {
2129
- secondary?: string;
2130
- supplementary?: string;
2131
- blur?: {
2132
- heavy: string;
2133
- light: string;
2134
- };
2135
- neutral?: {
2136
- default: string;
2137
- hover: string;
2138
- pressed: string;
2139
- alt: string;
2140
- };
2141
- constant?: {
2142
- white: string;
2143
- disabled: string;
2144
- table: string;
2145
- };
2146
- inverse?: string;
2147
- brand?: Interactiveness;
2148
- cta?: Interactiveness;
2149
- info?: Interactiveness;
2150
- success?: Interactiveness;
2151
- warning?: Interactiveness;
2152
- error?: Interactiveness;
2153
- code?: string;
2154
- strong?: string;
2155
- normal?: string;
2156
- disabled?: string;
2157
- surfaces?: string;
2158
- }
2159
- interface Palette {
2160
- surface: SurfaceTokens;
2161
- interactive: InteractiveTokens;
2162
- navigation: NavigationTokens;
2163
- border: {
2164
- default: string;
2165
- strong: string;
2166
- brand: string;
2167
- normal: string;
2168
- neutral?: {
2169
- default: string;
2170
- alt: string;
2171
- };
2172
- };
2173
- icon: {
2174
- default: string;
2175
- secondary: string;
2176
- brand: string;
2177
- inverse: string;
2178
- weather: string;
2179
- disabled: string;
2180
- neutral?: {
2181
- default: string;
2182
- alt: string;
2183
- };
2184
- };
2185
- }
2186
- type SurfaceTokens = {
2187
- /** main page background, content containers (pure bg color) */
2188
- primary: string;
2189
- /** secondary surfaces (slightly darker bg) */
2190
- secondary: string;
2191
- /** tertiary surfaces (even darker bg) */
2192
- tertiary: string;
2193
- /** floating elements with depth (bg + shadow) */
2194
- elevated: string;
2195
- /** modal backdrops (semi-transparent bg) */
2196
- overlay: string;
2197
- /** highlight surfaces (eg. modal headers , tabs, ) */
2198
- tint: string;
2199
- /** high contrast alternative (fg as bg) */
2200
- inverse: string;
2201
- };
2202
- type InteractiveTokens = {
2203
- /** default interactive elements (primary color) */
2204
- primary: string;
2205
- /** hover state for interactive elements (primary hover tint) */
2206
- hover: string;
2207
- /** disabled state for interactive elements (primary disabled tint) */
2208
- disabled?: string;
2209
- /** pressed state for interactive elements (primary pressed tint) */
2210
- pressed: string;
2211
- /** secondary interactive elements (secondary color) */
2212
- secondary: string;
2213
- /** tertiary interactive elements (tertiary color) */
2214
- tertiary: string;
2215
- };
2216
- type NavigationTokens = {
2217
- /** main navigation bar background */
2218
- primary: string;
2219
- /** secondary navigation bar background */
2220
- secondary: string;
2221
- /** active navigation item background */
2222
- active: string;
2223
- /** hover state for navigation items */
2224
- hover: string;
2225
- };
2226
- interface PaletteOptions {
2227
- surface: SurfaceTokens;
2228
- interactive: InteractiveTokens;
2229
- navigation: NavigationTokens;
2230
- border: {
2231
- default: string;
2232
- strong: string;
2233
- brand: string;
2234
- normal: string;
2235
- neutral?: {
2236
- default: string;
2237
- alt: string;
2238
- };
2239
- };
2240
- icon: {
2241
- default: string;
2242
- dualTone?: string;
2243
- dualToneInverse?: string;
2244
- secondary: string;
2245
- brand: string;
2246
- inverse: string;
2247
- weather: string;
2248
- disabled: string;
2249
- neutral?: {
2250
- default: string;
2251
- alt: string;
2252
- };
2253
- };
2254
- }
2255
- }
2256
- declare const lightModePalette: PaletteOptions;
2257
- declare const darkModePalette: PaletteOptions;
2258
-
2259
- declare module '@mui/material/styles' {
2260
- interface TypographyVariants {
2261
- textH1Bold: React.CSSProperties;
2262
- textH2Medium: React.CSSProperties;
2263
- textH3Medium: React.CSSProperties;
2264
- textB1Regular: React.CSSProperties;
2265
- textB2SemiBold: React.CSSProperties;
2266
- textB3Regular: React.CSSProperties;
2267
- textL1Bold: React.CSSProperties;
2268
- textL2Regular: React.CSSProperties;
2269
- textC1Regular: React.CSSProperties;
2270
- textC2Regular: React.CSSProperties;
2271
- }
2272
- interface TypographyVariantsOptions {
2273
- textH1Bold?: React.CSSProperties;
2274
- textH2Medium?: React.CSSProperties;
2275
- textH3Medium?: React.CSSProperties;
2276
- textB1Regular?: React.CSSProperties;
2277
- textB2SemiBold?: React.CSSProperties;
2278
- textB3Regular?: React.CSSProperties;
2279
- textL1Bold?: React.CSSProperties;
2280
- textL2Regular?: React.CSSProperties;
2281
- textC1Regular?: React.CSSProperties;
2282
- textC2Regular?: React.CSSProperties;
2283
- }
2284
- }
2285
- declare module '@mui/material/Typography' {
2286
- interface TypographyPropsVariantOverrides {
2287
- textH1Bold: true;
2288
- textH2Medium: true;
2289
- textH3Medium: true;
2290
- textB1Regular: true;
2291
- textB2SemiBold: true;
2292
- textB3Regular: true;
2293
- textL1Bold: true;
2294
- textL2Regular: true;
2295
- textC1Regular: true;
2296
- textC2Regular: true;
2297
- }
2298
- }
2299
- declare const typography: (mode: PaletteMode) => TypographyOptions;
2300
-
2301
- /**
2302
- * Primitive palette defines the raw, brand-level colors used in the UI.
2303
- * These are foundational tokens that never directly appear in components
2304
- * without being mapped to semantic tokens (like `buttonBackground` or `navbarText`).
2305
- *
2306
- * Layer 2 ( ui ) tokens should reference these primitives to keep themes
2307
- * consistent, brandable, and easy to override.
2308
- */
2309
- type PrimitivePalette = {
2310
- /**
2311
- * AppNavigation bar background color.
2312
- * Examples:
2313
- * - Top navigation bar
2314
- * - Side navigation drawer
2315
- * - Bottom navigation bar
2316
- * - Tab headers
2317
- * Should be visually distinct from `background` to ensure
2318
- * navigation elements stand out.
2319
- */
2320
- navigationBar: string;
2321
- /**
2322
- * Main brand color used for the most prominent UI elements.
2323
- * Examples:
2324
- * - Primary button backgrounds (`primaryButtonBackground`)
2325
- * - Active navigation bar backgrounds
2326
- * - Key highlights in charts or graphs
2327
- * - Marketing banners
2328
- *
2329
- * Choose a color that instantly represents your brand identity.
2330
- */
2331
- primary: string;
2332
- /**
2333
- * High-contrast variant of `primary`, used for text/icons placed
2334
- * directly on a primary-colored background.
2335
- * Examples:
2336
- * - Text on primary buttons (`primaryButtonText`)
2337
- * - Icons in a primary-colored navbar
2338
- * - Labels in a badge using primary as the background
2339
- *
2340
- * Should pass WCAG contrast guidelines when layered on `primary`.
2341
- */
2342
- primaryInverted: string;
2343
- /**
2344
- * Secondary brand color for less prominent but still important UI elements.
2345
- * Examples:
2346
- * - Secondary buttons
2347
- * - Tab headers
2348
- * - Secondary navigation bars
2349
- * - Sidebar highlights
2350
- *
2351
- * Often complements `primary` without competing for attention.
2352
- */
2353
- secondary: string;
2354
- /**
2355
- * High-contrast variant of `secondary`, used for text/icons
2356
- * placed on a secondary-colored background.
2357
- * Examples:
2358
- * - Text on secondary buttons
2359
- * - Icons in a secondary navbar
2360
- * - Badge text over a secondary background
2361
- */
2362
- secondaryInverted: string;
2363
- /**
2364
- * Attention-grabbing color for emphasis and high-visibility actions.
2365
- * Often more vibrant than primary/secondary.
2366
- * Examples:
2367
- * - Hyperlinks
2368
- * - Special call-to-action buttons
2369
- * - Active tab underline
2370
- * - Notification counts or badges
2371
- * - Highlighted form fields
2372
- *
2373
- * Should be visually distinct from `primary`.
2374
- */
2375
- accent: string;
2376
- /**
2377
- * High-contrast variant of `accent`, used for text/icons placed
2378
- * on an accent-colored background.
2379
- * Examples:
2380
- * - Text in a promotional banner with accent background
2381
- * - Badge text on an accent background
2382
- * - Icons inside accent-highlighted buttons
2383
- */
2384
- accentInverted: string;
2385
- /**
2386
- * Main surface color for the app's UI.
2387
- * Examples:
2388
- * - App background
2389
- * - Card backgrounds
2390
- * - Modal and panel surfaces
2391
- *
2392
- * Typically neutral (light or dark) to maintain good readability.
2393
- */
2394
- background: string;
2395
- /**
2396
- * Default text color for content placed on `background`.
2397
- * Examples:
2398
- * - Paragraph text
2399
- * - Headings
2400
- * - Default icon color on white/light backgrounds
2401
- *
2402
- * Should maintain high contrast with `background`.
2403
- */
2404
- foreground: string;
2405
- };
2406
- /**
2407
- * Layer5 ( primitives ) defines the raw, brand-level colors used in the UI.
2408
- */
2409
- declare const SistentDefaultPrimitivePaletteLight: PrimitivePalette;
2410
- declare const SistentDefaultPrimitivePaletteDark: PrimitivePalette;
2411
-
2412
2031
  /**
2413
2032
  * Define the base common colors to derive from
2414
2033
  */
@@ -2666,6 +2285,345 @@ declare const socialIcons: {
2666
2285
  docker: string;
2667
2286
  };
2668
2287
 
2288
+ declare module '@mui/material/styles' {
2289
+ interface Interactiveness {
2290
+ default: string;
2291
+ hover: string;
2292
+ disabled?: string;
2293
+ pressed: string;
2294
+ secondary: string;
2295
+ tertiary: string;
2296
+ }
2297
+ interface TypeBackground {
2298
+ secondary?: string;
2299
+ supplementary?: string;
2300
+ graphics?: {
2301
+ default: string;
2302
+ };
2303
+ tabs?: string;
2304
+ elevatedComponents?: string;
2305
+ card?: string;
2306
+ tertiary?: string;
2307
+ hover?: string;
2308
+ blur?: {
2309
+ heavy: string;
2310
+ light: string;
2311
+ };
2312
+ neutral?: {
2313
+ default: string;
2314
+ hover: string;
2315
+ pressed: string;
2316
+ };
2317
+ constant?: {
2318
+ disabled: string;
2319
+ white: string;
2320
+ table: string;
2321
+ };
2322
+ inverse?: string;
2323
+ brand?: Interactiveness;
2324
+ cta?: Interactiveness;
2325
+ info?: Interactiveness;
2326
+ success?: Interactiveness;
2327
+ warning?: Interactiveness;
2328
+ error?: Interactiveness;
2329
+ code?: string;
2330
+ surfaces?: string;
2331
+ appNavigationBar?: string;
2332
+ secondaryAppNavigationBar?: string;
2333
+ }
2334
+ interface TypeText {
2335
+ default?: string;
2336
+ secondary: string;
2337
+ tertiary?: string;
2338
+ disabled: string;
2339
+ inverse?: string;
2340
+ brand?: string;
2341
+ info?: string;
2342
+ success?: string;
2343
+ warning?: string;
2344
+ error?: string;
2345
+ neutral?: {
2346
+ default: string;
2347
+ alt: string;
2348
+ };
2349
+ constant?: {
2350
+ white: string;
2351
+ disabled: string;
2352
+ };
2353
+ }
2354
+ interface PaletteColor {
2355
+ secondary?: string;
2356
+ supplementary?: string;
2357
+ blur?: {
2358
+ heavy: string;
2359
+ light: string;
2360
+ };
2361
+ neutral?: {
2362
+ default: string;
2363
+ hover: string;
2364
+ pressed: string;
2365
+ alt: string;
2366
+ };
2367
+ constant?: {
2368
+ white: string;
2369
+ disabled: string;
2370
+ table: string;
2371
+ };
2372
+ inverse?: string;
2373
+ brand?: Interactiveness;
2374
+ cta?: Interactiveness;
2375
+ info?: Interactiveness;
2376
+ success?: Interactiveness;
2377
+ warning?: Interactiveness;
2378
+ error?: Interactiveness;
2379
+ code?: string;
2380
+ strong?: string;
2381
+ normal?: string;
2382
+ disabled?: string;
2383
+ surfaces?: string;
2384
+ }
2385
+ interface SimplePaletteColorOptions {
2386
+ secondary?: string;
2387
+ supplementary?: string;
2388
+ blur?: {
2389
+ heavy: string;
2390
+ light: string;
2391
+ };
2392
+ neutral?: {
2393
+ default: string;
2394
+ hover: string;
2395
+ pressed: string;
2396
+ alt: string;
2397
+ };
2398
+ constant?: {
2399
+ white: string;
2400
+ disabled: string;
2401
+ table: string;
2402
+ };
2403
+ inverse?: string;
2404
+ brand?: Interactiveness;
2405
+ cta?: Interactiveness;
2406
+ info?: Interactiveness;
2407
+ success?: Interactiveness;
2408
+ warning?: Interactiveness;
2409
+ error?: Interactiveness;
2410
+ code?: string;
2411
+ strong?: string;
2412
+ normal?: string;
2413
+ disabled?: string;
2414
+ surfaces?: string;
2415
+ }
2416
+ interface Palette {
2417
+ surface: SurfaceTokens;
2418
+ interactive: InteractiveTokens;
2419
+ navigation: NavigationTokens;
2420
+ border: {
2421
+ default: string;
2422
+ strong: string;
2423
+ brand: string;
2424
+ normal: string;
2425
+ neutral?: {
2426
+ default: string;
2427
+ alt: string;
2428
+ };
2429
+ };
2430
+ icon: {
2431
+ default: string;
2432
+ secondary: string;
2433
+ brand: string;
2434
+ inverse: string;
2435
+ weather: string;
2436
+ disabled: string;
2437
+ neutral?: {
2438
+ default: string;
2439
+ alt: string;
2440
+ };
2441
+ };
2442
+ }
2443
+ type SurfaceTokens = {
2444
+ /** main page background, content containers (pure bg color) */
2445
+ primary: string;
2446
+ /** secondary surfaces (slightly darker bg) */
2447
+ secondary: string;
2448
+ /** tertiary surfaces (even darker bg) */
2449
+ tertiary: string;
2450
+ /** floating elements with depth (bg + shadow) */
2451
+ elevated: string;
2452
+ /** modal backdrops (semi-transparent bg) */
2453
+ overlay: string;
2454
+ /** highlight surfaces (eg. modal headers , tabs, ) */
2455
+ tint: string;
2456
+ /** high contrast alternative (fg as bg) */
2457
+ inverse: string;
2458
+ };
2459
+ type InteractiveTokens = {
2460
+ /** default interactive elements (primary color) */
2461
+ primary: string;
2462
+ /** hover state for interactive elements (primary hover tint) */
2463
+ hover: string;
2464
+ /** disabled state for interactive elements (primary disabled tint) */
2465
+ disabled?: string;
2466
+ /** pressed state for interactive elements (primary pressed tint) */
2467
+ pressed: string;
2468
+ /** secondary interactive elements (secondary color) */
2469
+ secondary: string;
2470
+ /** tertiary interactive elements (tertiary color) */
2471
+ tertiary: string;
2472
+ };
2473
+ type NavigationTokens = {
2474
+ /** main navigation bar background */
2475
+ primary: string;
2476
+ /** secondary navigation bar background */
2477
+ secondary: string;
2478
+ /** active navigation item background */
2479
+ active: string;
2480
+ /** hover state for navigation items */
2481
+ hover: string;
2482
+ };
2483
+ interface PaletteOptions {
2484
+ surface: SurfaceTokens;
2485
+ interactive: InteractiveTokens;
2486
+ navigation: NavigationTokens;
2487
+ border: {
2488
+ default: string;
2489
+ strong: string;
2490
+ brand: string;
2491
+ normal: string;
2492
+ neutral?: {
2493
+ default: string;
2494
+ alt: string;
2495
+ };
2496
+ };
2497
+ icon: {
2498
+ default: string;
2499
+ dualTone?: string;
2500
+ dualToneInverse?: string;
2501
+ secondary: string;
2502
+ brand: string;
2503
+ inverse: string;
2504
+ weather: string;
2505
+ disabled: string;
2506
+ neutral?: {
2507
+ default: string;
2508
+ alt: string;
2509
+ };
2510
+ };
2511
+ }
2512
+ }
2513
+ declare const lightModePalette: PaletteOptions;
2514
+ declare const darkModePalette: PaletteOptions;
2515
+
2516
+ /**
2517
+ * Primitive palette defines the raw, brand-level colors used in the UI.
2518
+ * These are foundational tokens that never directly appear in components
2519
+ * without being mapped to semantic tokens (like `buttonBackground` or `navbarText`).
2520
+ *
2521
+ * Layer 2 ( ui ) tokens should reference these primitives to keep themes
2522
+ * consistent, brandable, and easy to override.
2523
+ */
2524
+ type PrimitivePalette = {
2525
+ /**
2526
+ * AppNavigation bar background color.
2527
+ * Examples:
2528
+ * - Top navigation bar
2529
+ * - Side navigation drawer
2530
+ * - Bottom navigation bar
2531
+ * - Tab headers
2532
+ * Should be visually distinct from `background` to ensure
2533
+ * navigation elements stand out.
2534
+ */
2535
+ navigationBar: string;
2536
+ /**
2537
+ * Main brand color used for the most prominent UI elements.
2538
+ * Examples:
2539
+ * - Primary button backgrounds (`primaryButtonBackground`)
2540
+ * - Active navigation bar backgrounds
2541
+ * - Key highlights in charts or graphs
2542
+ * - Marketing banners
2543
+ *
2544
+ * Choose a color that instantly represents your brand identity.
2545
+ */
2546
+ primary: string;
2547
+ /**
2548
+ * High-contrast variant of `primary`, used for text/icons placed
2549
+ * directly on a primary-colored background.
2550
+ * Examples:
2551
+ * - Text on primary buttons (`primaryButtonText`)
2552
+ * - Icons in a primary-colored navbar
2553
+ * - Labels in a badge using primary as the background
2554
+ *
2555
+ * Should pass WCAG contrast guidelines when layered on `primary`.
2556
+ */
2557
+ primaryInverted: string;
2558
+ /**
2559
+ * Secondary brand color for less prominent but still important UI elements.
2560
+ * Examples:
2561
+ * - Secondary buttons
2562
+ * - Tab headers
2563
+ * - Secondary navigation bars
2564
+ * - Sidebar highlights
2565
+ *
2566
+ * Often complements `primary` without competing for attention.
2567
+ */
2568
+ secondary: string;
2569
+ /**
2570
+ * High-contrast variant of `secondary`, used for text/icons
2571
+ * placed on a secondary-colored background.
2572
+ * Examples:
2573
+ * - Text on secondary buttons
2574
+ * - Icons in a secondary navbar
2575
+ * - Badge text over a secondary background
2576
+ */
2577
+ secondaryInverted: string;
2578
+ /**
2579
+ * Attention-grabbing color for emphasis and high-visibility actions.
2580
+ * Often more vibrant than primary/secondary.
2581
+ * Examples:
2582
+ * - Hyperlinks
2583
+ * - Special call-to-action buttons
2584
+ * - Active tab underline
2585
+ * - Notification counts or badges
2586
+ * - Highlighted form fields
2587
+ *
2588
+ * Should be visually distinct from `primary`.
2589
+ */
2590
+ accent: string;
2591
+ /**
2592
+ * High-contrast variant of `accent`, used for text/icons placed
2593
+ * on an accent-colored background.
2594
+ * Examples:
2595
+ * - Text in a promotional banner with accent background
2596
+ * - Badge text on an accent background
2597
+ * - Icons inside accent-highlighted buttons
2598
+ */
2599
+ accentInverted: string;
2600
+ /**
2601
+ * Main surface color for the app's UI.
2602
+ * Examples:
2603
+ * - App background
2604
+ * - Card backgrounds
2605
+ * - Modal and panel surfaces
2606
+ *
2607
+ * Typically neutral (light or dark) to maintain good readability.
2608
+ */
2609
+ background: string;
2610
+ /**
2611
+ * Default text color for content placed on `background`.
2612
+ * Examples:
2613
+ * - Paragraph text
2614
+ * - Headings
2615
+ * - Default icon color on white/light backgrounds
2616
+ *
2617
+ * Should maintain high contrast with `background`.
2618
+ */
2619
+ foreground: string;
2620
+ };
2621
+ /**
2622
+ * Layer5 ( primitives ) defines the raw, brand-level colors used in the UI.
2623
+ */
2624
+ declare const SistentDefaultPrimitivePaletteLight: PrimitivePalette;
2625
+ declare const SistentDefaultPrimitivePaletteDark: PrimitivePalette;
2626
+
2669
2627
  interface SistentThemeProviderProps {
2670
2628
  children: React$1.ReactNode;
2671
2629
  emotionCache?: EmotionCache;
@@ -2675,6 +2633,48 @@ interface SistentThemeProviderProps {
2675
2633
  declare function SistentThemeProvider({ children, emotionCache, initialMode, customTheme }: SistentThemeProviderProps): JSX.Element;
2676
2634
  declare function SistentThemeProviderWithoutBaseLine({ children, emotionCache, initialMode }: SistentThemeProviderProps): JSX.Element;
2677
2635
 
2636
+ declare module '@mui/material/styles' {
2637
+ interface TypographyVariants {
2638
+ textH1Bold: React.CSSProperties;
2639
+ textH2Medium: React.CSSProperties;
2640
+ textH3Medium: React.CSSProperties;
2641
+ textB1Regular: React.CSSProperties;
2642
+ textB2SemiBold: React.CSSProperties;
2643
+ textB3Regular: React.CSSProperties;
2644
+ textL1Bold: React.CSSProperties;
2645
+ textL2Regular: React.CSSProperties;
2646
+ textC1Regular: React.CSSProperties;
2647
+ textC2Regular: React.CSSProperties;
2648
+ }
2649
+ interface TypographyVariantsOptions {
2650
+ textH1Bold?: React.CSSProperties;
2651
+ textH2Medium?: React.CSSProperties;
2652
+ textH3Medium?: React.CSSProperties;
2653
+ textB1Regular?: React.CSSProperties;
2654
+ textB2SemiBold?: React.CSSProperties;
2655
+ textB3Regular?: React.CSSProperties;
2656
+ textL1Bold?: React.CSSProperties;
2657
+ textL2Regular?: React.CSSProperties;
2658
+ textC1Regular?: React.CSSProperties;
2659
+ textC2Regular?: React.CSSProperties;
2660
+ }
2661
+ }
2662
+ declare module '@mui/material/Typography' {
2663
+ interface TypographyPropsVariantOverrides {
2664
+ textH1Bold: true;
2665
+ textH2Medium: true;
2666
+ textH3Medium: true;
2667
+ textB1Regular: true;
2668
+ textB2SemiBold: true;
2669
+ textB3Regular: true;
2670
+ textL1Bold: true;
2671
+ textL2Regular: true;
2672
+ textC1Regular: true;
2673
+ textC2Regular: true;
2674
+ }
2675
+ }
2676
+ declare const typography: (mode: PaletteMode) => TypographyOptions;
2677
+
2678
2678
  declare const componentIcon: ({ kind, model, color }: {
2679
2679
  kind: string;
2680
2680
  model: string;