@xyo-network/react-shared 6.1.3 → 6.2.0

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.
@@ -1,6 +1,7 @@
1
+ import type { Hash } from '@xylabs/hex';
1
2
  import { type Payload } from '@xyo-network/payload-model';
2
- export declare const usePayloadHash: <TPayload extends Payload>(payload: TPayload | undefined | null) => Lowercase<string> | undefined;
3
- export declare const usePayloadDataHash: <TPayload extends Payload>(payload: TPayload | undefined | null) => Lowercase<string> | undefined;
4
- export declare const usePayloadRootHash: <TPayload extends Payload>(payload: TPayload | undefined | null) => Lowercase<string> | undefined;
5
- export declare const usePayloadHashes: <TPayload extends Payload>(payloads: TPayload[] | undefined | null) => [TPayload, Lowercase<string>][] | undefined;
3
+ export declare const usePayloadHash: <TPayload extends Payload>(payload: TPayload | undefined | null) => Hash | undefined;
4
+ export declare const usePayloadDataHash: <TPayload extends Payload>(payload: TPayload | undefined | null) => Hash | undefined;
5
+ export declare const usePayloadRootHash: <TPayload extends Payload>(payload: TPayload | undefined | null) => Hash | undefined;
6
+ export declare const usePayloadHashes: <TPayload extends Payload>(payloads: TPayload[] | undefined | null) => [TPayload, Hash][] | undefined;
6
7
  //# sourceMappingURL=usePayloadHash.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"usePayloadHash.d.ts","sourceRoot":"","sources":["../../../../src/hooks/payload/usePayloadHash.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAEzD,eAAO,MAAM,cAAc,GAAI,QAAQ,SAAS,OAAO,EAAE,SAAS,QAAQ,GAAG,SAAS,GAAG,IAAI,kCAE5F,CAAA;AAED,eAAO,MAAM,kBAAkB,GAAI,QAAQ,SAAS,OAAO,EAAE,SAAS,QAAQ,GAAG,SAAS,GAAG,IAAI,kCAEhG,CAAA;AAED,eAAO,MAAM,kBAAkB,GAAI,QAAQ,SAAS,OAAO,EAAE,SAAS,QAAQ,GAAG,SAAS,GAAG,IAAI,kCAEhG,CAAA;AAED,eAAO,MAAM,gBAAgB,GAAI,QAAQ,SAAS,OAAO,EAAE,UAAU,QAAQ,EAAE,GAAG,SAAS,GAAG,IAAI,gDAQjG,CAAA"}
