@metamask-previews/design-system-shared 0.24.0-preview.25db973 → 0.24.0-preview.688b428f

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 (39) hide show
  1. package/dist/contexts/PureBlack/PureBlack.context.cjs +9 -0
  2. package/dist/contexts/PureBlack/PureBlack.context.cjs.map +1 -0
  3. package/dist/contexts/PureBlack/PureBlack.context.d.cts +10 -0
  4. package/dist/contexts/PureBlack/PureBlack.context.d.cts.map +1 -0
  5. package/dist/contexts/PureBlack/PureBlack.context.d.mts +10 -0
  6. package/dist/contexts/PureBlack/PureBlack.context.d.mts.map +1 -0
  7. package/dist/contexts/PureBlack/PureBlack.context.mjs +6 -0
  8. package/dist/contexts/PureBlack/PureBlack.context.mjs.map +1 -0
  9. package/dist/contexts/PureBlack/index.cjs +6 -0
  10. package/dist/contexts/PureBlack/index.cjs.map +1 -0
  11. package/dist/contexts/PureBlack/index.d.cts +2 -0
  12. package/dist/contexts/PureBlack/index.d.cts.map +1 -0
  13. package/dist/contexts/PureBlack/index.d.mts +2 -0
  14. package/dist/contexts/PureBlack/index.d.mts.map +1 -0
  15. package/dist/contexts/PureBlack/index.mjs +2 -0
  16. package/dist/contexts/PureBlack/index.mjs.map +1 -0
  17. package/dist/index.cjs +4 -1
  18. package/dist/index.cjs.map +1 -1
  19. package/dist/index.d.cts +1 -0
  20. package/dist/index.d.cts.map +1 -1
  21. package/dist/index.d.mts +1 -0
  22. package/dist/index.d.mts.map +1 -1
  23. package/dist/index.mjs +2 -0
  24. package/dist/index.mjs.map +1 -1
  25. package/dist/types/ButtonIcon/ButtonIcon.types.cjs +4 -0
  26. package/dist/types/ButtonIcon/ButtonIcon.types.cjs.map +1 -1
  27. package/dist/types/ButtonIcon/ButtonIcon.types.d.cts +4 -0
  28. package/dist/types/ButtonIcon/ButtonIcon.types.d.cts.map +1 -1
  29. package/dist/types/ButtonIcon/ButtonIcon.types.d.mts +4 -0
  30. package/dist/types/ButtonIcon/ButtonIcon.types.d.mts.map +1 -1
  31. package/dist/types/ButtonIcon/ButtonIcon.types.mjs +4 -0
  32. package/dist/types/ButtonIcon/ButtonIcon.types.mjs.map +1 -1
  33. package/dist/types/SectionHeader/SectionHeader.types.cjs.map +1 -1
  34. package/dist/types/SectionHeader/SectionHeader.types.d.cts +5 -0
  35. package/dist/types/SectionHeader/SectionHeader.types.d.cts.map +1 -1
  36. package/dist/types/SectionHeader/SectionHeader.types.d.mts +5 -0
  37. package/dist/types/SectionHeader/SectionHeader.types.d.mts.map +1 -1
  38. package/dist/types/SectionHeader/SectionHeader.types.mjs.map +1 -1
  39. package/package.json +2 -2
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PureBlackContext = void 0;
4
+ const react_1 = require("react");
5
+ exports.PureBlackContext = (0, react_1.createContext)({
6
+ isPureBlack: false,
7
+ });
8
+ exports.PureBlackContext.displayName = 'PureBlackContext';
9
+ //# sourceMappingURL=PureBlack.context.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PureBlack.context.cjs","sourceRoot":"","sources":["../../../src/contexts/PureBlack/PureBlack.context.ts"],"names":[],"mappings":";;;AAAA,iCAAsC;AAYzB,QAAA,gBAAgB,GAAG,IAAA,qBAAa,EAAwB;IACnE,WAAW,EAAE,KAAK;CACnB,CAAC,CAAC;AAEH,wBAAgB,CAAC,WAAW,GAAG,kBAAkB,CAAC","sourcesContent":["import { createContext } from 'react';\nimport type { ReactNode } from 'react';\n\nexport type PureBlackContextValue = {\n isPureBlack: boolean;\n};\n\nexport type PureBlackProviderProps = {\n children: ReactNode;\n isPureBlack?: boolean;\n};\n\nexport const PureBlackContext = createContext<PureBlackContextValue>({\n isPureBlack: false,\n});\n\nPureBlackContext.displayName = 'PureBlackContext';\n"]}
@@ -0,0 +1,10 @@
1
+ import type { ReactNode } from "react";
2
+ export type PureBlackContextValue = {
3
+ isPureBlack: boolean;
4
+ };
5
+ export type PureBlackProviderProps = {
6
+ children: ReactNode;
7
+ isPureBlack?: boolean;
8
+ };
9
+ export declare const PureBlackContext: import("react").Context<PureBlackContextValue>;
10
+ //# sourceMappingURL=PureBlack.context.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PureBlack.context.d.cts","sourceRoot":"","sources":["../../../src/contexts/PureBlack/PureBlack.context.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc;AAEvC,MAAM,MAAM,qBAAqB,GAAG;IAClC,WAAW,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG;IACnC,QAAQ,EAAE,SAAS,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC;AAEF,eAAO,MAAM,gBAAgB,gDAE3B,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { ReactNode } from "react";
2
+ export type PureBlackContextValue = {
3
+ isPureBlack: boolean;
4
+ };
5
+ export type PureBlackProviderProps = {
6
+ children: ReactNode;
7
+ isPureBlack?: boolean;
8
+ };
9
+ export declare const PureBlackContext: import("react").Context<PureBlackContextValue>;
10
+ //# sourceMappingURL=PureBlack.context.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PureBlack.context.d.mts","sourceRoot":"","sources":["../../../src/contexts/PureBlack/PureBlack.context.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc;AAEvC,MAAM,MAAM,qBAAqB,GAAG;IAClC,WAAW,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG;IACnC,QAAQ,EAAE,SAAS,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC;AAEF,eAAO,MAAM,gBAAgB,gDAE3B,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { createContext } from "react";
2
+ export const PureBlackContext = createContext({
3
+ isPureBlack: false,
4
+ });
5
+ PureBlackContext.displayName = 'PureBlackContext';
6
+ //# sourceMappingURL=PureBlack.context.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PureBlack.context.mjs","sourceRoot":"","sources":["../../../src/contexts/PureBlack/PureBlack.context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,cAAc;AAYtC,MAAM,CAAC,MAAM,gBAAgB,GAAG,aAAa,CAAwB;IACnE,WAAW,EAAE,KAAK;CACnB,CAAC,CAAC;AAEH,gBAAgB,CAAC,WAAW,GAAG,kBAAkB,CAAC","sourcesContent":["import { createContext } from 'react';\nimport type { ReactNode } from 'react';\n\nexport type PureBlackContextValue = {\n isPureBlack: boolean;\n};\n\nexport type PureBlackProviderProps = {\n children: ReactNode;\n isPureBlack?: boolean;\n};\n\nexport const PureBlackContext = createContext<PureBlackContextValue>({\n isPureBlack: false,\n});\n\nPureBlackContext.displayName = 'PureBlackContext';\n"]}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PureBlackContext = void 0;
4
+ var PureBlack_context_1 = require("./PureBlack.context.cjs");
5
+ Object.defineProperty(exports, "PureBlackContext", { enumerable: true, get: function () { return PureBlack_context_1.PureBlackContext; } });
6
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.cjs","sourceRoot":"","sources":["../../../src/contexts/PureBlack/index.ts"],"names":[],"mappings":";;;AAAA,6DAI6B;AAH3B,qHAAA,gBAAgB,OAAA","sourcesContent":["export {\n PureBlackContext,\n type PureBlackContextValue,\n type PureBlackProviderProps,\n} from './PureBlack.context';\n"]}
@@ -0,0 +1,2 @@
1
+ export { PureBlackContext, type PureBlackContextValue, type PureBlackProviderProps, } from "./PureBlack.context.cjs";
2
+ //# sourceMappingURL=index.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../../../src/contexts/PureBlack/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,GAC5B,gCAA4B"}
@@ -0,0 +1,2 @@
1
+ export { PureBlackContext, type PureBlackContextValue, type PureBlackProviderProps, } from "./PureBlack.context.mjs";
2
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/contexts/PureBlack/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,GAC5B,gCAA4B"}
@@ -0,0 +1,2 @@
1
+ export { PureBlackContext } from "./PureBlack.context.mjs";
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/contexts/PureBlack/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAGjB,gCAA4B","sourcesContent":["export {\n PureBlackContext,\n type PureBlackContextValue,\n type PureBlackProviderProps,\n} from './PureBlack.context';\n"]}
package/dist/index.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AvatarGroupSize = exports.IconSize = exports.IconName = exports.IconColor = exports.BoxBorderColor = exports.BoxBackgroundColor = exports.BoxJustifyContent = exports.BoxAlignItems = exports.BoxFlexWrap = exports.BoxFlexDirection = exports.TagSeverity = exports.AvatarFaviconSize = exports.TextVariant = exports.TextColor = exports.FontWeight = exports.FontStyle = exports.FontFamily = exports.AvatarAccountVariant = exports.AvatarAccountSize = exports.ButtonIconVariant = exports.ButtonIconSize = exports.BadgeWrapperPosition = exports.BadgeWrapperPositionAnchorShape = exports.BannerAlertSeverity = exports.AvatarTokenSize = exports.AvatarNetworkSize = exports.ButtonVariant = exports.ButtonSize = exports.ButtonHeroSize = exports.ButtonBaseSize = exports.KeyValueRowVariant = exports.HeaderSearchVariant = exports.TOAST_VISIBILITY_DURATION = exports.TOAST_ANIMATION_DURATION = exports.IconAlertSeverity = exports.HelpTextSeverity = exports.ContentVerticalAlignment = exports.BadgeStatusSize = exports.BadgeStatusStatus = exports.BadgeCountSize = exports.AvatarIconSeverity = exports.AvatarIconSize = exports.AvatarBaseShape = exports.AvatarBaseSize = exports.mergeTwClassName = exports.generateIconSeed = exports.isEthereumAddress = exports.generateSeedNonEthereum = exports.generateSeedEthereum = exports.extractAccountAddress = void 0;
4
- exports.ToastSeverity = exports.SelectButtonVariant = exports.SelectButtonEndArrow = exports.SelectButtonSize = exports.FilterButtonGroupContext = exports.FilterButtonVariant = exports.SensitiveTextLength = exports.AvatarGroupVariant = void 0;
4
+ exports.ToastSeverity = exports.SelectButtonVariant = exports.SelectButtonEndArrow = exports.SelectButtonSize = exports.PureBlackContext = exports.FilterButtonGroupContext = exports.FilterButtonVariant = exports.SensitiveTextLength = exports.AvatarGroupVariant = void 0;
5
5
  var caip_address_1 = require("./utils/caip-address.cjs");
6
6
  Object.defineProperty(exports, "extractAccountAddress", { enumerable: true, get: function () { return caip_address_1.extractAccountAddress; } });
7
7
  Object.defineProperty(exports, "generateSeedEthereum", { enumerable: true, get: function () { return caip_address_1.generateSeedEthereum; } });