1
+ {"version":3,"file":"usePayloadHash.d.ts","sourceRoot":"","sources":["../../../../src/hooks/payload/usePayloadHash.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAGvC,OAAO,EAAE,KAAK,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAEzD,eAAO,MAAM,cAAc,GAAI,QAAQ,SAAS,OAAO,EAAE,SAAS,QAAQ,GAAG,SAAS,GAAG,IAAI,qBAE5F,CAAA;AAED,eAAO,MAAM,kBAAkB,GAAI,QAAQ,SAAS,OAAO,EAAE,SAAS,QAAQ,GAAG,SAAS,GAAG,IAAI,qBAEhG,CAAA;AAED,eAAO,MAAM,kBAAkB,GAAI,QAAQ,SAAS,OAAO,EAAE,SAAS,QAAQ,GAAG,SAAS,GAAG,IAAI,qBAEhG,CAAA;AAED,eAAO,MAAM,gBAAgB,GAAI,QAAQ,SAAS,OAAO,EAAE,UAAU,QAAQ,EAAE,GAAG,SAAS,GAAG,IAAI,mCAQjG,CAAA"}
@@ -1,382 +1,7 @@
1
- import { TypographyProps, PopoverProps, StandardTextFieldProps, FormControlProps, InputAdornmentProps, BoxProps, TypographyTypeMap, StackProps, ListItemButtonProps, AlertProps, TableCellProps, AvatarProps, AvatarGroupProps, PaperProps, CardHeaderProps, SvgIconProps } from '@mui/material';
2
- export { useMediaQuery } from '@mui/material';
3
- import * as React from 'react';
4
- import React__default, { ReactElement, PropsWithChildren, ReactNode, Dispatch, SetStateAction, Context, CSSProperties, ForwardedRef } from 'react';
5
- import { FlexBoxProps } from '@xylabs/react-flexbox';
6
- import * as react_jsx_runtime from 'react/jsx-runtime';
7
- import { To, NavigateOptions } from 'react-router-dom';
8
- import { Hash } from '@xylabs/hex';
9
- import * as _xylabs_react_shared from '@xylabs/react-shared';
10
- import { EmptyObject, ContextExState, ContextExProviderProps } from '@xylabs/react-shared';
11
- import { Payload } from '@xyo-network/payload-model';
12
- import { BoundWitness } from '@xyo-network/boundwitness-model';
13
-
14
- declare const Ampersand: React__default.FC<TypographyProps>;
15
-
16
- interface BasicHeroProps extends FlexBoxProps {
17
- backgroundColor?: string;
18
- backgroundImage?: string;
19
- button1Href?: string;
20
- button1Text?: string;
21
- button1To?: string;
22
- button2Href?: string;
23
- button2Text?: string;
24
- button2To?: string;
25
- desc: string;
26
- gradientTitle?: string;
27
- heroImage?: string;
28
- subLinkIcon?: ReactElement;
29
- subLinkPath?: string;
30
- subLinkText1?: string;
31
- subLinkText2?: string;
32
- sx?: Record<string, string>;
33
- textColor?: string;
34
- title: string;
35
- title2?: string;
36
- }
37
- declare const BasicHero: React__default.FC<BasicHeroProps>;
38
-
39
- interface FixedPointPopoverProps extends PopoverProps {
40
- fixedPoint?: number;
41
- minFixedPoint?: number;
42
- onFixedPointChange?: (value: number) => void;
43
- }
44
- declare const FixedPointPopover: React__default.FC<FixedPointPopoverProps>;
45
-
46
- interface BigIntTextFieldProps extends StandardTextFieldProps {
47
- defaultFixedPoint?: number;
48
- defaultRawValue?: string;
49
- hideAdornment?: boolean;
50
- onChangeFixedPoint?: (value?: bigint) => void;
51
- resetValue?: number;
52
- }
53
- declare const BigIntTextField: React__default.FC<BigIntTextFieldProps>;
54
- interface InputWithFormControlProps extends FormControlProps {
55
- textFieldProps?: BigIntTextFieldProps;
56
- }
57
- declare const WithFormControl: React__default.FC<InputWithFormControlProps>;
58
-
59
- declare const BigIntInput: {
60
- TextField: React.FC<BigIntTextFieldProps>;
61
- WithFormControl: React.FC<InputWithFormControlProps>;
62
- };
63
-
64
- interface FixedPointInputAdornmentProps extends InputAdornmentProps {
65
- fixedPoint?: number;
66
- minFixedPoint?: number;
67
- onFixedPointChange?: (value: number) => void;
68
- }
69
- declare const FixedPointInputAdornment: React__default.FC<FixedPointInputAdornmentProps>;
70
-
71
- interface EllipsizeRootProps extends BoxProps {
72
- beforeLineHeight?: string | number;
73
- }
74
- type TypographyWithComponentProps<D extends React__default.ElementType = TypographyTypeMap['defaultComponent'], P = {}> = TypographyProps<D, P> & {
75
- ellipsisPosition?: 'start' | 'end';
76
- };
77
- interface EllipsizeBoxProps extends BoxProps {
78
- beforeLineHeight?: number | string;
79
- disableSharedRef?: boolean;
80
- ellipsisPosition?: 'start' | 'end';
81
- innerWrapProps?: BoxProps;
82
- typographyProps?: TypographyWithComponentProps;
83
- }
84
- declare const EllipsizeBox: {
85
- ({ ref, innerWrapProps, children, ellipsisPosition, disableSharedRef, typographyProps, ...props }: PropsWithChildren<EllipsizeBoxProps>): react_jsx_runtime.JSX.Element;
86
- displayName: string;
87
- };
88
-
89
- interface LabeledTextFieldWrapperProps extends StackProps {
90
- label: string;
91
- }
92
- declare const LabeledTextFieldWrapper: React__default.FC<LabeledTextFieldWrapperProps>;
93
-
94
- interface ListItemButtonExProps extends ListItemButtonProps {
95
- target?: string;
96
- to?: To;
97
- toOptions?: NavigateOptions;
98
- }
99
- declare const ListItemButtonExTo: React__default.FC<ListItemButtonExProps>;
100
- declare const ListItemButtonEx: React__default.FC<ListItemButtonExProps>;
101
-
102
- interface LoadResultProps<T> {
103
- /** @deprecated - use error prop */
104
- apiError?: Error;
105
- /** Defer error handling to the children and load them */
106
- error?: boolean;
107
- notFound: boolean;
108
- searchResult: T | undefined;
109
- }
110
- declare function LoadResult<T>(props: PropsWithChildren<LoadResultProps<T>>): react_jsx_runtime.JSX.Element;
111
-
112
- /** @deprecated use from @@xylabs/react-shared instead */
113
- declare const NotFound: React__default.FC<FlexBoxProps>;
114
-
115
- declare const Pipe: React__default.FC<TypographyProps>;
116
-
117
- interface PayloadDataMissingProps extends AlertProps {
118
- alertBody?: string;
119
- }
120
- declare const PayloadDataMissing: React__default.FC<PayloadDataMissingProps>;
121
-
122
- declare const ScrollTableOnSm: React__default.FC<PropsWithChildren>;
123
- //# sourceMappingURL=ScrollTableOnSm.d.ts.map
124
-
125
- declare const SectionSpacingRow: {
126
- ({ ref, children, sx, ...props }: FlexBoxProps): react_jsx_runtime.JSX.Element;
127
- displayName: string;
128
- };
129
-
130
- interface EllipsisTableCellProps extends TableCellProps {
131
- href?: string;
132
- link?: boolean;
133
- to?: To;
134
- value?: string;
135
- /**
136
- * Width of the table cell.
137
- *
138
- * Note: When using percentages, this value can be different than what you expect
139
- * if used on a cell that is not the first cell in the first row.
140
- */
141
- width?: string | number;
142
- }
143
- declare const EllipsisTableCellWithRef: {
144
- ({ ref, children, href, link, to, value, ...props }: EllipsisTableCellProps): react_jsx_runtime.JSX.Element;
145
- displayName: string;
146
- };
147
- declare const EllipsisTableCell: {
148
- ({ ref, children, href, link, to, value, ...props }: EllipsisTableCellProps): react_jsx_runtime.JSX.Element;
149
- displayName: string;
150
- };
151
-
152
- interface AddressTableCellProps extends EllipsisTableCellProps {
153
- /** @deprecated - archives are no longer supported */
154
- archive?: string;
155
- /** @deprecated - use events instead */
156
- exploreDomain?: string;
157
- link?: boolean;
158
- }
159
- declare const AddressTableCell: {
160
- ({ ref, value, archive, exploreDomain, link, ...props }: AddressTableCellProps): react_jsx_runtime.JSX.Element;
161
- displayName: string;
162
- };
163
-
164
- interface HashTableCellProps extends EllipsisTableCellProps {
165
- /** @deprecated - archives are no longer used */
166
- archive?: string;
167
- dataType?: 'block' | 'payload';
168
- /** @deprecated - use event listeners instead of link building via props */
169
- exploreDomain?: string;
170
- /** @deprecated - use event listeners instead of link building via props */
171
- network?: string;
172
- /** @deprecated - onClick instead */
173
- onHashClick?: (value: Hash) => void;
174
- }
175
- declare const HashTableCell: React__default.FC<HashTableCellProps>;
176
-
177
- declare const ThemeTokenAvatar: React__default.FC<AvatarProps>;
178
-
179
- interface ThemeTokenAvatarGroupProps extends AvatarGroupProps {
180
- images?: string[];
181
- }
182
- declare const ThemeTokenAvatarGroup: React__default.FC<ThemeTokenAvatarGroupProps>;
183
-
184
- interface TokenBarProps extends PaperProps {
185
- text1?: ReactNode;
186
- text1Props?: TypographyProps;
187
- text1Suffix?: ReactNode;
188
- text2?: ReactNode;
189
- text2Props?: TypographyProps;
190
- text2Suffix?: ReactNode;
191
- }
192
- declare const TokenBar: React__default.FC<TokenBarProps>;
193
-
194
- interface TokenData {
195
- coinmarketcapLink: string;
196
- etherscanLink: string;
197
- icon: string;
198
- readableName: string;
199
- tokenSymbol: string;
200
- uniqueTokenId: string;
201
- }
202
- declare const TokenData: TokenData[];
203
-
204
- declare const getTokenData: (symbols: (string | undefined)[]) => TokenData[];
205
-
206
- interface TokenSummaryProps extends CardHeaderProps {
207
- icon?: string;
208
- imgBgProps?: AvatarProps;
209
- symbol?: string;
210
- symbolElement?: ReactNode;
211
- }
212
- declare const TokenSummary: React__default.FC<TokenSummaryProps>;
213
-
214
- interface TypographyExProps extends TypographyProps {
215
- gradient?: 'text';
216
- }
217
- declare const TypographyEx: React__default.FC<TypographyExProps>;
218
-
219
- declare const ResolvedDivinerContext: <T extends EmptyObject>() => React.Context<_xylabs_react_shared.ContextExState<T>>;
220
-
221
- type ResolvedDivinerState<T> = ContextExState<{
222
- diviner?: T;
223
- setDiviner?: Dispatch<SetStateAction<T | undefined>>;
224
- }>;
225
-
226
- interface DivinerProviderProps<D> extends ContextExProviderProps, PropsWithChildren {
227
- context: Context<ResolvedDivinerState<D>>;
228
- diviner?: D;
229
- }
230
- /** Exposes a resolved diviner */
231
- declare const ResolvedDivinerProvider: <D>({ diviner: divinerProp, required, children, context: Context, }: DivinerProviderProps<D>) => react_jsx_runtime.JSX.Element;
232
-
233
- declare const ListModeContext: React.Context<({
234
- listMode: ListMode;
235
- setListMode?: React.Dispatch<ListMode>;
236
- } & {
237
- provided: true;
238
- }) | (_xylabs_react_shared.FixedValues<_xylabs_react_shared.ProvidedContextExState<{
239
- listMode: ListMode;
240
- setListMode?: React.Dispatch<ListMode>;
241
- }>, never> & {
242
- provided: false;
243
- }) | (_xylabs_react_shared.FixedValues<_xylabs_react_shared.NotProvidedContextExState<{
244
- listMode: ListMode;
245
- setListMode?: React.Dispatch<ListMode>;
246
- }>, never> & {
247
- provided: false;
248
- })>;
249
-
250
- type ListMode = 'table' | 'grid' | 'default';
251
-
252
- interface ListModeProviderProps {
253
- defaultListMode?: ListMode;
254
- }
255
- declare const ListModeProvider: React__default.FC<PropsWithChildren<ListModeProviderProps>>;
256
-
257
- type ListModeContextState = ContextExState<{
258
- listMode: ListMode;
259
- setListMode?: Dispatch<ListMode>;
260
- }>;
261
-
262
- declare const useListMode: (required?: boolean) => Omit<{
263
- listMode: ListMode;
264
- setListMode?: React.Dispatch<ListMode>;
265
- } & {
266
- provided: true;
267
- }, "provided"> | Omit<_xylabs_react_shared.NotProvidedContextExState<ListModeContextState>, "provided">;
268
-
269
- interface GradientStyles {
270
- background: CSSProperties;
271
- border: CSSProperties;
272
- heading: CSSProperties;
273
- }
274
- declare const colorfulGradientLightMode: () => {
275
- background: {
276
- backgroundImage: string;
277
- };
278
- border: {
279
- borderImage: string;
280
- borderImageSlice: number;
281
- borderImageSource: string;
282
- borderRadius: number;
283
- borderStyle: string;
284
- borderWidth: string;
285
- };
286
- heading: {
287
- WebkitBackgroundClip: string;
288
- WebkitTextFillColor: string;
289
- background: string;
290
- display: string;
291
- };
292
- };
293
- declare const colorfulGradientDarkMode: () => {
294
- background: {
295
- backgroundImage: string;
296
- };
297
- border: {
298
- borderImage: string;
299
- borderImageSlice: number;
300
- borderImageSource: string;
301
- borderRadius: number;
302
- borderStyle: string;
303
- borderWidth: string;
304
- };
305
- heading: {
306
- WebkitBackgroundClip: string;
307
- WebkitTextFillColor: string;
308
- background: string;
309
- display: string;
310
- };
311
- };
312
- declare const useGradientStyles: () => {
313
- background: {
314
- backgroundImage: string;
315
- };
316
- border: {
317
- borderImage: string;
318
- borderImageSlice: number;
319
- borderImageSource: string;
320
- borderRadius: number;
321
- borderStyle: string;
322
- borderWidth: string;
323
- };
324
- heading: {
325
- WebkitBackgroundClip: string;
326
- WebkitTextFillColor: string;
327
- background: string;
328
- display: string;
329
- };
330
- };
331
-
332
- type ValidatedResponse<T extends Payload = Payload> = {
333
- errors?: Error[];
334
- payload?: T;
335
- };
336
-
337
- declare const useValidateBoundWitness: (input?: string) => ValidatedResponse<BoundWitness>;
338
-
339
- declare const usePayloadHash: <TPayload extends Payload>(payload: TPayload | undefined | null) => Lowercase<string> | undefined;
340
- declare const usePayloadDataHash: <TPayload extends Payload>(payload: TPayload | undefined | null) => Lowercase<string> | undefined;
341
- declare const usePayloadRootHash: <TPayload extends Payload>(payload: TPayload | undefined | null) => Lowercase<string> | undefined;
342
- declare const usePayloadHashes: <TPayload extends Payload>(payloads: TPayload[] | undefined | null) => [TPayload, Lowercase<string>][] | undefined;
343
-
344
- declare const usePayloadValidate: <TPayload extends Payload>(input?: string) => ValidatedResponse;
345
-
346
- declare const useDataState: <T>(defaultValue: T | undefined) => [T | undefined, Dispatch<SetStateAction<T | undefined>>];
347
-
348
- declare const useShareForwardedRef: <T>(forwardedRef: ForwardedRef<T> | null | undefined, refresh?: number) => React.RefObject<T | null>;
349
-
350
- /**
351
- * @deprecated use from @xylabs/with instead
352
- * */
353
- declare const assertDefinedEx: <T>(expr?: T | null, message?: string) => T;
354
-
355
- declare const parseMeausureString: (measure?: string, absolute?: number) => number | undefined;
356
- declare const parsePadding: (padding: string) => {
357
- bottom: string;
358
- left: string;
359
- right: string;
360
- top: string;
361
- } | {
362
- bottom: string;
363
- right: string;
364
- top: string;
365
- left?: undefined;
366
- } | undefined;
367
- declare const getActualPaddingX: (element: HTMLElement) => number;
368
-
369
- type NetworkComponentSlug = 'sentinel' | 'bridge' | 'archivist' | 'diviner' | 'node' | 'witness';
370
- interface NetworkComponentDetails {
371
- icon: (props?: SvgIconProps) => ReactElement;
372
- name: string;
373
- slug: NetworkComponentSlug;
374
- }
375
- declare const networkComponents: NetworkComponentDetails[];
376
- declare const findNetworkComponentIndex: (slug: string) => number;
377
- declare const findNetworkComponent: (slug: string) => NetworkComponentDetails | undefined;
378
-
379
- type SizeProp = 'small' | 'medium' | 'large';
380
-
381
- export { AddressTableCell, Ampersand, BasicHero, BigIntInput, BigIntTextField, EllipsisTableCell, EllipsisTableCellWithRef, EllipsizeBox, FixedPointInputAdornment, FixedPointPopover, HashTableCell, LabeledTextFieldWrapper, ListItemButtonEx, ListItemButtonExTo, ListModeContext, ListModeProvider, LoadResult, NotFound, PayloadDataMissing, Pipe, ResolvedDivinerContext, ResolvedDivinerProvider, ScrollTableOnSm, SectionSpacingRow, ThemeTokenAvatar, ThemeTokenAvatarGroup, TokenBar, TokenData, TokenSummary, TypographyEx, WithFormControl, assertDefinedEx, colorfulGradientDarkMode, colorfulGradientLightMode, findNetworkComponent, findNetworkComponentIndex, getActualPaddingX, getTokenData, networkComponents, parseMeausureString, parsePadding, useDataState, useGradientStyles, useListMode, usePayloadDataHash, usePayloadHash, usePayloadHashes, usePayloadRootHash, usePayloadValidate, useShareForwardedRef, useValidateBoundWitness };
382
- export type { AddressTableCellProps, BasicHeroProps, BigIntTextFieldProps, DivinerProviderProps, EllipsisTableCellProps, EllipsizeBoxProps, EllipsizeRootProps, FixedPointInputAdornmentProps, FixedPointPopoverProps, GradientStyles, HashTableCellProps, InputWithFormControlProps, LabeledTextFieldWrapperProps, ListItemButtonExProps, ListMode, ListModeContextState, ListModeProviderProps, LoadResultProps, NetworkComponentDetails, NetworkComponentSlug, PayloadDataMissingProps, ResolvedDivinerState, SizeProp, ThemeTokenAvatarGroupProps, TokenBarProps, TokenSummaryProps, TypographyExProps, TypographyWithComponentProps, ValidatedResponse };
1
+ export * from './components/index.ts';
2
+ export * from './contexts/index.ts';
3
+ export * from './hooks/index.ts';
4
+ export * from './lib/index.ts';
5
+ export * from './models/index.ts';
6
+ export * from './SizeProp.ts';
7
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/react-shared",
3
- "version": "6.1.3",
3
+ "version": "6.2.0",
4
4
  "description": "Common React library for all XYO projects that use React",
5
5
  "keywords": [
6
6
  "xyo",
@@ -39,34 +39,34 @@
39
39
  "module": "dist/browser/index.mjs",
40
40
  "types": "dist/browser/index.d.ts",
41
41
  "dependencies": {
42
- "@xylabs/assert": "^4.13.21",
43
- "@xylabs/decimal-precision": "^4.13.21",
44
- "@xylabs/hex": "^4.13.21",
45
- "@xylabs/react-button": "^6.3.13",
46
- "@xylabs/react-flexbox": "^6.3.13",
47
- "@xylabs/react-hooks": "^6.3.13",
48
- "@xylabs/react-link": "^6.3.13",
49
- "@xylabs/react-promise": "^6.3.13",
50
- "@xylabs/react-shared": "^6.3.13",
51
- "@xylabs/react-theme": "^6.3.13",
52
- "@xyo-network/boundwitness-model": "^4.1.4",
53
- "@xyo-network/boundwitness-validator": "^4.1.4",
54
- "@xyo-network/payload-builder": "^4.1.4",
55
- "@xyo-network/payload-model": "^4.1.4",
56
- "react-router-dom": "^7.7.0"
42
+ "@xylabs/assert": "^4.15.0",
43
+ "@xylabs/decimal-precision": "^4.15.0",
44
+ "@xylabs/hex": "^4.15.0",
45
+ "@xylabs/react-button": "^6.4.0",
46
+ "@xylabs/react-flexbox": "^6.4.0",
47
+ "@xylabs/react-hooks": "^6.4.0",
48
+ "@xylabs/react-link": "^6.4.0",
49
+ "@xylabs/react-promise": "^6.4.0",
50
+ "@xylabs/react-shared": "^6.4.0",
51
+ "@xylabs/react-theme": "^6.4.0",
52
+ "@xyo-network/boundwitness-model": "^4.3.0",
53
+ "@xyo-network/boundwitness-validator": "^4.3.0",
54
+ "@xyo-network/payload-builder": "^4.3.0",
55
+ "@xyo-network/payload-model": "^4.3.0",
56
+ "react-router-dom": "^7.7.1"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@mui/icons-material": "^7.2.0",
60
60
  "@mui/material": "^7.2.0",
61
- "@storybook/react-vite": "^9.0.17",
61
+ "@storybook/react-vite": "^9.0.18",
62
62
  "@types/react": "^19.1.8",
63
- "@xylabs/react-appbar": "^6.3.13",
64
- "@xylabs/react-quick-tip-button": "^6.3.13",
65
- "@xylabs/ts-scripts-yarn3": "next",
66
- "@xylabs/tsconfig-react": "next",
67
- "react": "^19.1.0",
68
- "react-dom": "^19.1.0",
69
- "storybook": "^9.0.17",
63
+ "@xylabs/react-appbar": "^6.4.0",
64
+ "@xylabs/react-quick-tip-button": "^6.4.0",
65
+ "@xylabs/ts-scripts-yarn3": "^7.0.1",
66
+ "@xylabs/tsconfig-react": "^7.0.1",
67
+ "react": "^19.1.1",
68
+ "react-dom": "^19.1.1",
69
+ "storybook": "^9.0.18",
70
70
  "typescript": "^5.8.3"
71
71
  },
72
72
  "peerDependencies": {
package/src/global.d.ts CHANGED
@@ -1 +1 @@
1
- import type {} from '@mui/material/themeCssVarsAugmentation'
1
+ import '@mui/material/themeCssVarsAugmentation'