@@ -111,6 +111,9 @@ Object.defineProperty(exports, "FilterButtonVariant", { enumerable: true, get: f
111
111
  // FilterButtonGroup context (ADR-0003 + ADR-0004)
112
112
  var FilterButtonGroup_1 = require("./contexts/FilterButtonGroup/index.cjs");
113
113
  Object.defineProperty(exports, "FilterButtonGroupContext", { enumerable: true, get: function () { return FilterButtonGroup_1.FilterButtonGroupContext; } });
114
+ // PureBlack context
115
+ var PureBlack_1 = require("./contexts/PureBlack/index.cjs");
116
+ Object.defineProperty(exports, "PureBlackContext", { enumerable: true, get: function () { return PureBlack_1.PureBlackContext; } });
114
117
  // SelectButton types (ADR-0003 + ADR-0004)
115
118
  var SelectButton_1 = require("./types/SelectButton/index.cjs");
116
119
  Object.defineProperty(exports, "SelectButtonSize", { enumerable: true, get: function () { return SelectButton_1.SelectButtonSize; } });
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAAA,yDAM8B;AAL5B,qHAAA,qBAAqB,OAAA;AACrB,oHAAA,oBAAoB,OAAA;AACpB,uHAAA,uBAAuB,OAAA;AACvB,iHAAA,iBAAiB,OAAA;AACjB,gHAAA,gBAAgB,OAAA;AAGlB,uEAA+D;AAAtD,uHAAA,gBAAgB,OAAA;AAEzB,yCAAyC;AACzC,2DAI4B;AAH1B,4GAAA,cAAc,OAAA;AACd,6GAAA,eAAe,OAAA;AAIjB,yCAAyC;AACzC,2DAI4B;AAH1B,4GAAA,cAAc,OAAA;AACd,gHAAA,kBAAkB,OAAA;AAIpB,yCAAyC;AACzC,2DAAgF;AAAvE,4GAAA,cAAc,OAAA;AAEvB,0CAA0C;AAC1C,6DAI6B;AAH3B,gHAAA,iBAAiB,OAAA;AACjB,8GAAA,eAAe,OAAA;AAIjB,sCAAsC;AACtC,qDAGyB;AAFvB,mHAAA,wBAAwB,OAAA;AAa1B,uCAAuC;AACvC,uDAA8E;AAArE,4GAAA,gBAAgB,OAAA;AAEzB,wCAAwC;AACxC,yDAG2B;AAFzB,8GAAA,iBAAiB,OAAA;AAUnB,yBAAyB;AACzB,iDAGuB;AAFrB,iHAAA,wBAAwB,OAAA;AACxB,kHAAA,yBAAyB,OAAA;AAqB3B,2CAA2C;AAC3C,+DAK8B;AAJ5B,mHAAA,mBAAmB,OAAA;AASrB,0CAA0C;AAC1C,6DAG6B;AAF3B,iHAAA,kBAAkB,OAAA;AAOpB,yCAAyC;AACzC,2DAK4B;AAJ1B,4GAAA,cAAc,OAAA;AACd,4GAAA,cAAc,OAAA;AACd,wGAAA,UAAU,OAAA;AAIZ,qCAAqC;AACrC,mDAAuE;AAA9D,uGAAA,aAAa,OAAA;AAEtB,4CAA4C;AAC5C,iEAG+B;AAF7B,kHAAA,iBAAiB,OAAA;AAInB,0CAA0C;AAC1C,6DAG6B;AAF3B,8GAAA,eAAe,OAAA;AAOjB,0CAA0C;AAC1C,6DAG6B;AAF3B,kHAAA,mBAAmB,OAAA;AAOrB,2CAA2C;AAC3C,+DAK8B;AAJ5B,+HAAA,+BAA+B,OAAA;AAC/B,oHAAA,oBAAoB,OAAA;AAKtB,yCAAyC;AACzC,2DAI4B;AAH1B,4GAAA,cAAc,OAAA;AACd,+GAAA,iBAAiB,OAAA;AAInB,iEAI+B;AAH7B,kHAAA,iBAAiB,OAAA;AACjB,qHAAA,oBAAoB,OAAA;AAItB,mCAAmC;AACnC,+CAOsB;AANpB,kGAAA,UAAU,OAAA;AACV,iGAAA,SAAS,OAAA;AACT,kGAAA,UAAU,OAAA;AACV,iGAAA,SAAS,OAAA;AACT,mGAAA,WAAW,OAAA;AAab,iCAAiC;AACjC,iEAG+B;AAF7B,kHAAA,iBAAiB,OAAA;AAOnB,kCAAkC;AAClC,6CAA+D;AAAtD,kGAAA,WAAW,OAAA;AAEpB,kCAAkC;AAClC,6CAUqB;AATnB,uGAAA,gBAAgB,OAAA;AAChB,kGAAA,WAAW,OAAA;AACX,oGAAA,aAAa,OAAA;AACb,wGAAA,iBAAiB,OAAA;AACjB,yGAAA,kBAAkB,OAAA;AAClB,qGAAA,cAAc,OAAA;AAMhB,mCAAmC;AACnC,+CAKsB;AAJpB,iGAAA,SAAS,OAAA;AACT,gGAAA,QAAQ,OAAA;AACR,gGAAA,QAAQ,OAAA;AAIV,0CAA0C;AAC1C,6DAI6B;AAH3B,8GAAA,eAAe,OAAA;AACf,iHAAA,kBAAkB,OAAA;AAIpB,4CAA4C;AAC5C,iEAI+B;AAH7B,oHAAA,mBAAmB,OAAA;AAKrB,2CAA2C;AAC3C,+DAG8B;AAF5B,mHAAA,mBAAmB,OAAA;AAarB,kDAAkD;AAClD,4EAGsC;AAFpC,6HAAA,wBAAwB,OAAA;AAI1B,2CAA2C;AAC3C,+DAK8B;AAJ5B,gHAAA,gBAAgB,OAAA;AAChB,oHAAA,oBAAoB,OAAA;AACpB,mHAAA,mBAAmB,OAAA;AAOrB,oCAAoC;AACpC,iDAAqE;AAA5D,sGAAA,aAAa,OAAA","sourcesContent":["export {\n extractAccountAddress,\n generateSeedEthereum,\n generateSeedNonEthereum,\n isEthereumAddress,\n generateIconSeed,\n} from './utils/caip-address';\n\nexport { mergeTwClassName } from './utils/merge-tw-class-name';\n\n// AvatarBase types (ADR-0003 + ADR-0004)\nexport {\n AvatarBaseSize,\n AvatarBaseShape,\n type AvatarBasePropsShared,\n} from './types/AvatarBase';\n\n// AvatarIcon types (ADR-0003 + ADR-0004)\nexport {\n AvatarIconSize,\n AvatarIconSeverity,\n type AvatarIconPropsShared,\n} from './types/AvatarIcon';\n\n// BadgeCount types (ADR-0003 + ADR-0004)\nexport { BadgeCountSize, type BadgeCountPropsShared } from './types/BadgeCount';\n\n// BadgeStatus types (ADR-0003 + ADR-0004)\nexport {\n BadgeStatusStatus,\n BadgeStatusSize,\n type BadgeStatusPropsShared,\n} from './types/BadgeStatus';\n\n// Content types (ADR-0003 + ADR-0004)\nexport {\n ContentVerticalAlignment,\n type ContentPropsShared,\n} from './types/Content';\n\n// ListItem types (ADR-0004)\nexport { type ListItemPropsShared } from './types/ListItem';\n\n// ListItemSelect types (ADR-0004)\nexport { type ListItemSelectPropsShared } from './types/ListItemSelect';\n\n// ListItemMultiSelect types (ADR-0004)\nexport { type ListItemMultiSelectPropsShared } from './types/ListItemMultiSelect';\n\n// HelpText types (ADR-0003 + ADR-0004)\nexport { HelpTextSeverity, type HelpTextPropsShared } from './types/HelpText';\n\n// IconAlert types (ADR-0003 + ADR-0004)\nexport {\n IconAlertSeverity,\n type IconAlertPropsShared,\n} from './types/IconAlert';\n\n// BannerBase types (ADR-0004)\nexport { type BannerBasePropsShared } from './types/BannerBase';\n\n// TextOrChildren types (ADR-0004)\nexport { type TextOrChildrenPropsShared } from './types/TextOrChildren';\n\n// Toast types (ADR-0004)\nexport {\n TOAST_ANIMATION_DURATION,\n TOAST_VISIBILITY_DURATION,\n} from './types/Toast';\n\n// TitleHub types (ADR-0004)\nexport { type TitleHubPropsShared } from './types/TitleHub';\n\n// TitleAlert types (ADR-0004)\nexport { type TitleAlertPropsShared } from './types/TitleAlert';\n\n// TitleStandard types (ADR-0004)\nexport { type TitleStandardPropsShared } from './types/TitleStandard';\n\n// TitleSubpage types (ADR-0004)\nexport { type TitleSubpagePropsShared } from './types/TitleSubpage';\n\n// BoxColumn types (ADR-0004)\nexport { type BoxColumnPropsShared } from './types/BoxColumn';\n\n// BoxRow types (ADR-0004)\nexport { type BoxRowPropsShared } from './types/BoxRow';\n\n// HeaderSearch types (ADR-0003 + ADR-0004)\nexport {\n HeaderSearchVariant,\n type HeaderSearchInlinePropsShared,\n type HeaderSearchPropsShared,\n type HeaderSearchScreenPropsShared,\n} from './types/HeaderSearch';\n\n// KeyValueColumn types (ADR-0004)\nexport { type KeyValueColumnPropsShared } from './types/KeyValueColumn';\n\n// KeyValueRow types (ADR-0003 + ADR-0004)\nexport {\n KeyValueRowVariant,\n type KeyValueRowPropsShared,\n} from './types/KeyValueRow';\n\n// ButtonFilter types (ADR-0004)\nexport { type ButtonFilterPropsShared } from './types/ButtonFilter';\n\n// ButtonBase types (ADR-0003 + ADR-0004)\nexport {\n ButtonBaseSize,\n ButtonHeroSize,\n ButtonSize,\n type ButtonBasePropsShared,\n} from './types/ButtonBase';\n\n// Button types (ADR-0003 + ADR-0004)\nexport { ButtonVariant, type ButtonPropsShared } from './types/Button';\n\n// AvatarNetwork types (ADR-0003 + ADR-0004)\nexport {\n AvatarNetworkSize,\n type AvatarNetworkPropsShared,\n} from './types/AvatarNetwork';\n\n// AvatarToken types (ADR-0003 + ADR-0004)\nexport {\n AvatarTokenSize,\n type AvatarTokenPropsShared,\n} from './types/AvatarToken';\n\n// BadgeIcon types (ADR-0004)\nexport { type BadgeIconPropsShared } from './types/BadgeIcon';\n\n// BannerAlert types (ADR-0003 + ADR-0004)\nexport {\n BannerAlertSeverity,\n type BannerAlertPropsShared,\n} from './types/BannerAlert';\n\n// BadgeNetwork types (ADR-0004)\nexport { type BadgeNetworkPropsShared } from './types/BadgeNetwork';\n\n// BadgeWrapper types (ADR-0003 + ADR-0004)\nexport {\n BadgeWrapperPositionAnchorShape,\n BadgeWrapperPosition,\n type BadgeWrapperCustomPosition,\n type BadgeWrapperPropsShared,\n} from './types/BadgeWrapper';\n\n// ButtonIcon types (ADR-0003 + ADR-0004)\nexport {\n ButtonIconSize,\n ButtonIconVariant,\n type ButtonIconPropsShared,\n} from './types/ButtonIcon';\n\nexport {\n AvatarAccountSize,\n AvatarAccountVariant,\n type AvatarAccountPropsShared,\n} from './types/AvatarAccount';\n\n// Text types (ADR-0003 + ADR-0004)\nexport {\n FontFamily,\n FontStyle,\n FontWeight,\n TextColor,\n TextVariant,\n type TextPropsShared,\n} from './types/Text';\n\n// TextField types (ADR-0004)\nexport { type TextFieldPropsShared } from './types/TextField';\n\n// TextArea types (ADR-0004)\nexport { type TextAreaPropsShared } from './types/TextArea';\n\n// Input types (ADR-0004)\nexport { type InputPropsShared } from './types/Input';\n\n// AvatarFavicon types (ADR-0004)\nexport {\n AvatarFaviconSize,\n type AvatarFaviconPropsShared,\n} from './types/AvatarFavicon';\n\n// Checkbox types (ADR-0004)\nexport { type CheckboxPropsShared } from './types/Checkbox';\n\n// Tag types (ADR-0003 + ADR-0004)\nexport { TagSeverity, type TagPropsShared } from './types/Tag';\n\n// Box types (ADR-0003 + ADR-0004)\nexport {\n BoxFlexDirection,\n BoxFlexWrap,\n BoxAlignItems,\n BoxJustifyContent,\n BoxBackgroundColor,\n BoxBorderColor,\n type BoxSpacing,\n type BoxBorderWidth,\n type BoxPropsShared,\n} from './types/Box';\n\n// Icon types (ADR-0003 + ADR-0004)\nexport {\n IconColor,\n IconName,\n IconSize,\n type IconPropsShared,\n} from './types/Icon';\n\n// AvatarGroup types (ADR-0003 + ADR-0004)\nexport {\n AvatarGroupSize,\n AvatarGroupVariant,\n type AvatarGroupPropsShared,\n} from './types/AvatarGroup';\n\n// SensitiveText types (ADR-0003 + ADR-0004)\nexport {\n SensitiveTextLength,\n type CustomLength,\n type SensitiveTextPropsShared,\n} from './types/SensitiveText';\n\n// FilterButton types (ADR-0003 + ADR-0004)\nexport {\n FilterButtonVariant,\n type FilterButtonPropsShared,\n} from './types/FilterButton';\n\n// FilterButtonGroup types (ADR-0003 + ADR-0004)\nexport { type FilterButtonGroupPropsShared } from './types/FilterButtonGroup';\n\n// SegmentedControl types (ADR-0004)\nexport { type SegmentedControlPropsShared } from './types/SegmentedControl';\n\n// Switch types (ADR-0004)\nexport { type SwitchPropsShared } from './types/Switch';\n\n// FilterButtonGroup context (ADR-0003 + ADR-0004)\nexport {\n FilterButtonGroupContext,\n type FilterButtonGroupContextValue,\n} from './contexts/FilterButtonGroup';\n\n// SelectButton types (ADR-0003 + ADR-0004)\nexport {\n SelectButtonSize,\n SelectButtonEndArrow,\n SelectButtonVariant,\n type SelectButtonPropsShared,\n} from './types/SelectButton';\n\n// SectionHeader types (ADR-0004)\nexport { type SectionHeaderPropsShared } from './types/SectionHeader';\n\n// Toast types (ADR-0003 + ADR-0004)\nexport { ToastSeverity, type ToastPropsShared } from './types/Toast';\n"]}
1
+ {"version":3,"file":"index.cjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["export {\n extractAccountAddress,\n generateSeedEthereum,\n generateSeedNonEthereum,\n isEthereumAddress,\n generateIconSeed,\n} from './utils/caip-address';\n\nexport { mergeTwClassName } from './utils/merge-tw-class-name';\n\n// AvatarBase types (ADR-0003 + ADR-0004)\nexport {\n AvatarBaseSize,\n AvatarBaseShape,\n type AvatarBasePropsShared,\n} from './types/AvatarBase';\n\n// AvatarIcon types (ADR-0003 + ADR-0004)\nexport {\n AvatarIconSize,\n AvatarIconSeverity,\n type AvatarIconPropsShared,\n} from './types/AvatarIcon';\n\n// BadgeCount types (ADR-0003 + ADR-0004)\nexport { BadgeCountSize, type BadgeCountPropsShared } from './types/BadgeCount';\n\n// BadgeStatus types (ADR-0003 + ADR-0004)\nexport {\n BadgeStatusStatus,\n BadgeStatusSize,\n type BadgeStatusPropsShared,\n} from './types/BadgeStatus';\n\n// Content types (ADR-0003 + ADR-0004)\nexport {\n ContentVerticalAlignment,\n type ContentPropsShared,\n} from './types/Content';\n\n// ListItem types (ADR-0004)\nexport { type ListItemPropsShared } from './types/ListItem';\n\n// ListItemSelect types (ADR-0004)\nexport { type ListItemSelectPropsShared } from './types/ListItemSelect';\n\n// ListItemMultiSelect types (ADR-0004)\nexport { type ListItemMultiSelectPropsShared } from './types/ListItemMultiSelect';\n\n// HelpText types (ADR-0003 + ADR-0004)\nexport { HelpTextSeverity, type HelpTextPropsShared } from './types/HelpText';\n\n// IconAlert types (ADR-0003 + ADR-0004)\nexport {\n IconAlertSeverity,\n type IconAlertPropsShared,\n} from './types/IconAlert';\n\n// BannerBase types (ADR-0004)\nexport { type BannerBasePropsShared } from './types/BannerBase';\n\n// TextOrChildren types (ADR-0004)\nexport { type TextOrChildrenPropsShared } from './types/TextOrChildren';\n\n// Toast types (ADR-0004)\nexport {\n TOAST_ANIMATION_DURATION,\n TOAST_VISIBILITY_DURATION,\n} from './types/Toast';\n\n// TitleHub types (ADR-0004)\nexport { type TitleHubPropsShared } from './types/TitleHub';\n\n// TitleAlert types (ADR-0004)\nexport { type TitleAlertPropsShared } from './types/TitleAlert';\n\n// TitleStandard types (ADR-0004)\nexport { type TitleStandardPropsShared } from './types/TitleStandard';\n\n// TitleSubpage types (ADR-0004)\nexport { type TitleSubpagePropsShared } from './types/TitleSubpage';\n\n// BoxColumn types (ADR-0004)\nexport { type BoxColumnPropsShared } from './types/BoxColumn';\n\n// BoxRow types (ADR-0004)\nexport { type BoxRowPropsShared } from './types/BoxRow';\n\n// HeaderSearch types (ADR-0003 + ADR-0004)\nexport {\n HeaderSearchVariant,\n type HeaderSearchInlinePropsShared,\n type HeaderSearchPropsShared,\n type HeaderSearchScreenPropsShared,\n} from './types/HeaderSearch';\n\n// KeyValueColumn types (ADR-0004)\nexport { type KeyValueColumnPropsShared } from './types/KeyValueColumn';\n\n// KeyValueRow types (ADR-0003 + ADR-0004)\nexport {\n KeyValueRowVariant,\n type KeyValueRowPropsShared,\n} from './types/KeyValueRow';\n\n// ButtonFilter types (ADR-0004)\nexport { type ButtonFilterPropsShared } from './types/ButtonFilter';\n\n// ButtonBase types (ADR-0003 + ADR-0004)\nexport {\n ButtonBaseSize,\n ButtonHeroSize,\n ButtonSize,\n type ButtonBasePropsShared,\n} from './types/ButtonBase';\n\n// Button types (ADR-0003 + ADR-0004)\nexport { ButtonVariant, type ButtonPropsShared } from './types/Button';\n\n// AvatarNetwork types (ADR-0003 + ADR-0004)\nexport {\n AvatarNetworkSize,\n type AvatarNetworkPropsShared,\n} from './types/AvatarNetwork';\n\n// AvatarToken types (ADR-0003 + ADR-0004)\nexport {\n AvatarTokenSize,\n type AvatarTokenPropsShared,\n} from './types/AvatarToken';\n\n// BadgeIcon types (ADR-0004)\nexport { type BadgeIconPropsShared } from './types/BadgeIcon';\n\n// BannerAlert types (ADR-0003 + ADR-0004)\nexport {\n BannerAlertSeverity,\n type BannerAlertPropsShared,\n} from './types/BannerAlert';\n\n// BadgeNetwork types (ADR-0004)\nexport { type BadgeNetworkPropsShared } from './types/BadgeNetwork';\n\n// BadgeWrapper types (ADR-0003 + ADR-0004)\nexport {\n BadgeWrapperPositionAnchorShape,\n BadgeWrapperPosition,\n type BadgeWrapperCustomPosition,\n type BadgeWrapperPropsShared,\n} from './types/BadgeWrapper';\n\n// ButtonIcon types (ADR-0003 + ADR-0004)\nexport {\n ButtonIconSize,\n ButtonIconVariant,\n type ButtonIconPropsShared,\n} from './types/ButtonIcon';\n\nexport {\n AvatarAccountSize,\n AvatarAccountVariant,\n type AvatarAccountPropsShared,\n} from './types/AvatarAccount';\n\n// Text types (ADR-0003 + ADR-0004)\nexport {\n FontFamily,\n FontStyle,\n FontWeight,\n TextColor,\n TextVariant,\n type TextPropsShared,\n} from './types/Text';\n\n// TextField types (ADR-0004)\nexport { type TextFieldPropsShared } from './types/TextField';\n\n// TextArea types (ADR-0004)\nexport { type TextAreaPropsShared } from './types/TextArea';\n\n// Input types (ADR-0004)\nexport { type InputPropsShared } from './types/Input';\n\n// AvatarFavicon types (ADR-0004)\nexport {\n AvatarFaviconSize,\n type AvatarFaviconPropsShared,\n} from './types/AvatarFavicon';\n\n// Checkbox types (ADR-0004)\nexport { type CheckboxPropsShared } from './types/Checkbox';\n\n// Tag types (ADR-0003 + ADR-0004)\nexport { TagSeverity, type TagPropsShared } from './types/Tag';\n\n// Box types (ADR-0003 + ADR-0004)\nexport {\n BoxFlexDirection,\n BoxFlexWrap,\n BoxAlignItems,\n BoxJustifyContent,\n BoxBackgroundColor,\n BoxBorderColor,\n type BoxSpacing,\n type BoxBorderWidth,\n type BoxPropsShared,\n} from './types/Box';\n\n// Icon types (ADR-0003 + ADR-0004)\nexport {\n IconColor,\n IconName,\n IconSize,\n type IconPropsShared,\n} from './types/Icon';\n\n// AvatarGroup types (ADR-0003 + ADR-0004)\nexport {\n AvatarGroupSize,\n AvatarGroupVariant,\n type AvatarGroupPropsShared,\n} from './types/AvatarGroup';\n\n// SensitiveText types (ADR-0003 + ADR-0004)\nexport {\n SensitiveTextLength,\n type CustomLength,\n type SensitiveTextPropsShared,\n} from './types/SensitiveText';\n\n// FilterButton types (ADR-0003 + ADR-0004)\nexport {\n FilterButtonVariant,\n type FilterButtonPropsShared,\n} from './types/FilterButton';\n\n// FilterButtonGroup types (ADR-0003 + ADR-0004)\nexport { type FilterButtonGroupPropsShared } from './types/FilterButtonGroup';\n\n// SegmentedControl types (ADR-0004)\nexport { type SegmentedControlPropsShared } from './types/SegmentedControl';\n\n// Switch types (ADR-0004)\nexport { type SwitchPropsShared } from './types/Switch';\n\n// FilterButtonGroup context (ADR-0003 + ADR-0004)\nexport {\n FilterButtonGroupContext,\n type FilterButtonGroupContextValue,\n} from './contexts/FilterButtonGroup';\n\n// PureBlack context\nexport {\n PureBlackContext,\n type PureBlackContextValue,\n type PureBlackProviderProps,\n} from './contexts/PureBlack';\n\n// SelectButton types (ADR-0003 + ADR-0004)\nexport {\n SelectButtonSize,\n SelectButtonEndArrow,\n SelectButtonVariant,\n type SelectButtonPropsShared,\n} from './types/SelectButton';\n\n// SectionHeader types (ADR-0004)\nexport { type SectionHeaderPropsShared } from './types/SectionHeader';\n\n// Toast types (ADR-0003 + ADR-0004)\nexport { ToastSeverity, type ToastPropsShared } from './types/Toast';\n"]}
package/dist/index.d.cts CHANGED
@@ -49,6 +49,7 @@ export { type FilterButtonGroupPropsShared } from "./types/FilterButtonGroup/ind
49
49
  export { type SegmentedControlPropsShared } from "./types/SegmentedControl/index.cjs";
50
50
  export { type SwitchPropsShared } from "./types/Switch/index.cjs";
51
51
  export { FilterButtonGroupContext, type FilterButtonGroupContextValue, } from "./contexts/FilterButtonGroup/index.cjs";
52
+ export { PureBlackContext, type PureBlackContextValue, type PureBlackProviderProps, } from "./contexts/PureBlack/index.cjs";
52
53
  export { SelectButtonSize, SelectButtonEndArrow, SelectButtonVariant, type SelectButtonPropsShared, } from "./types/SelectButton/index.cjs";
53
54
  export { type SectionHeaderPropsShared } from "./types/SectionHeader/index.cjs";
54
55
  export { ToastSeverity, type ToastPropsShared } from "./types/Toast/index.cjs";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.d.mts CHANGED
@@ -49,6 +49,7 @@ export { type FilterButtonGroupPropsShared } from "./types/FilterButtonGroup/ind
49
49
  export { type SegmentedControlPropsShared } from "./types/SegmentedControl/index.mjs";
50
50
  export { type SwitchPropsShared } from "./types/Switch/index.mjs";
51
51
  export { FilterButtonGroupContext, type FilterButtonGroupContextValue, } from "./contexts/FilterButtonGroup/index.mjs";
52
+ export { PureBlackContext, type PureBlackContextValue, type PureBlackProviderProps, } from "./contexts/PureBlack/index.mjs";
52
53
  export { SelectButtonSize, SelectButtonEndArrow, SelectButtonVariant, type SelectButtonPropsShared, } from "./types/SelectButton/index.mjs";
53
54
  export { type SectionHeaderPropsShared } from "./types/SectionHeader/index.mjs";
54
55
  export { ToastSeverity, type ToastPropsShared } from "./types/Toast/index.mjs";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
package/dist/index.mjs CHANGED
@@ -53,6 +53,8 @@ export { SensitiveTextLength } from "./types/SensitiveText/index.mjs";
53
53
  export { FilterButtonVariant } from "./types/FilterButton/index.mjs";
54
54
  // FilterButtonGroup context (ADR-0003 + ADR-0004)
55
55
  export { FilterButtonGroupContext } from "./contexts/FilterButtonGroup/index.mjs";
56
+ // PureBlack context
57
+ export { PureBlackContext } from "./contexts/PureBlack/index.mjs";
56
58
  // SelectButton types (ADR-0003 + ADR-0004)
57
59
  export { SelectButtonSize, SelectButtonEndArrow, SelectButtonVariant } from "./types/SelectButton/index.mjs";
58
60
  // Toast types (ADR-0003 + ADR-0004)
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,qBAAqB,EACrB,oBAAoB,EACpB,uBAAuB,EACvB,iBAAiB,EACjB,gBAAgB,EACjB,iCAA6B;AAE9B,OAAO,EAAE,gBAAgB,EAAE,wCAAoC;AAE/D,yCAAyC;AACzC,OAAO,EACL,cAAc,EACd,eAAe,EAEhB,qCAA2B;AAE5B,yCAAyC;AACzC,OAAO,EACL,cAAc,EACd,kBAAkB,EAEnB,qCAA2B;AAE5B,yCAAyC;AACzC,OAAO,EAAE,cAAc,EAA8B,qCAA2B;AAEhF,0CAA0C;AAC1C,OAAO,EACL,iBAAiB,EACjB,eAAe,EAEhB,sCAA4B;AAE7B,sCAAsC;AACtC,OAAO,EACL,wBAAwB,EAEzB,kCAAwB;AAWzB,uCAAuC;AACvC,OAAO,EAAE,gBAAgB,EAA4B,mCAAyB;AAE9E,wCAAwC;AACxC,OAAO,EACL,iBAAiB,EAElB,oCAA0B;AAQ3B,yBAAyB;AACzB,OAAO,EACL,wBAAwB,EACxB,yBAAyB,EAC1B,gCAAsB;AAoBvB,2CAA2C;AAC3C,OAAO,EACL,mBAAmB,EAIpB,uCAA6B;AAK9B,0CAA0C;AAC1C,OAAO,EACL,kBAAkB,EAEnB,sCAA4B;AAK7B,yCAAyC;AACzC,OAAO,EACL,cAAc,EACd,cAAc,EACd,UAAU,EAEX,qCAA2B;AAE5B,qCAAqC;AACrC,OAAO,EAAE,aAAa,EAA0B,iCAAuB;AAEvE,4CAA4C;AAC5C,OAAO,EACL,iBAAiB,EAElB,wCAA8B;AAE/B,0CAA0C;AAC1C,OAAO,EACL,eAAe,EAEhB,sCAA4B;AAK7B,0CAA0C;AAC1C,OAAO,EACL,mBAAmB,EAEpB,sCAA4B;AAK7B,2CAA2C;AAC3C,OAAO,EACL,+BAA+B,EAC/B,oBAAoB,EAGrB,uCAA6B;AAE9B,yCAAyC;AACzC,OAAO,EACL,cAAc,EACd,iBAAiB,EAElB,qCAA2B;AAE5B,OAAO,EACL,iBAAiB,EACjB,oBAAoB,EAErB,wCAA8B;AAE/B,mCAAmC;AACnC,OAAO,EACL,UAAU,EACV,SAAS,EACT,UAAU,EACV,SAAS,EACT,WAAW,EAEZ,+BAAqB;AAWtB,iCAAiC;AACjC,OAAO,EACL,iBAAiB,EAElB,wCAA8B;AAK/B,kCAAkC;AAClC,OAAO,EAAE,WAAW,EAAuB,8BAAoB;AAE/D,kCAAkC;AAClC,OAAO,EACL,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,kBAAkB,EAClB,cAAc,EAIf,8BAAoB;AAErB,mCAAmC;AACnC,OAAO,EACL,SAAS,EACT,QAAQ,EACR,QAAQ,EAET,+BAAqB;AAEtB,0CAA0C;AAC1C,OAAO,EACL,eAAe,EACf,kBAAkB,EAEnB,sCAA4B;AAE7B,4CAA4C;AAC5C,OAAO,EACL,mBAAmB,EAGpB,wCAA8B;AAE/B,2CAA2C;AAC3C,OAAO,EACL,mBAAmB,EAEpB,uCAA6B;AAW9B,kDAAkD;AAClD,OAAO,EACL,wBAAwB,EAEzB,+CAAqC;AAEtC,2CAA2C;AAC3C,OAAO,EACL,gBAAgB,EAChB,oBAAoB,EACpB,mBAAmB,EAEpB,uCAA6B;AAK9B,oCAAoC;AACpC,OAAO,EAAE,aAAa,EAAyB,gCAAsB","sourcesContent":["export {\n extractAccountAddress,\n generateSeedEthereum,\n generateSeedNonEthereum,\n isEthereumAddress,\n generateIconSeed,\n} from './utils/caip-address';\n\nexport { mergeTwClassName } from './utils/merge-tw-class-name';\n\n// AvatarBase types (ADR-0003 + ADR-0004)\nexport {\n AvatarBaseSize,\n AvatarBaseShape,\n type AvatarBasePropsShared,\n} from './types/AvatarBase';\n\n// AvatarIcon types (ADR-0003 + ADR-0004)\nexport {\n AvatarIconSize,\n AvatarIconSeverity,\n type AvatarIconPropsShared,\n} from './types/AvatarIcon';\n\n// BadgeCount types (ADR-0003 + ADR-0004)\nexport { BadgeCountSize, type BadgeCountPropsShared } from './types/BadgeCount';\n\n// BadgeStatus types (ADR-0003 + ADR-0004)\nexport {\n BadgeStatusStatus,\n BadgeStatusSize,\n type BadgeStatusPropsShared,\n} from './types/BadgeStatus';\n\n// Content types (ADR-0003 + ADR-0004)\nexport {\n ContentVerticalAlignment,\n type ContentPropsShared,\n} from './types/Content';\n\n// ListItem types (ADR-0004)\nexport { type ListItemPropsShared } from './types/ListItem';\n\n// ListItemSelect types (ADR-0004)\nexport { type ListItemSelectPropsShared } from './types/ListItemSelect';\n\n// ListItemMultiSelect types (ADR-0004)\nexport { type ListItemMultiSelectPropsShared } from './types/ListItemMultiSelect';\n\n// HelpText types (ADR-0003 + ADR-0004)\nexport { HelpTextSeverity, type HelpTextPropsShared } from './types/HelpText';\n\n// IconAlert types (ADR-0003 + ADR-0004)\nexport {\n IconAlertSeverity,\n type IconAlertPropsShared,\n} from './types/IconAlert';\n\n// BannerBase types (ADR-0004)\nexport { type BannerBasePropsShared } from './types/BannerBase';\n\n// TextOrChildren types (ADR-0004)\nexport { type TextOrChildrenPropsShared } from './types/TextOrChildren';\n\n// Toast types (ADR-0004)\nexport {\n TOAST_ANIMATION_DURATION,\n TOAST_VISIBILITY_DURATION,\n} from './types/Toast';\n\n// TitleHub types (ADR-0004)\nexport { type TitleHubPropsShared } from './types/TitleHub';\n\n// TitleAlert types (ADR-0004)\nexport { type TitleAlertPropsShared } from './types/TitleAlert';\n\n// TitleStandard types (ADR-0004)\nexport { type TitleStandardPropsShared } from './types/TitleStandard';\n\n// TitleSubpage types (ADR-0004)\nexport { type TitleSubpagePropsShared } from './types/TitleSubpage';\n\n// BoxColumn types (ADR-0004)\nexport { type BoxColumnPropsShared } from './types/BoxColumn';\n\n// BoxRow types (ADR-0004)\nexport { type BoxRowPropsShared } from './types/BoxRow';\n\n// HeaderSearch types (ADR-0003 + ADR-0004)\nexport {\n HeaderSearchVariant,\n type HeaderSearchInlinePropsShared,\n type HeaderSearchPropsShared,\n type HeaderSearchScreenPropsShared,\n} from './types/HeaderSearch';\n\n// KeyValueColumn types (ADR-0004)\nexport { type KeyValueColumnPropsShared } from './types/KeyValueColumn';\n\n// KeyValueRow types (ADR-0003 + ADR-0004)\nexport {\n KeyValueRowVariant,\n type KeyValueRowPropsShared,\n} from './types/KeyValueRow';\n\n// ButtonFilter types (ADR-0004)\nexport { type ButtonFilterPropsShared } from './types/ButtonFilter';\n\n// ButtonBase types (ADR-0003 + ADR-0004)\nexport {\n ButtonBaseSize,\n ButtonHeroSize,\n ButtonSize,\n type ButtonBasePropsShared,\n} from './types/ButtonBase';\n\n// Button types (ADR-0003 + ADR-0004)\nexport { ButtonVariant, type ButtonPropsShared } from './types/Button';\n\n// AvatarNetwork types (ADR-0003 + ADR-0004)\nexport {\n AvatarNetworkSize,\n type AvatarNetworkPropsShared,\n} from './types/AvatarNetwork';\n\n// AvatarToken types (ADR-0003 + ADR-0004)\nexport {\n AvatarTokenSize,\n type AvatarTokenPropsShared,\n} from './types/AvatarToken';\n\n// BadgeIcon types (ADR-0004)\nexport { type BadgeIconPropsShared } from './types/BadgeIcon';\n\n// BannerAlert types (ADR-0003 + ADR-0004)\nexport {\n BannerAlertSeverity,\n type BannerAlertPropsShared,\n} from './types/BannerAlert';\n\n// BadgeNetwork types (ADR-0004)\nexport { type BadgeNetworkPropsShared } from './types/BadgeNetwork';\n\n// BadgeWrapper types (ADR-0003 + ADR-0004)\nexport {\n BadgeWrapperPositionAnchorShape,\n BadgeWrapperPosition,\n type BadgeWrapperCustomPosition,\n type BadgeWrapperPropsShared,\n} from './types/BadgeWrapper';\n\n// ButtonIcon types (ADR-0003 + ADR-0004)\nexport {\n ButtonIconSize,\n ButtonIconVariant,\n type ButtonIconPropsShared,\n} from './types/ButtonIcon';\n\nexport {\n AvatarAccountSize,\n AvatarAccountVariant,\n type AvatarAccountPropsShared,\n} from './types/AvatarAccount';\n\n// Text types (ADR-0003 + ADR-0004)\nexport {\n FontFamily,\n FontStyle,\n FontWeight,\n TextColor,\n TextVariant,\n type TextPropsShared,\n} from './types/Text';\n\n// TextField types (ADR-0004)\nexport { type TextFieldPropsShared } from './types/TextField';\n\n// TextArea types (ADR-0004)\nexport { type TextAreaPropsShared } from './types/TextArea';\n\n// Input types (ADR-0004)\nexport { type InputPropsShared } from './types/Input';\n\n// AvatarFavicon types (ADR-0004)\nexport {\n AvatarFaviconSize,\n type AvatarFaviconPropsShared,\n} from './types/AvatarFavicon';\n\n// Checkbox types (ADR-0004)\nexport { type CheckboxPropsShared } from './types/Checkbox';\n\n// Tag types (ADR-0003 + ADR-0004)\nexport { TagSeverity, type TagPropsShared } from './types/Tag';\n\n// Box types (ADR-0003 + ADR-0004)\nexport {\n BoxFlexDirection,\n BoxFlexWrap,\n BoxAlignItems,\n BoxJustifyContent,\n BoxBackgroundColor,\n BoxBorderColor,\n type BoxSpacing,\n type BoxBorderWidth,\n type BoxPropsShared,\n} from './types/Box';\n\n// Icon types (ADR-0003 + ADR-0004)\nexport {\n IconColor,\n IconName,\n IconSize,\n type IconPropsShared,\n} from './types/Icon';\n\n// AvatarGroup types (ADR-0003 + ADR-0004)\nexport {\n AvatarGroupSize,\n AvatarGroupVariant,\n type AvatarGroupPropsShared,\n} from './types/AvatarGroup';\n\n// SensitiveText types (ADR-0003 + ADR-0004)\nexport {\n SensitiveTextLength,\n type CustomLength,\n type SensitiveTextPropsShared,\n} from './types/SensitiveText';\n\n// FilterButton types (ADR-0003 + ADR-0004)\nexport {\n FilterButtonVariant,\n type FilterButtonPropsShared,\n} from './types/FilterButton';\n\n// FilterButtonGroup types (ADR-0003 + ADR-0004)\nexport { type FilterButtonGroupPropsShared } from './types/FilterButtonGroup';\n\n// SegmentedControl types (ADR-0004)\nexport { type SegmentedControlPropsShared } from './types/SegmentedControl';\n\n// Switch types (ADR-0004)\nexport { type SwitchPropsShared } from './types/Switch';\n\n// FilterButtonGroup context (ADR-0003 + ADR-0004)\nexport {\n FilterButtonGroupContext,\n type FilterButtonGroupContextValue,\n} from './contexts/FilterButtonGroup';\n\n// SelectButton types (ADR-0003 + ADR-0004)\nexport {\n SelectButtonSize,\n SelectButtonEndArrow,\n SelectButtonVariant,\n type SelectButtonPropsShared,\n} from './types/SelectButton';\n\n// SectionHeader types (ADR-0004)\nexport { type SectionHeaderPropsShared } from './types/SectionHeader';\n\n// Toast types (ADR-0003 + ADR-0004)\nexport { ToastSeverity, type ToastPropsShared } from './types/Toast';\n"]}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,qBAAqB,EACrB,oBAAoB,EACpB,uBAAuB,EACvB,iBAAiB,EACjB,gBAAgB,EACjB,iCAA6B;AAE9B,OAAO,EAAE,gBAAgB,EAAE,wCAAoC;AAE/D,yCAAyC;AACzC,OAAO,EACL,cAAc,EACd,eAAe,EAEhB,qCAA2B;AAE5B,yCAAyC;AACzC,OAAO,EACL,cAAc,EACd,kBAAkB,EAEnB,qCAA2B;AAE5B,yCAAyC;AACzC,OAAO,EAAE,cAAc,EAA8B,qCAA2B;AAEhF,0CAA0C;AAC1C,OAAO,EACL,iBAAiB,EACjB,eAAe,EAEhB,sCAA4B;AAE7B,sCAAsC;AACtC,OAAO,EACL,wBAAwB,EAEzB,kCAAwB;AAWzB,uCAAuC;AACvC,OAAO,EAAE,gBAAgB,EAA4B,mCAAyB;AAE9E,wCAAwC;AACxC,OAAO,EACL,iBAAiB,EAElB,oCAA0B;AAQ3B,yBAAyB;AACzB,OAAO,EACL,wBAAwB,EACxB,yBAAyB,EAC1B,gCAAsB;AAoBvB,2CAA2C;AAC3C,OAAO,EACL,mBAAmB,EAIpB,uCAA6B;AAK9B,0CAA0C;AAC1C,OAAO,EACL,kBAAkB,EAEnB,sCAA4B;AAK7B,yCAAyC;AACzC,OAAO,EACL,cAAc,EACd,cAAc,EACd,UAAU,EAEX,qCAA2B;AAE5B,qCAAqC;AACrC,OAAO,EAAE,aAAa,EAA0B,iCAAuB;AAEvE,4CAA4C;AAC5C,OAAO,EACL,iBAAiB,EAElB,wCAA8B;AAE/B,0CAA0C;AAC1C,OAAO,EACL,eAAe,EAEhB,sCAA4B;AAK7B,0CAA0C;AAC1C,OAAO,EACL,mBAAmB,EAEpB,sCAA4B;AAK7B,2CAA2C;AAC3C,OAAO,EACL,+BAA+B,EAC/B,oBAAoB,EAGrB,uCAA6B;AAE9B,yCAAyC;AACzC,OAAO,EACL,cAAc,EACd,iBAAiB,EAElB,qCAA2B;AAE5B,OAAO,EACL,iBAAiB,EACjB,oBAAoB,EAErB,wCAA8B;AAE/B,mCAAmC;AACnC,OAAO,EACL,UAAU,EACV,SAAS,EACT,UAAU,EACV,SAAS,EACT,WAAW,EAEZ,+BAAqB;AAWtB,iCAAiC;AACjC,OAAO,EACL,iBAAiB,EAElB,wCAA8B;AAK/B,kCAAkC;AAClC,OAAO,EAAE,WAAW,EAAuB,8BAAoB;AAE/D,kCAAkC;AAClC,OAAO,EACL,gBAAgB,EAChB,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,kBAAkB,EAClB,cAAc,EAIf,8BAAoB;AAErB,mCAAmC;AACnC,OAAO,EACL,SAAS,EACT,QAAQ,EACR,QAAQ,EAET,+BAAqB;AAEtB,0CAA0C;AAC1C,OAAO,EACL,eAAe,EACf,kBAAkB,EAEnB,sCAA4B;AAE7B,4CAA4C;AAC5C,OAAO,EACL,mBAAmB,EAGpB,wCAA8B;AAE/B,2CAA2C;AAC3C,OAAO,EACL,mBAAmB,EAEpB,uCAA6B;AAW9B,kDAAkD;AAClD,OAAO,EACL,wBAAwB,EAEzB,+CAAqC;AAEtC,oBAAoB;AACpB,OAAO,EACL,gBAAgB,EAGjB,uCAA6B;AAE9B,2CAA2C;AAC3C,OAAO,EACL,gBAAgB,EAChB,oBAAoB,EACpB,mBAAmB,EAEpB,uCAA6B;AAK9B,oCAAoC;AACpC,OAAO,EAAE,aAAa,EAAyB,gCAAsB","sourcesContent":["export {\n extractAccountAddress,\n generateSeedEthereum,\n generateSeedNonEthereum,\n isEthereumAddress,\n generateIconSeed,\n} from './utils/caip-address';\n\nexport { mergeTwClassName } from './utils/merge-tw-class-name';\n\n// AvatarBase types (ADR-0003 + ADR-0004)\nexport {\n AvatarBaseSize,\n AvatarBaseShape,\n type AvatarBasePropsShared,\n} from './types/AvatarBase';\n\n// AvatarIcon types (ADR-0003 + ADR-0004)\nexport {\n AvatarIconSize,\n AvatarIconSeverity,\n type AvatarIconPropsShared,\n} from './types/AvatarIcon';\n\n// BadgeCount types (ADR-0003 + ADR-0004)\nexport { BadgeCountSize, type BadgeCountPropsShared } from './types/BadgeCount';\n\n// BadgeStatus types (ADR-0003 + ADR-0004)\nexport {\n BadgeStatusStatus,\n BadgeStatusSize,\n type BadgeStatusPropsShared,\n} from './types/BadgeStatus';\n\n// Content types (ADR-0003 + ADR-0004)\nexport {\n ContentVerticalAlignment,\n type ContentPropsShared,\n} from './types/Content';\n\n// ListItem types (ADR-0004)\nexport { type ListItemPropsShared } from './types/ListItem';\n\n// ListItemSelect types (ADR-0004)\nexport { type ListItemSelectPropsShared } from './types/ListItemSelect';\n\n// ListItemMultiSelect types (ADR-0004)\nexport { type ListItemMultiSelectPropsShared } from './types/ListItemMultiSelect';\n\n// HelpText types (ADR-0003 + ADR-0004)\nexport { HelpTextSeverity, type HelpTextPropsShared } from './types/HelpText';\n\n// IconAlert types (ADR-0003 + ADR-0004)\nexport {\n IconAlertSeverity,\n type IconAlertPropsShared,\n} from './types/IconAlert';\n\n// BannerBase types (ADR-0004)\nexport { type BannerBasePropsShared } from './types/BannerBase';\n\n// TextOrChildren types (ADR-0004)\nexport { type TextOrChildrenPropsShared } from './types/TextOrChildren';\n\n// Toast types (ADR-0004)\nexport {\n TOAST_ANIMATION_DURATION,\n TOAST_VISIBILITY_DURATION,\n} from './types/Toast';\n\n// TitleHub types (ADR-0004)\nexport { type TitleHubPropsShared } from './types/TitleHub';\n\n// TitleAlert types (ADR-0004)\nexport { type TitleAlertPropsShared } from './types/TitleAlert';\n\n// TitleStandard types (ADR-0004)\nexport { type TitleStandardPropsShared } from './types/TitleStandard';\n\n// TitleSubpage types (ADR-0004)\nexport { type TitleSubpagePropsShared } from './types/TitleSubpage';\n\n// BoxColumn types (ADR-0004)\nexport { type BoxColumnPropsShared } from './types/BoxColumn';\n\n// BoxRow types (ADR-0004)\nexport { type BoxRowPropsShared } from './types/BoxRow';\n\n// HeaderSearch types (ADR-0003 + ADR-0004)\nexport {\n HeaderSearchVariant,\n type HeaderSearchInlinePropsShared,\n type HeaderSearchPropsShared,\n type HeaderSearchScreenPropsShared,\n} from './types/HeaderSearch';\n\n// KeyValueColumn types (ADR-0004)\nexport { type KeyValueColumnPropsShared } from './types/KeyValueColumn';\n\n// KeyValueRow types (ADR-0003 + ADR-0004)\nexport {\n KeyValueRowVariant,\n type KeyValueRowPropsShared,\n} from './types/KeyValueRow';\n\n// ButtonFilter types (ADR-0004)\nexport { type ButtonFilterPropsShared } from './types/ButtonFilter';\n\n// ButtonBase types (ADR-0003 + ADR-0004)\nexport {\n ButtonBaseSize,\n ButtonHeroSize,\n ButtonSize,\n type ButtonBasePropsShared,\n} from './types/ButtonBase';\n\n// Button types (ADR-0003 + ADR-0004)\nexport { ButtonVariant, type ButtonPropsShared } from './types/Button';\n\n// AvatarNetwork types (ADR-0003 + ADR-0004)\nexport {\n AvatarNetworkSize,\n type AvatarNetworkPropsShared,\n} from './types/AvatarNetwork';\n\n// AvatarToken types (ADR-0003 + ADR-0004)\nexport {\n AvatarTokenSize,\n type AvatarTokenPropsShared,\n} from './types/AvatarToken';\n\n// BadgeIcon types (ADR-0004)\nexport { type BadgeIconPropsShared } from './types/BadgeIcon';\n\n// BannerAlert types (ADR-0003 + ADR-0004)\nexport {\n BannerAlertSeverity,\n type BannerAlertPropsShared,\n} from './types/BannerAlert';\n\n// BadgeNetwork types (ADR-0004)\nexport { type BadgeNetworkPropsShared } from './types/BadgeNetwork';\n\n// BadgeWrapper types (ADR-0003 + ADR-0004)\nexport {\n BadgeWrapperPositionAnchorShape,\n BadgeWrapperPosition,\n type BadgeWrapperCustomPosition,\n type BadgeWrapperPropsShared,\n} from './types/BadgeWrapper';\n\n// ButtonIcon types (ADR-0003 + ADR-0004)\nexport {\n ButtonIconSize,\n ButtonIconVariant,\n type ButtonIconPropsShared,\n} from './types/ButtonIcon';\n\nexport {\n AvatarAccountSize,\n AvatarAccountVariant,\n type AvatarAccountPropsShared,\n} from './types/AvatarAccount';\n\n// Text types (ADR-0003 + ADR-0004)\nexport {\n FontFamily,\n FontStyle,\n FontWeight,\n TextColor,\n TextVariant,\n type TextPropsShared,\n} from './types/Text';\n\n// TextField types (ADR-0004)\nexport { type TextFieldPropsShared } from './types/TextField';\n\n// TextArea types (ADR-0004)\nexport { type TextAreaPropsShared } from './types/TextArea';\n\n// Input types (ADR-0004)\nexport { type InputPropsShared } from './types/Input';\n\n// AvatarFavicon types (ADR-0004)\nexport {\n AvatarFaviconSize,\n type AvatarFaviconPropsShared,\n} from './types/AvatarFavicon';\n\n// Checkbox types (ADR-0004)\nexport { type CheckboxPropsShared } from './types/Checkbox';\n\n// Tag types (ADR-0003 + ADR-0004)\nexport { TagSeverity, type TagPropsShared } from './types/Tag';\n\n// Box types (ADR-0003 + ADR-0004)\nexport {\n BoxFlexDirection,\n BoxFlexWrap,\n BoxAlignItems,\n BoxJustifyContent,\n BoxBackgroundColor,\n BoxBorderColor,\n type BoxSpacing,\n type BoxBorderWidth,\n type BoxPropsShared,\n} from './types/Box';\n\n// Icon types (ADR-0003 + ADR-0004)\nexport {\n IconColor,\n IconName,\n IconSize,\n type IconPropsShared,\n} from './types/Icon';\n\n// AvatarGroup types (ADR-0003 + ADR-0004)\nexport {\n AvatarGroupSize,\n AvatarGroupVariant,\n type AvatarGroupPropsShared,\n} from './types/AvatarGroup';\n\n// SensitiveText types (ADR-0003 + ADR-0004)\nexport {\n SensitiveTextLength,\n type CustomLength,\n type SensitiveTextPropsShared,\n} from './types/SensitiveText';\n\n// FilterButton types (ADR-0003 + ADR-0004)\nexport {\n FilterButtonVariant,\n type FilterButtonPropsShared,\n} from './types/FilterButton';\n\n// FilterButtonGroup types (ADR-0003 + ADR-0004)\nexport { type FilterButtonGroupPropsShared } from './types/FilterButtonGroup';\n\n// SegmentedControl types (ADR-0004)\nexport { type SegmentedControlPropsShared } from './types/SegmentedControl';\n\n// Switch types (ADR-0004)\nexport { type SwitchPropsShared } from './types/Switch';\n\n// FilterButtonGroup context (ADR-0003 + ADR-0004)\nexport {\n FilterButtonGroupContext,\n type FilterButtonGroupContextValue,\n} from './contexts/FilterButtonGroup';\n\n// PureBlack context\nexport {\n PureBlackContext,\n type PureBlackContextValue,\n type PureBlackProviderProps,\n} from './contexts/PureBlack';\n\n// SelectButton types (ADR-0003 + ADR-0004)\nexport {\n SelectButtonSize,\n SelectButtonEndArrow,\n SelectButtonVariant,\n type SelectButtonPropsShared,\n} from './types/SelectButton';\n\n// SectionHeader types (ADR-0004)\nexport { type SectionHeaderPropsShared } from './types/SectionHeader';\n\n// Toast types (ADR-0003 + ADR-0004)\nexport { ToastSeverity, type ToastPropsShared } from './types/Toast';\n"]}
@@ -6,6 +6,10 @@ exports.ButtonIconVariant = exports.ButtonIconSize = void 0;
6
6
  * Convert from enum to const object (ADR-0003)
7
7
  */
8
8
  exports.ButtonIconSize = {
9
+ /**
10
+ * Represents an extra small button size (20px).
11
+ */
12
+ Xs: 'xs',
9
13
  /**
10
14
  * Represents a small button size (24px).
11
15
  */
@@ -1 +1 @@
1
- {"version":3,"file":"ButtonIcon.types.cjs","sourceRoot":"","sources":["../../../src/types/ButtonIcon/ButtonIcon.types.ts"],"names":[],"mappings":";;;AAEA;;;GAGG;AACU,QAAA,cAAc,GAAG;IAC5B;;OAEG;IACH,EAAE,EAAE,IAAI;IACR;;OAEG;IACH,EAAE,EAAE,IAAI;IACR;;OAEG;IACH,EAAE,EAAE,IAAI;CACA,CAAC;AAIX;;;GAGG;AACU,QAAA,iBAAiB,GAAG;IAC/B;;OAEG;IACH,OAAO,EAAE,SAAS;IAClB;;OAEG;IACH,MAAM,EAAE,QAAQ;IAChB;;OAEG;IACH,QAAQ,EAAE,UAAU;CACZ,CAAC","sourcesContent":["import type { IconName } from '../Icon';\n\n/**\n * ButtonIcon - size\n * Convert from enum to const object (ADR-0003)\n */\nexport const ButtonIconSize = {\n /**\n * Represents a small button size (24px).\n */\n Sm: 'sm',\n /**\n * Represents a medium button size (32px).\n */\n Md: 'md',\n /**\n * Represents a large button size (40px).\n */\n Lg: 'lg',\n} as const;\nexport type ButtonIconSize =\n (typeof ButtonIconSize)[keyof typeof ButtonIconSize];\n\n/**\n * ButtonIcon - variant\n * Convert from enum to const object (ADR-0003)\n */\nexport const ButtonIconVariant = {\n /**\n * Represents the default button icon variant (transparent background).\n */\n Default: 'default',\n /**\n * Represents a filled button icon variant (muted background).\n */\n Filled: 'filled',\n /**\n * Represents a floating button icon variant (icon-default background, full circle).\n */\n Floating: 'floating',\n} as const;\nexport type ButtonIconVariant =\n (typeof ButtonIconVariant)[keyof typeof ButtonIconVariant];\n\n/**\n * ButtonIcon component shared props (ADR-0004)\n * Platform-independent properties shared across React and React Native\n */\nexport type ButtonIconPropsShared = {\n /**\n * Required prop to specify the icon to show\n */\n iconName: IconName;\n /**\n * Optional prop to control the size of the button\n *\n * @default ButtonIconSize.Md\n */\n size?: ButtonIconSize;\n /**\n * Optional prop that when true, disables the button\n *\n * @default false\n */\n isDisabled?: boolean;\n /**\n * Optional prop to control the visual variant of the button.\n *\n * @default ButtonIconVariant.Default\n */\n variant?: ButtonIconVariant;\n};\n"]}
1
+ {"version":3,"file":"ButtonIcon.types.cjs","sourceRoot":"","sources":["../../../src/types/ButtonIcon/ButtonIcon.types.ts"],"names":[],"mappings":";;;AAEA;;;GAGG;AACU,QAAA,cAAc,GAAG;IAC5B;;OAEG;IACH,EAAE,EAAE,IAAI;IACR;;OAEG;IACH,EAAE,EAAE,IAAI;IACR;;OAEG;IACH,EAAE,EAAE,IAAI;IACR;;OAEG;IACH,EAAE,EAAE,IAAI;CACA,CAAC;AAIX;;;GAGG;AACU,QAAA,iBAAiB,GAAG;IAC/B;;OAEG;IACH,OAAO,EAAE,SAAS;IAClB;;OAEG;IACH,MAAM,EAAE,QAAQ;IAChB;;OAEG;IACH,QAAQ,EAAE,UAAU;CACZ,CAAC","sourcesContent":["import type { IconName } from '../Icon';\n\n/**\n * ButtonIcon - size\n * Convert from enum to const object (ADR-0003)\n */\nexport const ButtonIconSize = {\n /**\n * Represents an extra small button size (20px).\n */\n Xs: 'xs',\n /**\n * Represents a small button size (24px).\n */\n Sm: 'sm',\n /**\n * Represents a medium button size (32px).\n */\n Md: 'md',\n /**\n * Represents a large button size (40px).\n */\n Lg: 'lg',\n} as const;\nexport type ButtonIconSize =\n (typeof ButtonIconSize)[keyof typeof ButtonIconSize];\n\n/**\n * ButtonIcon - variant\n * Convert from enum to const object (ADR-0003)\n */\nexport const ButtonIconVariant = {\n /**\n * Represents the default button icon variant (transparent background).\n */\n Default: 'default',\n /**\n * Represents a filled button icon variant (muted background).\n */\n Filled: 'filled',\n /**\n * Represents a floating button icon variant (icon-default background, full circle).\n */\n Floating: 'floating',\n} as const;\nexport type ButtonIconVariant =\n (typeof ButtonIconVariant)[keyof typeof ButtonIconVariant];\n\n/**\n * ButtonIcon component shared props (ADR-0004)\n * Platform-independent properties shared across React and React Native\n */\nexport type ButtonIconPropsShared = {\n /**\n * Required prop to specify the icon to show\n */\n iconName: IconName;\n /**\n * Optional prop to control the size of the button\n *\n * @default ButtonIconSize.Md\n */\n size?: ButtonIconSize;\n /**\n * Optional prop that when true, disables the button\n *\n * @default false\n */\n isDisabled?: boolean;\n /**\n * Optional prop to control the visual variant of the button.\n *\n * @default ButtonIconVariant.Default\n */\n variant?: ButtonIconVariant;\n};\n"]}
@@ -4,6 +4,10 @@ import type { IconName } from "../Icon/index.cjs";
4
4
  * Convert from enum to const object (ADR-0003)
5
5
  */
6
6
  export declare const ButtonIconSize: {
7
+ /**
8
+ * Represents an extra small button size (20px).
9
+ */
10
+ readonly Xs: "xs";
7
11
  /**
8
12
  * Represents a small button size (24px).
9
13
  */
@@ -1 +1 @@
1
- {"version":3,"file":"ButtonIcon.types.d.cts","sourceRoot":"","sources":["../../../src/types/ButtonIcon/ButtonIcon.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,0BAAgB;AAExC;;;GAGG;AACH,eAAO,MAAM,cAAc;IACzB;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;CAEK,CAAC;AACX,MAAM,MAAM,cAAc,GACxB,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAEvD;;;GAGG;AACH,eAAO,MAAM,iBAAiB;IAC5B;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;CAEK,CAAC;AACX,MAAM,MAAM,iBAAiB,GAC3B,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,OAAO,iBAAiB,CAAC,CAAC;AAE7D;;;GAGG;AACH,MAAM,MAAM,qBAAqB,GAAG;IAClC;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;;;OAIG;IACH,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,OAAO,CAAC,EAAE,iBAAiB,CAAC;CAC7B,CAAC"}
1
+ {"version":3,"file":"ButtonIcon.types.d.cts","sourceRoot":"","sources":["../../../src/types/ButtonIcon/ButtonIcon.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,0BAAgB;AAExC;;;GAGG;AACH,eAAO,MAAM,cAAc;IACzB;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;CAEK,CAAC;AACX,MAAM,MAAM,cAAc,GACxB,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAEvD;;;GAGG;AACH,eAAO,MAAM,iBAAiB;IAC5B;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;CAEK,CAAC;AACX,MAAM,MAAM,iBAAiB,GAC3B,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,OAAO,iBAAiB,CAAC,CAAC;AAE7D;;;GAGG;AACH,MAAM,MAAM,qBAAqB,GAAG;IAClC;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;;;OAIG;IACH,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,OAAO,CAAC,EAAE,iBAAiB,CAAC;CAC7B,CAAC"}
@@ -4,6 +4,10 @@ import type { IconName } from "../Icon/index.mjs";
4
4
  * Convert from enum to const object (ADR-0003)
5
5
  */
6
6
  export declare const ButtonIconSize: {
7
+ /**
8
+ * Represents an extra small button size (20px).
9
+ */
10
+ readonly Xs: "xs";
7
11
  /**
8
12
  * Represents a small button size (24px).
9
13
  */
@@ -1 +1 @@
1
- {"version":3,"file":"ButtonIcon.types.d.mts","sourceRoot":"","sources":["../../../src/types/ButtonIcon/ButtonIcon.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,0BAAgB;AAExC;;;GAGG;AACH,eAAO,MAAM,cAAc;IACzB;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;CAEK,CAAC;AACX,MAAM,MAAM,cAAc,GACxB,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAEvD;;;GAGG;AACH,eAAO,MAAM,iBAAiB;IAC5B;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;CAEK,CAAC;AACX,MAAM,MAAM,iBAAiB,GAC3B,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,OAAO,iBAAiB,CAAC,CAAC;AAE7D;;;GAGG;AACH,MAAM,MAAM,qBAAqB,GAAG;IAClC;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;;;OAIG;IACH,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,OAAO,CAAC,EAAE,iBAAiB,CAAC;CAC7B,CAAC"}
1
+ {"version":3,"file":"ButtonIcon.types.d.mts","sourceRoot":"","sources":["../../../src/types/ButtonIcon/ButtonIcon.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,0BAAgB;AAExC;;;GAGG;AACH,eAAO,MAAM,cAAc;IACzB;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;CAEK,CAAC;AACX,MAAM,MAAM,cAAc,GACxB,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAEvD;;;GAGG;AACH,eAAO,MAAM,iBAAiB;IAC5B;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;CAEK,CAAC;AACX,MAAM,MAAM,iBAAiB,GAC3B,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,OAAO,iBAAiB,CAAC,CAAC;AAE7D;;;GAGG;AACH,MAAM,MAAM,qBAAqB,GAAG;IAClC;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;;;OAIG;IACH,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;OAIG;IACH,OAAO,CAAC,EAAE,iBAAiB,CAAC;CAC7B,CAAC"}
@@ -3,6 +3,10 @@
3
3
  * Convert from enum to const object (ADR-0003)
4
4
  */
5
5
  export const ButtonIconSize = {
6
+ /**
7
+ * Represents an extra small button size (20px).
8
+ */
9
+ Xs: 'xs',
6
10
  /**
7
11
  * Represents a small button size (24px).
8
12
  */
@@ -1 +1 @@
1
- {"version":3,"file":"ButtonIcon.types.mjs","sourceRoot":"","sources":["../../../src/types/ButtonIcon/ButtonIcon.types.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B;;OAEG;IACH,EAAE,EAAE,IAAI;IACR;;OAEG;IACH,EAAE,EAAE,IAAI;IACR;;OAEG;IACH,EAAE,EAAE,IAAI;CACA,CAAC;AAIX;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B;;OAEG;IACH,OAAO,EAAE,SAAS;IAClB;;OAEG;IACH,MAAM,EAAE,QAAQ;IAChB;;OAEG;IACH,QAAQ,EAAE,UAAU;CACZ,CAAC","sourcesContent":["import type { IconName } from '../Icon';\n\n/**\n * ButtonIcon - size\n * Convert from enum to const object (ADR-0003)\n */\nexport const ButtonIconSize = {\n /**\n * Represents a small button size (24px).\n */\n Sm: 'sm',\n /**\n * Represents a medium button size (32px).\n */\n Md: 'md',\n /**\n * Represents a large button size (40px).\n */\n Lg: 'lg',\n} as const;\nexport type ButtonIconSize =\n (typeof ButtonIconSize)[keyof typeof ButtonIconSize];\n\n/**\n * ButtonIcon - variant\n * Convert from enum to const object (ADR-0003)\n */\nexport const ButtonIconVariant = {\n /**\n * Represents the default button icon variant (transparent background).\n */\n Default: 'default',\n /**\n * Represents a filled button icon variant (muted background).\n */\n Filled: 'filled',\n /**\n * Represents a floating button icon variant (icon-default background, full circle).\n */\n Floating: 'floating',\n} as const;\nexport type ButtonIconVariant =\n (typeof ButtonIconVariant)[keyof typeof ButtonIconVariant];\n\n/**\n * ButtonIcon component shared props (ADR-0004)\n * Platform-independent properties shared across React and React Native\n */\nexport type ButtonIconPropsShared = {\n /**\n * Required prop to specify the icon to show\n */\n iconName: IconName;\n /**\n * Optional prop to control the size of the button\n *\n * @default ButtonIconSize.Md\n */\n size?: ButtonIconSize;\n /**\n * Optional prop that when true, disables the button\n *\n * @default false\n */\n isDisabled?: boolean;\n /**\n * Optional prop to control the visual variant of the button.\n *\n * @default ButtonIconVariant.Default\n */\n variant?: ButtonIconVariant;\n};\n"]}
1
+ {"version":3,"file":"ButtonIcon.types.mjs","sourceRoot":"","sources":["../../../src/types/ButtonIcon/ButtonIcon.types.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B;;OAEG;IACH,EAAE,EAAE,IAAI;IACR;;OAEG;IACH,EAAE,EAAE,IAAI;IACR;;OAEG;IACH,EAAE,EAAE,IAAI;IACR;;OAEG;IACH,EAAE,EAAE,IAAI;CACA,CAAC;AAIX;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B;;OAEG;IACH,OAAO,EAAE,SAAS;IAClB;;OAEG;IACH,MAAM,EAAE,QAAQ;IAChB;;OAEG;IACH,QAAQ,EAAE,UAAU;CACZ,CAAC","sourcesContent":["import type { IconName } from '../Icon';\n\n/**\n * ButtonIcon - size\n * Convert from enum to const object (ADR-0003)\n */\nexport const ButtonIconSize = {\n /**\n * Represents an extra small button size (20px).\n */\n Xs: 'xs',\n /**\n * Represents a small button size (24px).\n */\n Sm: 'sm',\n /**\n * Represents a medium button size (32px).\n */\n Md: 'md',\n /**\n * Represents a large button size (40px).\n */\n Lg: 'lg',\n} as const;\nexport type ButtonIconSize =\n (typeof ButtonIconSize)[keyof typeof ButtonIconSize];\n\n/**\n * ButtonIcon - variant\n * Convert from enum to const object (ADR-0003)\n */\nexport const ButtonIconVariant = {\n /**\n * Represents the default button icon variant (transparent background).\n */\n Default: 'default',\n /**\n * Represents a filled button icon variant (muted background).\n */\n Filled: 'filled',\n /**\n * Represents a floating button icon variant (icon-default background, full circle).\n */\n Floating: 'floating',\n} as const;\nexport type ButtonIconVariant =\n (typeof ButtonIconVariant)[keyof typeof ButtonIconVariant];\n\n/**\n * ButtonIcon component shared props (ADR-0004)\n * Platform-independent properties shared across React and React Native\n */\nexport type ButtonIconPropsShared = {\n /**\n * Required prop to specify the icon to show\n */\n iconName: IconName;\n /**\n * Optional prop to control the size of the button\n *\n * @default ButtonIconSize.Md\n */\n size?: ButtonIconSize;\n /**\n * Optional prop that when true, disables the button\n *\n * @default false\n */\n isDisabled?: boolean;\n /**\n * Optional prop to control the visual variant of the button.\n *\n * @default ButtonIconVariant.Default\n */\n variant?: ButtonIconVariant;\n};\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"SectionHeader.types.cjs","sourceRoot":"","sources":["../../../src/types/SectionHeader/SectionHeader.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ReactNode } from 'react';\n\nimport type { IconName } from '../Icon';\n\n/**\n * SectionHeader component shared props (ADR-0004).\n * Platform-independent properties; platform packages extend with `ViewProps`,\n * `twClassName`, and platform `Text` / `Icon` prop passthroughs.\n */\nexport type SectionHeaderPropsShared = {\n /**\n * Section title. When a string, platforms typically apply heading styles via `titleProps` / `textProps`.\n * The title row renders only when `title` is renderable; `titleAccessory` alone does not show the inner row.\n */\n title: ReactNode;\n /**\n * Optional accessory rendered inline to the right of `title` in the title row.\n * Only shown when the title row is shown (i.e. when `title` is renderable).\n */\n titleAccessory?: ReactNode;\n /**\n * Optional node before the title row (e.g. icon or avatar).\n */\n startAccessory?: ReactNode;\n /**\n * Optional node after the title row (e.g. icon or action).\n */\n endAccessory?: ReactNode;\n /**\n * Optional icon name for the start of the header row.\n * When set (or implied via `startIconProps.name`), renders an icon instead of `startAccessory`.\n */\n startIconName?: IconName;\n /**\n * Optional icon name for the end of the header row.\n * When set (or implied via `endIconProps.name`), renders an icon instead of `endAccessory`.\n */\n endIconName?: IconName;\n};\n"]}
1
+ {"version":3,"file":"SectionHeader.types.cjs","sourceRoot":"","sources":["../../../src/types/SectionHeader/SectionHeader.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ReactNode } from 'react';\n\nimport type { IconName } from '../Icon';\n\n/**\n * SectionHeader component shared props (ADR-0004).\n * Platform-independent properties; platform packages extend with `ViewProps`,\n * `twClassName`, and platform `Text` / `Icon` prop passthroughs.\n */\nexport type SectionHeaderPropsShared = {\n /**\n * Section title. When a string, platforms typically apply heading styles via `titleProps` / `textProps`.\n * The title row renders only when `title` is renderable; `titleAccessory` alone does not show the inner row.\n */\n title: ReactNode;\n /**\n * Optional accessory rendered inline to the right of `title` in the title row.\n * Only shown when the title row is shown (i.e. when `title` is renderable).\n */\n titleAccessory?: ReactNode;\n /**\n * Optional content rendered below the title row in the middle column,\n * between start and end accessories.\n */\n children?: ReactNode;\n /**\n * Optional node before the title row (e.g. icon or avatar).\n */\n startAccessory?: ReactNode;\n /**\n * Optional node after the title row (e.g. icon or action).\n */\n endAccessory?: ReactNode;\n /**\n * Optional icon name for the start of the header row.\n * When set (or implied via `startIconProps.name`), renders an icon instead of `startAccessory`.\n */\n startIconName?: IconName;\n /**\n * Optional icon name for the end of the header row.\n * When set (or implied via `endIconProps.name`), renders an icon instead of `endAccessory`.\n */\n endIconName?: IconName;\n};\n"]}
@@ -16,6 +16,11 @@ export type SectionHeaderPropsShared = {
16
16
  * Only shown when the title row is shown (i.e. when `title` is renderable).
17
17
  */
18
18
  titleAccessory?: ReactNode;
19
+ /**
20
+ * Optional content rendered below the title row in the middle column,
21
+ * between start and end accessories.
22
+ */
23
+ children?: ReactNode;
19
24
  /**
20
25
  * Optional node before the title row (e.g. icon or avatar).
21
26
  */
@@ -1 +1 @@
1
- {"version":3,"file":"SectionHeader.types.d.cts","sourceRoot":"","sources":["../../../src/types/SectionHeader/SectionHeader.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc;AAEvC,OAAO,KAAK,EAAE,QAAQ,EAAE,0BAAgB;AAExC;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;OAGG;IACH,KAAK,EAAE,SAAS,CAAC;IACjB;;;OAGG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;OAEG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;;OAGG;IACH,aAAa,CAAC,EAAE,QAAQ,CAAC;IACzB;;;OAGG;IACH,WAAW,CAAC,EAAE,QAAQ,CAAC;CACxB,CAAC"}
1
+ {"version":3,"file":"SectionHeader.types.d.cts","sourceRoot":"","sources":["../../../src/types/SectionHeader/SectionHeader.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc;AAEvC,OAAO,KAAK,EAAE,QAAQ,EAAE,0BAAgB;AAExC;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;OAGG;IACH,KAAK,EAAE,SAAS,CAAC;IACjB;;;OAGG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;;OAGG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB;;OAEG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;;OAGG;IACH,aAAa,CAAC,EAAE,QAAQ,CAAC;IACzB;;;OAGG;IACH,WAAW,CAAC,EAAE,QAAQ,CAAC;CACxB,CAAC"}
@@ -16,6 +16,11 @@ export type SectionHeaderPropsShared = {
16
16
  * Only shown when the title row is shown (i.e. when `title` is renderable).
17
17
  */
18
18
  titleAccessory?: ReactNode;
19
+ /**
20
+ * Optional content rendered below the title row in the middle column,
21
+ * between start and end accessories.
22
+ */
23
+ children?: ReactNode;
19
24
  /**
20
25
  * Optional node before the title row (e.g. icon or avatar).
21
26
  */
@@ -1 +1 @@
1
- {"version":3,"file":"SectionHeader.types.d.mts","sourceRoot":"","sources":["../../../src/types/SectionHeader/SectionHeader.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc;AAEvC,OAAO,KAAK,EAAE,QAAQ,EAAE,0BAAgB;AAExC;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;OAGG;IACH,KAAK,EAAE,SAAS,CAAC;IACjB;;;OAGG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;OAEG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;;OAGG;IACH,aAAa,CAAC,EAAE,QAAQ,CAAC;IACzB;;;OAGG;IACH,WAAW,CAAC,EAAE,QAAQ,CAAC;CACxB,CAAC"}
1
+ {"version":3,"file":"SectionHeader.types.d.mts","sourceRoot":"","sources":["../../../src/types/SectionHeader/SectionHeader.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc;AAEvC,OAAO,KAAK,EAAE,QAAQ,EAAE,0BAAgB;AAExC;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;OAGG;IACH,KAAK,EAAE,SAAS,CAAC;IACjB;;;OAGG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;;OAGG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB;;OAEG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;;OAGG;IACH,aAAa,CAAC,EAAE,QAAQ,CAAC;IACzB;;;OAGG;IACH,WAAW,CAAC,EAAE,QAAQ,CAAC;CACxB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"SectionHeader.types.mjs","sourceRoot":"","sources":["../../../src/types/SectionHeader/SectionHeader.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ReactNode } from 'react';\n\nimport type { IconName } from '../Icon';\n\n/**\n * SectionHeader component shared props (ADR-0004).\n * Platform-independent properties; platform packages extend with `ViewProps`,\n * `twClassName`, and platform `Text` / `Icon` prop passthroughs.\n */\nexport type SectionHeaderPropsShared = {\n /**\n * Section title. When a string, platforms typically apply heading styles via `titleProps` / `textProps`.\n * The title row renders only when `title` is renderable; `titleAccessory` alone does not show the inner row.\n */\n title: ReactNode;\n /**\n * Optional accessory rendered inline to the right of `title` in the title row.\n * Only shown when the title row is shown (i.e. when `title` is renderable).\n */\n titleAccessory?: ReactNode;\n /**\n * Optional node before the title row (e.g. icon or avatar).\n */\n startAccessory?: ReactNode;\n /**\n * Optional node after the title row (e.g. icon or action).\n */\n endAccessory?: ReactNode;\n /**\n * Optional icon name for the start of the header row.\n * When set (or implied via `startIconProps.name`), renders an icon instead of `startAccessory`.\n */\n startIconName?: IconName;\n /**\n * Optional icon name for the end of the header row.\n * When set (or implied via `endIconProps.name`), renders an icon instead of `endAccessory`.\n */\n endIconName?: IconName;\n};\n"]}
1
+ {"version":3,"file":"SectionHeader.types.mjs","sourceRoot":"","sources":["../../../src/types/SectionHeader/SectionHeader.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ReactNode } from 'react';\n\nimport type { IconName } from '../Icon';\n\n/**\n * SectionHeader component shared props (ADR-0004).\n * Platform-independent properties; platform packages extend with `ViewProps`,\n * `twClassName`, and platform `Text` / `Icon` prop passthroughs.\n */\nexport type SectionHeaderPropsShared = {\n /**\n * Section title. When a string, platforms typically apply heading styles via `titleProps` / `textProps`.\n * The title row renders only when `title` is renderable; `titleAccessory` alone does not show the inner row.\n */\n title: ReactNode;\n /**\n * Optional accessory rendered inline to the right of `title` in the title row.\n * Only shown when the title row is shown (i.e. when `title` is renderable).\n */\n titleAccessory?: ReactNode;\n /**\n * Optional content rendered below the title row in the middle column,\n * between start and end accessories.\n */\n children?: ReactNode;\n /**\n * Optional node before the title row (e.g. icon or avatar).\n */\n startAccessory?: ReactNode;\n /**\n * Optional node after the title row (e.g. icon or action).\n */\n endAccessory?: ReactNode;\n /**\n * Optional icon name for the start of the header row.\n * When set (or implied via `startIconProps.name`), renders an icon instead of `startAccessory`.\n */\n startIconName?: IconName;\n /**\n * Optional icon name for the end of the header row.\n * When set (or implied via `endIconProps.name`), renders an icon instead of `endAccessory`.\n */\n endIconName?: IconName;\n};\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/design-system-shared",
3
- "version": "0.24.0-preview.25db973",
3
+ "version": "0.24.0-preview.688b428f",
4
4
  "description": "Shared types for design system libraries",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -70,7 +70,7 @@
70
70
  "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
71
71
  },
72
72
  "engines": {
73
- "node": ">=24"
73
+ "node": ">=20"
74
74
  },
75
75
  "publishConfig": {
76
76
  "access": "public",