@metamask-previews/design-system-shared 0.19.0-preview.620b9f3 → 0.20.0-preview.a0fe3894
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -1
- package/dist/index.cjs +12 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +3 -0
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/dist/types/Content/Content.types.cjs +11 -0
- package/dist/types/Content/Content.types.cjs.map +1 -0
- package/dist/types/Content/Content.types.d.cts +73 -0
- package/dist/types/Content/Content.types.d.cts.map +1 -0
- package/dist/types/Content/Content.types.d.mts +73 -0
- package/dist/types/Content/Content.types.d.mts.map +1 -0
- package/dist/types/Content/Content.types.mjs +8 -0
- package/dist/types/Content/Content.types.mjs.map +1 -0
- package/dist/types/Content/index.cjs +6 -0
- package/dist/types/Content/index.cjs.map +1 -0
- package/dist/types/Content/index.d.cts +2 -0
- package/dist/types/Content/index.d.cts.map +1 -0
- package/dist/types/Content/index.d.mts +2 -0
- package/dist/types/Content/index.d.mts.map +1 -0
- package/dist/types/Content/index.mjs +2 -0
- package/dist/types/Content/index.mjs.map +1 -0
- package/dist/types/Icon/Icon.types.cjs +1 -0
- package/dist/types/Icon/Icon.types.cjs.map +1 -1
- package/dist/types/Icon/Icon.types.d.cts +1 -0
- package/dist/types/Icon/Icon.types.d.cts.map +1 -1
- package/dist/types/Icon/Icon.types.d.mts +1 -0
- package/dist/types/Icon/Icon.types.d.mts.map +1 -1
- package/dist/types/Icon/Icon.types.mjs +1 -0
- package/dist/types/Icon/Icon.types.mjs.map +1 -1
- package/dist/types/TextField/TextField.types.cjs.map +1 -1
- package/dist/types/TextField/TextField.types.d.cts +2 -2
- package/dist/types/TextField/TextField.types.d.mts +2 -2
- package/dist/types/TextField/TextField.types.mjs.map +1 -1
- package/dist/types/TextField/index.cjs.map +1 -1
- package/dist/types/TextField/index.d.cts +1 -1
- package/dist/types/TextField/index.d.cts.map +1 -1
- package/dist/types/TextField/index.d.mts +1 -1
- package/dist/types/TextField/index.d.mts.map +1 -1
- package/dist/types/TextField/index.mjs.map +1 -1
- package/dist/types/Toast/Toast.constants.cjs +8 -0
- package/dist/types/Toast/Toast.constants.cjs.map +1 -0
- package/dist/types/Toast/Toast.constants.d.cts +3 -0
- package/dist/types/Toast/Toast.constants.d.cts.map +1 -0
- package/dist/types/Toast/Toast.constants.d.mts +3 -0
- package/dist/types/Toast/Toast.constants.d.mts.map +1 -0
- package/dist/types/Toast/Toast.constants.mjs +5 -0
- package/dist/types/Toast/Toast.constants.mjs.map +1 -0
- package/dist/types/Toast/Toast.types.cjs +14 -0
- package/dist/types/Toast/Toast.types.cjs.map +1 -0
- package/dist/types/Toast/Toast.types.d.cts +19 -0
- package/dist/types/Toast/Toast.types.d.cts.map +1 -0
- package/dist/types/Toast/Toast.types.d.mts +19 -0
- package/dist/types/Toast/Toast.types.d.mts.map +1 -0
- package/dist/types/Toast/Toast.types.mjs +11 -0
- package/dist/types/Toast/Toast.types.mjs.map +1 -0
- package/dist/types/Toast/index.cjs +9 -0
- package/dist/types/Toast/index.cjs.map +1 -0
- package/dist/types/Toast/index.d.cts +3 -0
- package/dist/types/Toast/index.d.cts.map +1 -0
- package/dist/types/Toast/index.d.mts +3 -0
- package/dist/types/Toast/index.d.mts.map +1 -0
- package/dist/types/Toast/index.mjs +3 -0
- package/dist/types/Toast/index.mjs.map +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.20.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Added `FlashFilled` icon (filled lightning bolt) to `IconName`, keeping the centralized icon set aligned across React and React Native ([#1191](https://github.com/MetaMask/metamask-design-system/pull/1191))
|
|
15
|
+
- Added `SelectButtonSize` so `SelectButton` exposes a semantic size type shared across platforms ([#1177](https://github.com/MetaMask/metamask-design-system/pull/1177))
|
|
16
|
+
- Added `TextFieldPropsShared` for the cross-platform text field input contract ([#1170](https://github.com/MetaMask/metamask-design-system/pull/1170))
|
|
17
|
+
|
|
10
18
|
## [0.19.0]
|
|
11
19
|
|
|
12
20
|
### Added
|
|
@@ -200,7 +208,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
200
208
|
- **Initial release** - MetaMask Design System Shared
|
|
201
209
|
- Adding CAIP-10 address utilities ([#817](https://github.com/MetaMask/metamask-design-system/pull/817))
|
|
202
210
|
|
|
203
|
-
[Unreleased]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-system-shared@0.
|
|
211
|
+
[Unreleased]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-system-shared@0.20.0...HEAD
|
|
212
|
+
[0.20.0]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-system-shared@0.19.0...@metamask/design-system-shared@0.20.0
|
|
204
213
|
[0.19.0]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-system-shared@0.18.0...@metamask/design-system-shared@0.19.0
|
|
205
214
|
[0.18.0]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-system-shared@0.17.0...@metamask/design-system-shared@0.18.0
|
|
206
215
|
[0.17.0]: https://github.com/MetaMask/metamask-design-system/compare/@metamask/design-system-shared@0.16.0...@metamask/design-system-shared@0.17.0
|
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.SelectButtonVariant = exports.SelectButtonEndArrow = void 0;
|
|
3
|
+
exports.SensitiveTextLength = exports.AvatarGroupVariant = 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.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.generateIconSeed = exports.isEthereumAddress = exports.generateSeedNonEthereum = exports.generateSeedEthereum = exports.extractAccountAddress = void 0;
|
|
4
|
+
exports.ToastSeverity = exports.SelectButtonVariant = exports.SelectButtonEndArrow = exports.SelectButtonSize = exports.SegmentGroupContext = exports.SegmentButtonVariant = 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; } });
|
|
@@ -23,12 +23,19 @@ Object.defineProperty(exports, "BadgeCountSize", { enumerable: true, get: functi
|
|
|
23
23
|
var BadgeStatus_1 = require("./types/BadgeStatus/index.cjs");
|
|
24
24
|
Object.defineProperty(exports, "BadgeStatusStatus", { enumerable: true, get: function () { return BadgeStatus_1.BadgeStatusStatus; } });
|
|
25
25
|
Object.defineProperty(exports, "BadgeStatusSize", { enumerable: true, get: function () { return BadgeStatus_1.BadgeStatusSize; } });
|
|
26
|
+
// Content types (ADR-0003 + ADR-0004)
|
|
27
|
+
var Content_1 = require("./types/Content/index.cjs");
|
|
28
|
+
Object.defineProperty(exports, "ContentVerticalAlignment", { enumerable: true, get: function () { return Content_1.ContentVerticalAlignment; } });
|
|
26
29
|
// HelpText types (ADR-0003 + ADR-0004)
|
|
27
30
|
var HelpText_1 = require("./types/HelpText/index.cjs");
|
|
28
31
|
Object.defineProperty(exports, "HelpTextSeverity", { enumerable: true, get: function () { return HelpText_1.HelpTextSeverity; } });
|
|
29
32
|
// IconAlert types (ADR-0003 + ADR-0004)
|
|
30
33
|
var IconAlert_1 = require("./types/IconAlert/index.cjs");
|
|
31
34
|
Object.defineProperty(exports, "IconAlertSeverity", { enumerable: true, get: function () { return IconAlert_1.IconAlertSeverity; } });
|
|
35
|
+
// Toast types (ADR-0004)
|
|
36
|
+
var Toast_1 = require("./types/Toast/index.cjs");
|
|
37
|
+
Object.defineProperty(exports, "TOAST_ANIMATION_DURATION", { enumerable: true, get: function () { return Toast_1.TOAST_ANIMATION_DURATION; } });
|
|
38
|
+
Object.defineProperty(exports, "TOAST_VISIBILITY_DURATION", { enumerable: true, get: function () { return Toast_1.TOAST_VISIBILITY_DURATION; } });
|
|
32
39
|
// HeaderSearch types (ADR-0003 + ADR-0004)
|
|
33
40
|
var HeaderSearch_1 = require("./types/HeaderSearch/index.cjs");
|
|
34
41
|
Object.defineProperty(exports, "HeaderSearchVariant", { enumerable: true, get: function () { return HeaderSearch_1.HeaderSearchVariant; } });
|
|
@@ -104,4 +111,7 @@ var SelectButton_1 = require("./types/SelectButton/index.cjs");
|
|
|
104
111
|
Object.defineProperty(exports, "SelectButtonSize", { enumerable: true, get: function () { return SelectButton_1.SelectButtonSize; } });
|
|
105
112
|
Object.defineProperty(exports, "SelectButtonEndArrow", { enumerable: true, get: function () { return SelectButton_1.SelectButtonEndArrow; } });
|
|
106
113
|
Object.defineProperty(exports, "SelectButtonVariant", { enumerable: true, get: function () { return SelectButton_1.SelectButtonVariant; } });
|
|
114
|
+
// Toast types (ADR-0003 + ADR-0004)
|
|
115
|
+
var Toast_2 = require("./types/Toast/index.cjs");
|
|
116
|
+
Object.defineProperty(exports, "ToastSeverity", { enumerable: true, get: function () { return Toast_2.ToastSeverity; } });
|
|
107
117
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -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,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,uCAAuC;AACvC,uDAA8E;AAArE,4GAAA,gBAAgB,OAAA;AAEzB,wCAAwC;AACxC,yDAG2B;AAFzB,8GAAA,iBAAiB,OAAA;
|
|
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\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// 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-0004)\nexport { type AvatarNetworkPropsShared } 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// 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// SegmentButton types (ADR-0003 + ADR-0004)\nexport {\n SegmentButtonVariant,\n type SegmentButtonPropsShared,\n} from './types/SegmentButton';\n\n// SegmentGroup types (ADR-0003 + ADR-0004)\nexport { type SegmentGroupPropsShared } from './types/SegmentGroup';\n\n// SegmentGroup context (ADR-0003 + ADR-0004)\nexport {\n SegmentGroupContext,\n type SegmentGroupContextValue,\n} from './contexts/SegmentGroup';\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
|
@@ -3,10 +3,12 @@ export { AvatarBaseSize, AvatarBaseShape, type AvatarBasePropsShared, } from "./
|
|
|
3
3
|
export { AvatarIconSize, AvatarIconSeverity, type AvatarIconPropsShared, } from "./types/AvatarIcon/index.cjs";
|
|
4
4
|
export { BadgeCountSize, type BadgeCountPropsShared } from "./types/BadgeCount/index.cjs";
|
|
5
5
|
export { BadgeStatusStatus, BadgeStatusSize, type BadgeStatusPropsShared, } from "./types/BadgeStatus/index.cjs";
|
|
6
|
+
export { ContentVerticalAlignment, type ContentPropsShared, } from "./types/Content/index.cjs";
|
|
6
7
|
export { HelpTextSeverity, type HelpTextPropsShared } from "./types/HelpText/index.cjs";
|
|
7
8
|
export { IconAlertSeverity, type IconAlertPropsShared, } from "./types/IconAlert/index.cjs";
|
|
8
9
|
export { type BannerBasePropsShared } from "./types/BannerBase/index.cjs";
|
|
9
10
|
export { type TextOrChildrenPropsShared } from "./types/TextOrChildren/index.cjs";
|
|
11
|
+
export { TOAST_ANIMATION_DURATION, TOAST_VISIBILITY_DURATION, } from "./types/Toast/index.cjs";
|
|
10
12
|
export { type TitleHubPropsShared } from "./types/TitleHub/index.cjs";
|
|
11
13
|
export { type TitleAlertPropsShared } from "./types/TitleAlert/index.cjs";
|
|
12
14
|
export { type TitleStandardPropsShared } from "./types/TitleStandard/index.cjs";
|
|
@@ -43,4 +45,5 @@ export { type SegmentGroupPropsShared } from "./types/SegmentGroup/index.cjs";
|
|
|
43
45
|
export { SegmentGroupContext, type SegmentGroupContextValue, } from "./contexts/SegmentGroup/index.cjs";
|
|
44
46
|
export { SelectButtonSize, SelectButtonEndArrow, SelectButtonVariant, type SelectButtonPropsShared, } from "./types/SelectButton/index.cjs";
|
|
45
47
|
export { type SectionHeaderPropsShared } from "./types/SectionHeader/index.cjs";
|
|
48
|
+
export { ToastSeverity, type ToastPropsShared } from "./types/Toast/index.cjs";
|
|
46
49
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.cts.map
CHANGED
|
@@ -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
|
@@ -3,10 +3,12 @@ export { AvatarBaseSize, AvatarBaseShape, type AvatarBasePropsShared, } from "./
|
|
|
3
3
|
export { AvatarIconSize, AvatarIconSeverity, type AvatarIconPropsShared, } from "./types/AvatarIcon/index.mjs";
|
|
4
4
|
export { BadgeCountSize, type BadgeCountPropsShared } from "./types/BadgeCount/index.mjs";
|
|
5
5
|
export { BadgeStatusStatus, BadgeStatusSize, type BadgeStatusPropsShared, } from "./types/BadgeStatus/index.mjs";
|
|
6
|
+
export { ContentVerticalAlignment, type ContentPropsShared, } from "./types/Content/index.mjs";
|
|
6
7
|
export { HelpTextSeverity, type HelpTextPropsShared } from "./types/HelpText/index.mjs";
|
|
7
8
|
export { IconAlertSeverity, type IconAlertPropsShared, } from "./types/IconAlert/index.mjs";
|
|
8
9
|
export { type BannerBasePropsShared } from "./types/BannerBase/index.mjs";
|
|
9
10
|
export { type TextOrChildrenPropsShared } from "./types/TextOrChildren/index.mjs";
|
|
11
|
+
export { TOAST_ANIMATION_DURATION, TOAST_VISIBILITY_DURATION, } from "./types/Toast/index.mjs";
|
|
10
12
|
export { type TitleHubPropsShared } from "./types/TitleHub/index.mjs";
|
|
11
13
|
export { type TitleAlertPropsShared } from "./types/TitleAlert/index.mjs";
|
|
12
14
|
export { type TitleStandardPropsShared } from "./types/TitleStandard/index.mjs";
|
|
@@ -43,4 +45,5 @@ export { type SegmentGroupPropsShared } from "./types/SegmentGroup/index.mjs";
|
|
|
43
45
|
export { SegmentGroupContext, type SegmentGroupContextValue, } from "./contexts/SegmentGroup/index.mjs";
|
|
44
46
|
export { SelectButtonSize, SelectButtonEndArrow, SelectButtonVariant, type SelectButtonPropsShared, } from "./types/SelectButton/index.mjs";
|
|
45
47
|
export { type SectionHeaderPropsShared } from "./types/SectionHeader/index.mjs";
|
|
48
|
+
export { ToastSeverity, type ToastPropsShared } from "./types/Toast/index.mjs";
|
|
46
49
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.d.mts.map
CHANGED
|
@@ -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
|
@@ -7,10 +7,14 @@ export { AvatarIconSize, AvatarIconSeverity } from "./types/AvatarIcon/index.mjs
|
|
|
7
7
|
export { BadgeCountSize } from "./types/BadgeCount/index.mjs";
|
|
8
8
|
// BadgeStatus types (ADR-0003 + ADR-0004)
|
|
9
9
|
export { BadgeStatusStatus, BadgeStatusSize } from "./types/BadgeStatus/index.mjs";
|
|
10
|
+
// Content types (ADR-0003 + ADR-0004)
|
|
11
|
+
export { ContentVerticalAlignment } from "./types/Content/index.mjs";
|
|
10
12
|
// HelpText types (ADR-0003 + ADR-0004)
|
|
11
13
|
export { HelpTextSeverity } from "./types/HelpText/index.mjs";
|
|
12
14
|
// IconAlert types (ADR-0003 + ADR-0004)
|
|
13
15
|
export { IconAlertSeverity } from "./types/IconAlert/index.mjs";
|
|
16
|
+
// Toast types (ADR-0004)
|
|
17
|
+
export { TOAST_ANIMATION_DURATION, TOAST_VISIBILITY_DURATION } from "./types/Toast/index.mjs";
|
|
14
18
|
// HeaderSearch types (ADR-0003 + ADR-0004)
|
|
15
19
|
export { HeaderSearchVariant } from "./types/HeaderSearch/index.mjs";
|
|
16
20
|
// KeyValueRow types (ADR-0003 + ADR-0004)
|
|
@@ -48,4 +52,6 @@ export { SegmentButtonVariant } from "./types/SegmentButton/index.mjs";
|
|
|
48
52
|
export { SegmentGroupContext } from "./contexts/SegmentGroup/index.mjs";
|
|
49
53
|
// SelectButton types (ADR-0003 + ADR-0004)
|
|
50
54
|
export { SelectButtonSize, SelectButtonEndArrow, SelectButtonVariant } from "./types/SelectButton/index.mjs";
|
|
55
|
+
// Toast types (ADR-0003 + ADR-0004)
|
|
56
|
+
export { ToastSeverity } from "./types/Toast/index.mjs";
|
|
51
57
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -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,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,uCAAuC;AACvC,OAAO,EAAE,gBAAgB,EAA4B,mCAAyB;AAE9E,wCAAwC;AACxC,OAAO,EACL,iBAAiB,EAElB,oCAA0B;
|
|
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,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;AAEzB,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;AAKvE,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;AAC9B,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,4CAA4C;AAC5C,OAAO,EACL,oBAAoB,EAErB,wCAA8B;AAK/B,6CAA6C;AAC7C,OAAO,EACL,mBAAmB,EAEpB,0CAAgC;AAEjC,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\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// 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-0004)\nexport { type AvatarNetworkPropsShared } 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// 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// SegmentButton types (ADR-0003 + ADR-0004)\nexport {\n SegmentButtonVariant,\n type SegmentButtonPropsShared,\n} from './types/SegmentButton';\n\n// SegmentGroup types (ADR-0003 + ADR-0004)\nexport { type SegmentGroupPropsShared } from './types/SegmentGroup';\n\n// SegmentGroup context (ADR-0003 + ADR-0004)\nexport {\n SegmentGroupContext,\n type SegmentGroupContextValue,\n} from './contexts/SegmentGroup';\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"]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ContentVerticalAlignment = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Vertical alignment options for the Content row.
|
|
6
|
+
*/
|
|
7
|
+
exports.ContentVerticalAlignment = {
|
|
8
|
+
Top: 'top',
|
|
9
|
+
Center: 'center',
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=Content.types.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Content.types.cjs","sourceRoot":"","sources":["../../../src/types/Content/Content.types.ts"],"names":[],"mappings":";;;AAEA;;GAEG;AACU,QAAA,wBAAwB,GAAG;IACtC,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;CACR,CAAC","sourcesContent":["import type { ReactNode } from 'react';\n\n/**\n * Vertical alignment options for the Content row.\n */\nexport const ContentVerticalAlignment = {\n Top: 'top',\n Center: 'center',\n} as const;\n\nexport type ContentVerticalAlignment =\n (typeof ContentVerticalAlignment)[keyof typeof ContentVerticalAlignment];\n\n/**\n * Content shared props (ADR-0004).\n * Platform-independent properties shared across React and React Native.\n */\nexport type ContentPropsShared = {\n /**\n * Optional node rendered before the content row (e.g. leading icon), via\n * `BoxRow.startAccessory` — before `avatar`.\n */\n startAccessory?: ReactNode;\n /**\n * Optional node rendered after the content row (e.g. chevron), via\n * `BoxRow.endAccessory` — after the value/subvalue column.\n */\n endAccessory?: ReactNode;\n /**\n * Optional content above the content row. When set (with `bottomAccessory` or\n * alone), root is `BoxColumn` with this as `topAccessory`.\n */\n topAccessory?: ReactNode;\n /**\n * Optional content below the content row. When set (with `topAccessory` or\n * alone), root is `BoxColumn` with this as `bottomAccessory`.\n */\n bottomAccessory?: ReactNode;\n /**\n * Vertical alignment of the row (avatar, text columns, and value column).\n *\n * Prefer `center` when the row is one or two lines tall—the usual list-item case.\n * Prefer `top` when the row is taller (for example three or more lines of text,\n * or overall row height of 88dp or more) so the avatar and trailing content\n * align with the first line.\n *\n * @default ContentVerticalAlignment.Center\n */\n verticalAlignment?: ContentVerticalAlignment;\n /** Optional leading visual (e.g. avatar), rendered in a 40px-wide centered slot. */\n avatar?: ReactNode;\n /** Optional title (string or node). Default text: BodyMd, Medium, TextDefault. */\n title?: ReactNode;\n /** Optional node rendered before the title. */\n titleStartAccessory?: ReactNode;\n /** Optional node rendered after the title. */\n titleEndAccessory?: ReactNode;\n /** Optional description (string or node). Default text: BodySm, Medium, TextAlternative. */\n description?: ReactNode;\n /** Optional node rendered before the description. */\n descriptionStartAccessory?: ReactNode;\n /** Optional node rendered after the description. */\n descriptionEndAccessory?: ReactNode;\n /** Optional value (string or node). Default text: BodyMd, Medium, TextDefault. */\n value?: ReactNode;\n /** Optional node rendered before the value. */\n valueStartAccessory?: ReactNode;\n /** Optional node rendered after the value. */\n valueEndAccessory?: ReactNode;\n /** Optional subvalue (string or node). Default text: BodySm, Medium, TextAlternative. */\n subvalue?: ReactNode;\n /** Optional node rendered before the subvalue. */\n subvalueStartAccessory?: ReactNode;\n /** Optional node rendered after the subvalue. */\n subvalueEndAccessory?: ReactNode;\n};\n"]}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
/**
|
|
3
|
+
* Vertical alignment options for the Content row.
|
|
4
|
+
*/
|
|
5
|
+
export declare const ContentVerticalAlignment: {
|
|
6
|
+
readonly Top: "top";
|
|
7
|
+
readonly Center: "center";
|
|
8
|
+
};
|
|
9
|
+
export type ContentVerticalAlignment = (typeof ContentVerticalAlignment)[keyof typeof ContentVerticalAlignment];
|
|
10
|
+
/**
|
|
11
|
+
* Content shared props (ADR-0004).
|
|
12
|
+
* Platform-independent properties shared across React and React Native.
|
|
13
|
+
*/
|
|
14
|
+
export type ContentPropsShared = {
|
|
15
|
+
/**
|
|
16
|
+
* Optional node rendered before the content row (e.g. leading icon), via
|
|
17
|
+
* `BoxRow.startAccessory` — before `avatar`.
|
|
18
|
+
*/
|
|
19
|
+
startAccessory?: ReactNode;
|
|
20
|
+
/**
|
|
21
|
+
* Optional node rendered after the content row (e.g. chevron), via
|
|
22
|
+
* `BoxRow.endAccessory` — after the value/subvalue column.
|
|
23
|
+
*/
|
|
24
|
+
endAccessory?: ReactNode;
|
|
25
|
+
/**
|
|
26
|
+
* Optional content above the content row. When set (with `bottomAccessory` or
|
|
27
|
+
* alone), root is `BoxColumn` with this as `topAccessory`.
|
|
28
|
+
*/
|
|
29
|
+
topAccessory?: ReactNode;
|
|
30
|
+
/**
|
|
31
|
+
* Optional content below the content row. When set (with `topAccessory` or
|
|
32
|
+
* alone), root is `BoxColumn` with this as `bottomAccessory`.
|
|
33
|
+
*/
|
|
34
|
+
bottomAccessory?: ReactNode;
|
|
35
|
+
/**
|
|
36
|
+
* Vertical alignment of the row (avatar, text columns, and value column).
|
|
37
|
+
*
|
|
38
|
+
* Prefer `center` when the row is one or two lines tall—the usual list-item case.
|
|
39
|
+
* Prefer `top` when the row is taller (for example three or more lines of text,
|
|
40
|
+
* or overall row height of 88dp or more) so the avatar and trailing content
|
|
41
|
+
* align with the first line.
|
|
42
|
+
*
|
|
43
|
+
* @default ContentVerticalAlignment.Center
|
|
44
|
+
*/
|
|
45
|
+
verticalAlignment?: ContentVerticalAlignment;
|
|
46
|
+
/** Optional leading visual (e.g. avatar), rendered in a 40px-wide centered slot. */
|
|
47
|
+
avatar?: ReactNode;
|
|
48
|
+
/** Optional title (string or node). Default text: BodyMd, Medium, TextDefault. */
|
|
49
|
+
title?: ReactNode;
|
|
50
|
+
/** Optional node rendered before the title. */
|
|
51
|
+
titleStartAccessory?: ReactNode;
|
|
52
|
+
/** Optional node rendered after the title. */
|
|
53
|
+
titleEndAccessory?: ReactNode;
|
|
54
|
+
/** Optional description (string or node). Default text: BodySm, Medium, TextAlternative. */
|
|
55
|
+
description?: ReactNode;
|
|
56
|
+
/** Optional node rendered before the description. */
|
|
57
|
+
descriptionStartAccessory?: ReactNode;
|
|
58
|
+
/** Optional node rendered after the description. */
|
|
59
|
+
descriptionEndAccessory?: ReactNode;
|
|
60
|
+
/** Optional value (string or node). Default text: BodyMd, Medium, TextDefault. */
|
|
61
|
+
value?: ReactNode;
|
|
62
|
+
/** Optional node rendered before the value. */
|
|
63
|
+
valueStartAccessory?: ReactNode;
|
|
64
|
+
/** Optional node rendered after the value. */
|
|
65
|
+
valueEndAccessory?: ReactNode;
|
|
66
|
+
/** Optional subvalue (string or node). Default text: BodySm, Medium, TextAlternative. */
|
|
67
|
+
subvalue?: ReactNode;
|
|
68
|
+
/** Optional node rendered before the subvalue. */
|
|
69
|
+
subvalueStartAccessory?: ReactNode;
|
|
70
|
+
/** Optional node rendered after the subvalue. */
|
|
71
|
+
subvalueEndAccessory?: ReactNode;
|
|
72
|
+
};
|
|
73
|
+
//# sourceMappingURL=Content.types.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Content.types.d.cts","sourceRoot":"","sources":["../../../src/types/Content/Content.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc;AAEvC;;GAEG;AACH,eAAO,MAAM,wBAAwB;;;CAG3B,CAAC;AAEX,MAAM,MAAM,wBAAwB,GAClC,CAAC,OAAO,wBAAwB,CAAC,CAAC,MAAM,OAAO,wBAAwB,CAAC,CAAC;AAE3E;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B;;;OAGG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;;OAGG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;;OAGG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;;OAGG;IACH,eAAe,CAAC,EAAE,SAAS,CAAC;IAC5B;;;;;;;;;OASG;IACH,iBAAiB,CAAC,EAAE,wBAAwB,CAAC;IAC7C,oFAAoF;IACpF,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB,kFAAkF;IAClF,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,+CAA+C;IAC/C,mBAAmB,CAAC,EAAE,SAAS,CAAC;IAChC,8CAA8C;IAC9C,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAC9B,4FAA4F;IAC5F,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,qDAAqD;IACrD,yBAAyB,CAAC,EAAE,SAAS,CAAC;IACtC,oDAAoD;IACpD,uBAAuB,CAAC,EAAE,SAAS,CAAC;IACpC,kFAAkF;IAClF,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,+CAA+C;IAC/C,mBAAmB,CAAC,EAAE,SAAS,CAAC;IAChC,8CAA8C;IAC9C,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAC9B,yFAAyF;IACzF,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,kDAAkD;IAClD,sBAAsB,CAAC,EAAE,SAAS,CAAC;IACnC,iDAAiD;IACjD,oBAAoB,CAAC,EAAE,SAAS,CAAC;CAClC,CAAC"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
/**
|
|
3
|
+
* Vertical alignment options for the Content row.
|
|
4
|
+
*/
|
|
5
|
+
export declare const ContentVerticalAlignment: {
|
|
6
|
+
readonly Top: "top";
|
|
7
|
+
readonly Center: "center";
|
|
8
|
+
};
|
|
9
|
+
export type ContentVerticalAlignment = (typeof ContentVerticalAlignment)[keyof typeof ContentVerticalAlignment];
|
|
10
|
+
/**
|
|
11
|
+
* Content shared props (ADR-0004).
|
|
12
|
+
* Platform-independent properties shared across React and React Native.
|
|
13
|
+
*/
|
|
14
|
+
export type ContentPropsShared = {
|
|
15
|
+
/**
|
|
16
|
+
* Optional node rendered before the content row (e.g. leading icon), via
|
|
17
|
+
* `BoxRow.startAccessory` — before `avatar`.
|
|
18
|
+
*/
|
|
19
|
+
startAccessory?: ReactNode;
|
|
20
|
+
/**
|
|
21
|
+
* Optional node rendered after the content row (e.g. chevron), via
|
|
22
|
+
* `BoxRow.endAccessory` — after the value/subvalue column.
|
|
23
|
+
*/
|
|
24
|
+
endAccessory?: ReactNode;
|
|
25
|
+
/**
|
|
26
|
+
* Optional content above the content row. When set (with `bottomAccessory` or
|
|
27
|
+
* alone), root is `BoxColumn` with this as `topAccessory`.
|
|
28
|
+
*/
|
|
29
|
+
topAccessory?: ReactNode;
|
|
30
|
+
/**
|
|
31
|
+
* Optional content below the content row. When set (with `topAccessory` or
|
|
32
|
+
* alone), root is `BoxColumn` with this as `bottomAccessory`.
|
|
33
|
+
*/
|
|
34
|
+
bottomAccessory?: ReactNode;
|
|
35
|
+
/**
|
|
36
|
+
* Vertical alignment of the row (avatar, text columns, and value column).
|
|
37
|
+
*
|
|
38
|
+
* Prefer `center` when the row is one or two lines tall—the usual list-item case.
|
|
39
|
+
* Prefer `top` when the row is taller (for example three or more lines of text,
|
|
40
|
+
* or overall row height of 88dp or more) so the avatar and trailing content
|
|
41
|
+
* align with the first line.
|
|
42
|
+
*
|
|
43
|
+
* @default ContentVerticalAlignment.Center
|
|
44
|
+
*/
|
|
45
|
+
verticalAlignment?: ContentVerticalAlignment;
|
|
46
|
+
/** Optional leading visual (e.g. avatar), rendered in a 40px-wide centered slot. */
|
|
47
|
+
avatar?: ReactNode;
|
|
48
|
+
/** Optional title (string or node). Default text: BodyMd, Medium, TextDefault. */
|
|
49
|
+
title?: ReactNode;
|
|
50
|
+
/** Optional node rendered before the title. */
|
|
51
|
+
titleStartAccessory?: ReactNode;
|
|
52
|
+
/** Optional node rendered after the title. */
|
|
53
|
+
titleEndAccessory?: ReactNode;
|
|
54
|
+
/** Optional description (string or node). Default text: BodySm, Medium, TextAlternative. */
|
|
55
|
+
description?: ReactNode;
|
|
56
|
+
/** Optional node rendered before the description. */
|
|
57
|
+
descriptionStartAccessory?: ReactNode;
|
|
58
|
+
/** Optional node rendered after the description. */
|
|
59
|
+
descriptionEndAccessory?: ReactNode;
|
|
60
|
+
/** Optional value (string or node). Default text: BodyMd, Medium, TextDefault. */
|
|
61
|
+
value?: ReactNode;
|
|
62
|
+
/** Optional node rendered before the value. */
|
|
63
|
+
valueStartAccessory?: ReactNode;
|
|
64
|
+
/** Optional node rendered after the value. */
|
|
65
|
+
valueEndAccessory?: ReactNode;
|
|
66
|
+
/** Optional subvalue (string or node). Default text: BodySm, Medium, TextAlternative. */
|
|
67
|
+
subvalue?: ReactNode;
|
|
68
|
+
/** Optional node rendered before the subvalue. */
|
|
69
|
+
subvalueStartAccessory?: ReactNode;
|
|
70
|
+
/** Optional node rendered after the subvalue. */
|
|
71
|
+
subvalueEndAccessory?: ReactNode;
|
|
72
|
+
};
|
|
73
|
+
//# sourceMappingURL=Content.types.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Content.types.d.mts","sourceRoot":"","sources":["../../../src/types/Content/Content.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc;AAEvC;;GAEG;AACH,eAAO,MAAM,wBAAwB;;;CAG3B,CAAC;AAEX,MAAM,MAAM,wBAAwB,GAClC,CAAC,OAAO,wBAAwB,CAAC,CAAC,MAAM,OAAO,wBAAwB,CAAC,CAAC;AAE3E;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B;;;OAGG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B;;;OAGG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;;OAGG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;;OAGG;IACH,eAAe,CAAC,EAAE,SAAS,CAAC;IAC5B;;;;;;;;;OASG;IACH,iBAAiB,CAAC,EAAE,wBAAwB,CAAC;IAC7C,oFAAoF;IACpF,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB,kFAAkF;IAClF,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,+CAA+C;IAC/C,mBAAmB,CAAC,EAAE,SAAS,CAAC;IAChC,8CAA8C;IAC9C,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAC9B,4FAA4F;IAC5F,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,qDAAqD;IACrD,yBAAyB,CAAC,EAAE,SAAS,CAAC;IACtC,oDAAoD;IACpD,uBAAuB,CAAC,EAAE,SAAS,CAAC;IACpC,kFAAkF;IAClF,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,+CAA+C;IAC/C,mBAAmB,CAAC,EAAE,SAAS,CAAC;IAChC,8CAA8C;IAC9C,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAC9B,yFAAyF;IACzF,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,kDAAkD;IAClD,sBAAsB,CAAC,EAAE,SAAS,CAAC;IACnC,iDAAiD;IACjD,oBAAoB,CAAC,EAAE,SAAS,CAAC;CAClC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Content.types.mjs","sourceRoot":"","sources":["../../../src/types/Content/Content.types.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAG;IACtC,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;CACR,CAAC","sourcesContent":["import type { ReactNode } from 'react';\n\n/**\n * Vertical alignment options for the Content row.\n */\nexport const ContentVerticalAlignment = {\n Top: 'top',\n Center: 'center',\n} as const;\n\nexport type ContentVerticalAlignment =\n (typeof ContentVerticalAlignment)[keyof typeof ContentVerticalAlignment];\n\n/**\n * Content shared props (ADR-0004).\n * Platform-independent properties shared across React and React Native.\n */\nexport type ContentPropsShared = {\n /**\n * Optional node rendered before the content row (e.g. leading icon), via\n * `BoxRow.startAccessory` — before `avatar`.\n */\n startAccessory?: ReactNode;\n /**\n * Optional node rendered after the content row (e.g. chevron), via\n * `BoxRow.endAccessory` — after the value/subvalue column.\n */\n endAccessory?: ReactNode;\n /**\n * Optional content above the content row. When set (with `bottomAccessory` or\n * alone), root is `BoxColumn` with this as `topAccessory`.\n */\n topAccessory?: ReactNode;\n /**\n * Optional content below the content row. When set (with `topAccessory` or\n * alone), root is `BoxColumn` with this as `bottomAccessory`.\n */\n bottomAccessory?: ReactNode;\n /**\n * Vertical alignment of the row (avatar, text columns, and value column).\n *\n * Prefer `center` when the row is one or two lines tall—the usual list-item case.\n * Prefer `top` when the row is taller (for example three or more lines of text,\n * or overall row height of 88dp or more) so the avatar and trailing content\n * align with the first line.\n *\n * @default ContentVerticalAlignment.Center\n */\n verticalAlignment?: ContentVerticalAlignment;\n /** Optional leading visual (e.g. avatar), rendered in a 40px-wide centered slot. */\n avatar?: ReactNode;\n /** Optional title (string or node). Default text: BodyMd, Medium, TextDefault. */\n title?: ReactNode;\n /** Optional node rendered before the title. */\n titleStartAccessory?: ReactNode;\n /** Optional node rendered after the title. */\n titleEndAccessory?: ReactNode;\n /** Optional description (string or node). Default text: BodySm, Medium, TextAlternative. */\n description?: ReactNode;\n /** Optional node rendered before the description. */\n descriptionStartAccessory?: ReactNode;\n /** Optional node rendered after the description. */\n descriptionEndAccessory?: ReactNode;\n /** Optional value (string or node). Default text: BodyMd, Medium, TextDefault. */\n value?: ReactNode;\n /** Optional node rendered before the value. */\n valueStartAccessory?: ReactNode;\n /** Optional node rendered after the value. */\n valueEndAccessory?: ReactNode;\n /** Optional subvalue (string or node). Default text: BodySm, Medium, TextAlternative. */\n subvalue?: ReactNode;\n /** Optional node rendered before the subvalue. */\n subvalueStartAccessory?: ReactNode;\n /** Optional node rendered after the subvalue. */\n subvalueEndAccessory?: ReactNode;\n};\n"]}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ContentVerticalAlignment = void 0;
|
|
4
|
+
var Content_types_1 = require("./Content.types.cjs");
|
|
5
|
+
Object.defineProperty(exports, "ContentVerticalAlignment", { enumerable: true, get: function () { return Content_types_1.ContentVerticalAlignment; } });
|
|
6
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../../../src/types/Content/index.ts"],"names":[],"mappings":";;;AAAA,qDAGyB;AAFvB,yHAAA,wBAAwB,OAAA","sourcesContent":["export {\n ContentVerticalAlignment,\n type ContentPropsShared,\n} from './Content.types';\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../../../src/types/Content/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,wBAAwB,EACxB,KAAK,kBAAkB,GACxB,4BAAwB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/types/Content/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,wBAAwB,EACxB,KAAK,kBAAkB,GACxB,4BAAwB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/types/Content/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,wBAAwB,EAEzB,4BAAwB","sourcesContent":["export {\n ContentVerticalAlignment,\n type ContentPropsShared,\n} from './Content.types';\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.types.cjs","sourceRoot":"","sources":["../../../src/types/Icon/Icon.types.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * Icon - color (ADR-0003)\n * All icon color values shared across React and React Native platforms.\n */\nexport const IconColor = {\n /** For default neutral icons */\n IconDefault: 'text-icon-default',\n /** For softer neutral icons */\n IconAlternative: 'text-icon-alternative',\n /** For the weakest contrast neutral icons (not accessible) */\n IconMuted: 'text-icon-muted',\n /** For elements used on top of overlay/alternative. Used for text, icon, or border */\n OverlayInverse: 'text-overlay-inverse',\n /** For interactive, active, and selected semantics. Used for text, background, icon, or border */\n PrimaryDefault: 'text-primary-default',\n /** For softer variants of primary interactive elements */\n PrimaryAlternative: 'text-primary-alternative',\n /** For elements used on top of primary/default. Used for text, icon, or border */\n PrimaryInverse: 'text-primary-inverse',\n /** For critical alert semantic elements. Used for text, background, icon, or border */\n ErrorDefault: 'text-error-default',\n /** For softer variants of error elements */\n ErrorAlternative: 'text-error-alternative',\n /** For elements used on top of error/default. Used for text, icon, or border */\n ErrorInverse: 'text-error-inverse',\n /** For caution alert semantic elements. Used for text, background, icon, or border */\n WarningDefault: 'text-warning-default',\n /** For elements used on top of warning/default. Used for text, icon, or border */\n WarningInverse: 'text-warning-inverse',\n /** For positive semantic elements. Used for text, background, icon, or border */\n SuccessDefault: 'text-success-default',\n /** For elements used on top of success/default. Used for text, icon, or border */\n SuccessInverse: 'text-success-inverse',\n /** For informational read-only elements. Used for text, background, icon, or border */\n InfoDefault: 'text-info-default',\n /** For elements used on top of info/default. Used for text, icon, or border */\n InfoInverse: 'text-info-inverse',\n} as const;\n\nexport type IconColor = (typeof IconColor)[keyof typeof IconColor];\n\n// /////////////////////////////////////////////////////\n// DO NOT EDIT - generated by generate-icons.ts\n// /////////////////////////////////////////////////////\n\n/**\n * Icon - name\n * All icon names shared across React and React Native platforms.\n * This block is auto-generated — do not edit directly.\n * Run `yarn generate:icons` from the repo root to regenerate.\n */\nexport const IconName = {\n Accessibility: 'Accessibility',\n Activity: 'Activity',\n AddCard: 'AddCard',\n AddCircle: 'AddCircle',\n AddSquare: 'AddSquare',\n Add: 'Add',\n AfterHours: 'AfterHours',\n Ai: 'Ai',\n AlternateEmail: 'AlternateEmail',\n AppleLogo: 'AppleLogo',\n Apps: 'Apps',\n Arrow2Down: 'Arrow2Down',\n Arrow2Left: 'Arrow2Left',\n Arrow2Right: 'Arrow2Right',\n Arrow2UpRight: 'Arrow2UpRight',\n Arrow2Up: 'Arrow2Up',\n ArrowCircleDown: 'ArrowCircleDown',\n ArrowCircleUp: 'ArrowCircleUp',\n ArrowDoubleLeft: 'ArrowDoubleLeft',\n ArrowDoubleRight: 'ArrowDoubleRight',\n ArrowDown: 'ArrowDown',\n ArrowDropDownCircle: 'ArrowDropDownCircle',\n ArrowLeft: 'ArrowLeft',\n ArrowRight: 'ArrowRight',\n ArrowUp: 'ArrowUp',\n AttachMoney: 'AttachMoney',\n Attachment: 'Attachment',\n Backspace: 'Backspace',\n Ban: 'Ban',\n BankAssured: 'BankAssured',\n Bank: 'Bank',\n Bold: 'Bold',\n Book: 'Book',\n Bookmark: 'Bookmark',\n Bridge: 'Bridge',\n Briefcase: 'Briefcase',\n Bulb: 'Bulb',\n BuySell: 'BuySell',\n Cake: 'Cake',\n Calculator: 'Calculator',\n Calendar: 'Calendar',\n Call: 'Call',\n Camera: 'Camera',\n Campaign: 'Campaign',\n Candlestick: 'Candlestick',\n CardPos: 'CardPos',\n Card: 'Card',\n Cash: 'Cash',\n Category: 'Category',\n Chart: 'Chart',\n CheckBold: 'CheckBold',\n Check: 'Check',\n CircleX: 'CircleX',\n Clear: 'Clear',\n ClockFilled: 'ClockFilled',\n Clock: 'Clock',\n Close: 'Close',\n CloudDownload: 'CloudDownload',\n CloudUpload: 'CloudUpload',\n Cloud: 'Cloud',\n CodeCircle: 'CodeCircle',\n Code: 'Code',\n Coin: 'Coin',\n Collapse: 'Collapse',\n Confirmation: 'Confirmation',\n Connect: 'Connect',\n CopySuccess: 'CopySuccess',\n Copy: 'Copy',\n CorporateFare: 'CorporateFare',\n CreditCheck: 'CreditCheck',\n CurrencyFranc: 'CurrencyFranc',\n CurrencyLira: 'CurrencyLira',\n CurrencyPound: 'CurrencyPound',\n CurrencyYuan: 'CurrencyYuan',\n Customize: 'Customize',\n Danger: 'Danger',\n DarkFilled: 'DarkFilled',\n Dark: 'Dark',\n Data: 'Data',\n Description: 'Description',\n Details: 'Details',\n Diagram: 'Diagram',\n DocumentCode: 'DocumentCode',\n Download: 'Download',\n Draft: 'Draft',\n EcoLeaf: 'EcoLeaf',\n EditSquare: 'EditSquare',\n Edit: 'Edit',\n EncryptedAdd: 'EncryptedAdd',\n Eraser: 'Eraser',\n Error: 'Error',\n Ethereum: 'Ethereum',\n Exchange: 'Exchange',\n ExpandVertical: 'ExpandVertical',\n Expand: 'Expand',\n ExploreFilled: 'ExploreFilled',\n Explore: 'Explore',\n Export: 'Export',\n Extension: 'Extension',\n EyeSlash: 'EyeSlash',\n Eye: 'Eye',\n FaceId: 'FaceId',\n Feedback: 'Feedback',\n File: 'File',\n Filter: 'Filter',\n Fingerprint: 'Fingerprint',\n Fire: 'Fire',\n FirstPage: 'FirstPage',\n Flag: 'Flag',\n FlashSlash: 'FlashSlash',\n Flash: 'Flash',\n Flask: 'Flask',\n Flower: 'Flower',\n Folder: 'Folder',\n Forest: 'Forest',\n FullCircle: 'FullCircle',\n Gas: 'Gas',\n Gift: 'Gift',\n GlobalSearch: 'GlobalSearch',\n Global: 'Global',\n Graph: 'Graph',\n Group: 'Group',\n Hardware: 'Hardware',\n HashTag: 'HashTag',\n HeartFilled: 'HeartFilled',\n Heart: 'Heart',\n Hierarchy: 'Hierarchy',\n HomeFilled: 'HomeFilled',\n Home: 'Home',\n Image: 'Image',\n Info: 'Info',\n Inventory: 'Inventory',\n Joystick: 'Joystick',\n KeepFilled: 'KeepFilled',\n Keep: 'Keep',\n Key: 'Key',\n LastPage: 'LastPage',\n LightFilled: 'LightFilled',\n Light: 'Light',\n Link: 'Link',\n ListArrow: 'ListArrow',\n Loading: 'Loading',\n Location: 'Location',\n LockSlash: 'LockSlash',\n Lock: 'Lock',\n LockedFilled: 'LockedFilled',\n Login: 'Login',\n Logout: 'Logout',\n Mail: 'Mail',\n Map: 'Map',\n Menu: 'Menu',\n Merge: 'Merge',\n MessageQuestion: 'MessageQuestion',\n Messages: 'Messages',\n MetamaskFoxOutline: 'MetamaskFoxOutline',\n Mic: 'Mic',\n MinusBold: 'MinusBold',\n MinusSquare: 'MinusSquare',\n Minus: 'Minus',\n Mobile: 'Mobile',\n MoneyBag: 'MoneyBag',\n Money: 'Money',\n Monitor: 'Monitor',\n MoreHorizontal: 'MoreHorizontal',\n MoreVertical: 'MoreVertical',\n MountainFlag: 'MountainFlag',\n MusdFilled: 'MusdFilled',\n Musd: 'Musd',\n MusicNote: 'MusicNote',\n NoPhotography: 'NoPhotography',\n Notification: 'Notification',\n PageInfo: 'PageInfo',\n Palette: 'Palette',\n PasswordCheck: 'PasswordCheck',\n Pending: 'Pending',\n People: 'People',\n PersonCancel: 'PersonCancel',\n PieChart: 'PieChart',\n Pin: 'Pin',\n Plant: 'Plant',\n Plug: 'Plug',\n PlusAndMinus: 'PlusAndMinus',\n PolicyAlert: 'PolicyAlert',\n PopUp: 'PopUp',\n Predictions: 'Predictions',\n Print: 'Print',\n PriorityHigh: 'PriorityHigh',\n PrivacyTip: 'PrivacyTip',\n ProgrammingArrows: 'ProgrammingArrows',\n Publish: 'Publish',\n QrCode: 'QrCode',\n Question: 'Question',\n Receive: 'Receive',\n Received: 'Received',\n Refresh: 'Refresh',\n RemoveMinus: 'RemoveMinus',\n Report: 'Report',\n Rocket: 'Rocket',\n SaveFilled: 'SaveFilled',\n Save: 'Save',\n Saving: 'Saving',\n ScanBarcode: 'ScanBarcode',\n ScanFocus: 'ScanFocus',\n Scan: 'Scan',\n Search: 'Search',\n SecurityAlert: 'SecurityAlert',\n SecurityCross: 'SecurityCross',\n SecurityKey: 'SecurityKey',\n SecuritySearch: 'SecuritySearch',\n SecuritySlash: 'SecuritySlash',\n SecurityTick: 'SecurityTick',\n SecurityTime: 'SecurityTime',\n SecurityUser: 'SecurityUser',\n Security: 'Security',\n Send: 'Send',\n SentimentDissatisfied: 'SentimentDissatisfied',\n SentimentNeutral: 'SentimentNeutral',\n SentimentSatisfied: 'SentimentSatisfied',\n SentimentVerySatisfied: 'SentimentVerySatisfied',\n SettingFilled: 'SettingFilled',\n Setting: 'Setting',\n Share: 'Share',\n ShieldLock: 'ShieldLock',\n ShoppingBag: 'ShoppingBag',\n ShoppingCart: 'ShoppingCart',\n SidePanel: 'SidePanel',\n SignalCellular: 'SignalCellular',\n Slash: 'Slash',\n Sms: 'Sms',\n SnapsMobile: 'SnapsMobile',\n SnapsPlus: 'SnapsPlus',\n SnapsRound: 'SnapsRound',\n Snaps: 'Snaps',\n SortByAlpha: 'SortByAlpha',\n Sort: 'Sort',\n Sparkle: 'Sparkle',\n Speed: 'Speed',\n Speedometer: 'Speedometer',\n Square: 'Square',\n Stake: 'Stake',\n StarFilled: 'StarFilled',\n Star: 'Star',\n Start: 'Start',\n Storefront: 'Storefront',\n Student: 'Student',\n SwapHorizontal: 'SwapHorizontal',\n SwapVertical: 'SwapVertical',\n TabClose: 'TabClose',\n TableRow: 'TableRow',\n Tablet: 'Tablet',\n Tag: 'Tag',\n Telegram: 'Telegram',\n ThumbDownFilled: 'ThumbDownFilled',\n ThumbDown: 'ThumbDown',\n ThumbUpFilled: 'ThumbUpFilled',\n ThumbUp: 'ThumbUp',\n Tint: 'Tint',\n Tooltip: 'Tooltip',\n Translate: 'Translate',\n Trash: 'Trash',\n TrendDown: 'TrendDown',\n TrendUp: 'TrendUp',\n Undo: 'Undo',\n Unfold: 'Unfold',\n UnlockedFilled: 'UnlockedFilled',\n Unpin: 'Unpin',\n UploadFile: 'UploadFile',\n Upload: 'Upload',\n Usb: 'Usb',\n UserCheck: 'UserCheck',\n UserCircleAdd: 'UserCircleAdd',\n UserCircleRemove: 'UserCircleRemove',\n UserCircle: 'UserCircle',\n User: 'User',\n VerifiedFilled: 'VerifiedFilled',\n Verified: 'Verified',\n Videocam: 'Videocam',\n ViewColumn: 'ViewColumn',\n ViewInAr: 'ViewInAr',\n VolumeOff: 'VolumeOff',\n VolumeUp: 'VolumeUp',\n WalletFilled: 'WalletFilled',\n Wallet: 'Wallet',\n Warning: 'Warning',\n WebTraffic: 'WebTraffic',\n Widgets: 'Widgets',\n WifiOff: 'WifiOff',\n Wifi: 'Wifi',\n X: 'X',\n} as const;\n\nexport type IconName = (typeof IconName)[keyof typeof IconName];\n\n// END generated IconName\n\n/**\n * Icon - size\n * Common icon sizes shared across React and React Native platforms.\n */\nexport const IconSize = {\n /** Extra small - 12px */\n Xs: 'xs',\n /** Small - 16px */\n Sm: 'sm',\n /** Medium - 20px (Default) */\n Md: 'md',\n /** Large - 24px */\n Lg: 'lg',\n /** Extra large - 32px */\n Xl: 'xl',\n} as const;\n\nexport type IconSize = (typeof IconSize)[keyof typeof IconSize];\n\n/**\n * Icon component shared props (ADR-0004).\n */\nexport type IconPropsShared = {\n /**\n * Required prop to specify which icon to render from the icon set.\n */\n name: IconName;\n /**\n * Optional prop that sets the color of the icon using predefined theme colors.\n *\n * @default IconColor.IconDefault\n */\n color?: IconColor;\n /**\n * Optional prop to control the size of the icon.\n * Different sizes map to specific pixel dimensions.\n *\n * @default IconSize.Md\n */\n size?: IconSize;\n};\n"]}
|
|
1
|
+
{"version":3,"file":"Icon.types.cjs","sourceRoot":"","sources":["../../../src/types/Icon/Icon.types.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACU,QAAA,SAAS,GAAG;IACvB,gCAAgC;IAChC,WAAW,EAAE,mBAAmB;IAChC,+BAA+B;IAC/B,eAAe,EAAE,uBAAuB;IACxC,8DAA8D;IAC9D,SAAS,EAAE,iBAAiB;IAC5B,sFAAsF;IACtF,cAAc,EAAE,sBAAsB;IACtC,kGAAkG;IAClG,cAAc,EAAE,sBAAsB;IACtC,0DAA0D;IAC1D,kBAAkB,EAAE,0BAA0B;IAC9C,kFAAkF;IAClF,cAAc,EAAE,sBAAsB;IACtC,uFAAuF;IACvF,YAAY,EAAE,oBAAoB;IAClC,4CAA4C;IAC5C,gBAAgB,EAAE,wBAAwB;IAC1C,gFAAgF;IAChF,YAAY,EAAE,oBAAoB;IAClC,sFAAsF;IACtF,cAAc,EAAE,sBAAsB;IACtC,kFAAkF;IAClF,cAAc,EAAE,sBAAsB;IACtC,iFAAiF;IACjF,cAAc,EAAE,sBAAsB;IACtC,kFAAkF;IAClF,cAAc,EAAE,sBAAsB;IACtC,uFAAuF;IACvF,WAAW,EAAE,mBAAmB;IAChC,+EAA+E;IAC/E,WAAW,EAAE,mBAAmB;CACxB,CAAC;AAIX,wDAAwD;AACxD,+CAA+C;AAC/C,wDAAwD;AAExD;;;;;GAKG;AACU,QAAA,QAAQ,GAAG;IACtB,aAAa,EAAE,eAAe;IAC9B,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;IACtB,GAAG,EAAE,KAAK;IACV,UAAU,EAAE,YAAY;IACxB,EAAE,EAAE,IAAI;IACR,cAAc,EAAE,gBAAgB;IAChC,SAAS,EAAE,WAAW;IACtB,IAAI,EAAE,MAAM;IACZ,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,WAAW,EAAE,aAAa;IAC1B,aAAa,EAAE,eAAe;IAC9B,QAAQ,EAAE,UAAU;IACpB,eAAe,EAAE,iBAAiB;IAClC,aAAa,EAAE,eAAe;IAC9B,eAAe,EAAE,iBAAiB;IAClC,gBAAgB,EAAE,kBAAkB;IACpC,SAAS,EAAE,WAAW;IACtB,mBAAmB,EAAE,qBAAqB;IAC1C,SAAS,EAAE,WAAW;IACtB,UAAU,EAAE,YAAY;IACxB,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,UAAU,EAAE,YAAY;IACxB,SAAS,EAAE,WAAW;IACtB,GAAG,EAAE,KAAK;IACV,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,SAAS,EAAE,WAAW;IACtB,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;IACZ,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;IACpB,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,WAAW;IACtB,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,aAAa,EAAE,eAAe;IAC9B,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,QAAQ,EAAE,UAAU;IACpB,YAAY,EAAE,cAAc;IAC5B,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;IACZ,aAAa,EAAE,eAAe;IAC9B,WAAW,EAAE,aAAa;IAC1B,aAAa,EAAE,eAAe;IAC9B,YAAY,EAAE,cAAc;IAC5B,aAAa,EAAE,eAAe;IAC9B,YAAY,EAAE,cAAc;IAC5B,SAAS,EAAE,WAAW;IACtB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,YAAY,EAAE,cAAc;IAC5B,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,YAAY,EAAE,cAAc;IAC5B,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;IACpB,cAAc,EAAE,gBAAgB;IAChC,MAAM,EAAE,QAAQ;IAChB,aAAa,EAAE,eAAe;IAC9B,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;IAChB,SAAS,EAAE,WAAW;IACtB,QAAQ,EAAE,UAAU;IACpB,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;IAChB,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,WAAW;IACtB,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;IAC1B,UAAU,EAAE,YAAY;IACxB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,YAAY,EAAE,cAAc;IAC5B,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,WAAW;IACtB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,WAAW;IACtB,QAAQ,EAAE,UAAU;IACpB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,QAAQ,EAAE,UAAU;IACpB,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,WAAW;IACtB,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,WAAW;IACtB,IAAI,EAAE,MAAM;IACZ,YAAY,EAAE,cAAc;IAC5B,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,eAAe,EAAE,iBAAiB;IAClC,QAAQ,EAAE,UAAU;IACpB,kBAAkB,EAAE,oBAAoB;IACxC,GAAG,EAAE,KAAK;IACV,SAAS,EAAE,WAAW;IACtB,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;IAClB,cAAc,EAAE,gBAAgB;IAChC,YAAY,EAAE,cAAc;IAC5B,YAAY,EAAE,cAAc;IAC5B,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,WAAW;IACtB,aAAa,EAAE,eAAe;IAC9B,YAAY,EAAE,cAAc;IAC5B,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;IAClB,aAAa,EAAE,eAAe;IAC9B,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;IAChB,YAAY,EAAE,cAAc;IAC5B,QAAQ,EAAE,UAAU;IACpB,GAAG,EAAE,KAAK;IACV,KAAK,EAAE,OAAO;IACd,IAAI,EAAE,MAAM;IACZ,YAAY,EAAE,cAAc;IAC5B,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,OAAO;IACd,YAAY,EAAE,cAAc;IAC5B,UAAU,EAAE,YAAY;IACxB,iBAAiB,EAAE,mBAAmB;IACtC,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;IAChB,WAAW,EAAE,aAAa;IAC1B,SAAS,EAAE,WAAW;IACtB,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;IAChB,aAAa,EAAE,eAAe;IAC9B,aAAa,EAAE,eAAe;IAC9B,WAAW,EAAE,aAAa;IAC1B,cAAc,EAAE,gBAAgB;IAChC,aAAa,EAAE,eAAe;IAC9B,YAAY,EAAE,cAAc;IAC5B,YAAY,EAAE,cAAc;IAC5B,YAAY,EAAE,cAAc;IAC5B,QAAQ,EAAE,UAAU;IACpB,IAAI,EAAE,MAAM;IACZ,qBAAqB,EAAE,uBAAuB;IAC9C,gBAAgB,EAAE,kBAAkB;IACpC,kBAAkB,EAAE,oBAAoB;IACxC,sBAAsB,EAAE,wBAAwB;IAChD,aAAa,EAAE,eAAe;IAC9B,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;IACxB,WAAW,EAAE,aAAa;IAC1B,YAAY,EAAE,cAAc;IAC5B,SAAS,EAAE,WAAW;IACtB,cAAc,EAAE,gBAAgB;IAChC,KAAK,EAAE,OAAO;IACd,GAAG,EAAE,KAAK;IACV,WAAW,EAAE,aAAa;IAC1B,SAAS,EAAE,WAAW;IACtB,UAAU,EAAE,YAAY;IACxB,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,aAAa;IAC1B,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,WAAW,EAAE,aAAa;IAC1B,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;IACxB,OAAO,EAAE,SAAS;IAClB,cAAc,EAAE,gBAAgB;IAChC,YAAY,EAAE,cAAc;IAC5B,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;IAChB,GAAG,EAAE,KAAK;IACV,QAAQ,EAAE,UAAU;IACpB,eAAe,EAAE,iBAAiB;IAClC,SAAS,EAAE,WAAW;IACtB,aAAa,EAAE,eAAe;IAC9B,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,SAAS,EAAE,WAAW;IACtB,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,WAAW;IACtB,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;IAChB,cAAc,EAAE,gBAAgB;IAChC,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;IACxB,MAAM,EAAE,QAAQ;IAChB,GAAG,EAAE,KAAK;IACV,SAAS,EAAE,WAAW;IACtB,aAAa,EAAE,eAAe;IAC9B,gBAAgB,EAAE,kBAAkB;IACpC,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,cAAc,EAAE,gBAAgB;IAChC,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;IACpB,UAAU,EAAE,YAAY;IACxB,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,WAAW;IACtB,QAAQ,EAAE,UAAU;IACpB,YAAY,EAAE,cAAc;IAC5B,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,YAAY;IACxB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;IACZ,CAAC,EAAE,GAAG;CACE,CAAC;AAIX,yBAAyB;AAEzB;;;GAGG;AACU,QAAA,QAAQ,GAAG;IACtB,yBAAyB;IACzB,EAAE,EAAE,IAAI;IACR,mBAAmB;IACnB,EAAE,EAAE,IAAI;IACR,8BAA8B;IAC9B,EAAE,EAAE,IAAI;IACR,mBAAmB;IACnB,EAAE,EAAE,IAAI;IACR,yBAAyB;IACzB,EAAE,EAAE,IAAI;CACA,CAAC","sourcesContent":["/**\n * Icon - color (ADR-0003)\n * All icon color values shared across React and React Native platforms.\n */\nexport const IconColor = {\n /** For default neutral icons */\n IconDefault: 'text-icon-default',\n /** For softer neutral icons */\n IconAlternative: 'text-icon-alternative',\n /** For the weakest contrast neutral icons (not accessible) */\n IconMuted: 'text-icon-muted',\n /** For elements used on top of overlay/alternative. Used for text, icon, or border */\n OverlayInverse: 'text-overlay-inverse',\n /** For interactive, active, and selected semantics. Used for text, background, icon, or border */\n PrimaryDefault: 'text-primary-default',\n /** For softer variants of primary interactive elements */\n PrimaryAlternative: 'text-primary-alternative',\n /** For elements used on top of primary/default. Used for text, icon, or border */\n PrimaryInverse: 'text-primary-inverse',\n /** For critical alert semantic elements. Used for text, background, icon, or border */\n ErrorDefault: 'text-error-default',\n /** For softer variants of error elements */\n ErrorAlternative: 'text-error-alternative',\n /** For elements used on top of error/default. Used for text, icon, or border */\n ErrorInverse: 'text-error-inverse',\n /** For caution alert semantic elements. Used for text, background, icon, or border */\n WarningDefault: 'text-warning-default',\n /** For elements used on top of warning/default. Used for text, icon, or border */\n WarningInverse: 'text-warning-inverse',\n /** For positive semantic elements. Used for text, background, icon, or border */\n SuccessDefault: 'text-success-default',\n /** For elements used on top of success/default. Used for text, icon, or border */\n SuccessInverse: 'text-success-inverse',\n /** For informational read-only elements. Used for text, background, icon, or border */\n InfoDefault: 'text-info-default',\n /** For elements used on top of info/default. Used for text, icon, or border */\n InfoInverse: 'text-info-inverse',\n} as const;\n\nexport type IconColor = (typeof IconColor)[keyof typeof IconColor];\n\n// /////////////////////////////////////////////////////\n// DO NOT EDIT - generated by generate-icons.ts\n// /////////////////////////////////////////////////////\n\n/**\n * Icon - name\n * All icon names shared across React and React Native platforms.\n * This block is auto-generated — do not edit directly.\n * Run `yarn generate:icons` from the repo root to regenerate.\n */\nexport const IconName = {\n Accessibility: 'Accessibility',\n Activity: 'Activity',\n AddCard: 'AddCard',\n AddCircle: 'AddCircle',\n AddSquare: 'AddSquare',\n Add: 'Add',\n AfterHours: 'AfterHours',\n Ai: 'Ai',\n AlternateEmail: 'AlternateEmail',\n AppleLogo: 'AppleLogo',\n Apps: 'Apps',\n Arrow2Down: 'Arrow2Down',\n Arrow2Left: 'Arrow2Left',\n Arrow2Right: 'Arrow2Right',\n Arrow2UpRight: 'Arrow2UpRight',\n Arrow2Up: 'Arrow2Up',\n ArrowCircleDown: 'ArrowCircleDown',\n ArrowCircleUp: 'ArrowCircleUp',\n ArrowDoubleLeft: 'ArrowDoubleLeft',\n ArrowDoubleRight: 'ArrowDoubleRight',\n ArrowDown: 'ArrowDown',\n ArrowDropDownCircle: 'ArrowDropDownCircle',\n ArrowLeft: 'ArrowLeft',\n ArrowRight: 'ArrowRight',\n ArrowUp: 'ArrowUp',\n AttachMoney: 'AttachMoney',\n Attachment: 'Attachment',\n Backspace: 'Backspace',\n Ban: 'Ban',\n BankAssured: 'BankAssured',\n Bank: 'Bank',\n Bold: 'Bold',\n Book: 'Book',\n Bookmark: 'Bookmark',\n Bridge: 'Bridge',\n Briefcase: 'Briefcase',\n Bulb: 'Bulb',\n BuySell: 'BuySell',\n Cake: 'Cake',\n Calculator: 'Calculator',\n Calendar: 'Calendar',\n Call: 'Call',\n Camera: 'Camera',\n Campaign: 'Campaign',\n Candlestick: 'Candlestick',\n CardPos: 'CardPos',\n Card: 'Card',\n Cash: 'Cash',\n Category: 'Category',\n Chart: 'Chart',\n CheckBold: 'CheckBold',\n Check: 'Check',\n CircleX: 'CircleX',\n Clear: 'Clear',\n ClockFilled: 'ClockFilled',\n Clock: 'Clock',\n Close: 'Close',\n CloudDownload: 'CloudDownload',\n CloudUpload: 'CloudUpload',\n Cloud: 'Cloud',\n CodeCircle: 'CodeCircle',\n Code: 'Code',\n Coin: 'Coin',\n Collapse: 'Collapse',\n Confirmation: 'Confirmation',\n Connect: 'Connect',\n CopySuccess: 'CopySuccess',\n Copy: 'Copy',\n CorporateFare: 'CorporateFare',\n CreditCheck: 'CreditCheck',\n CurrencyFranc: 'CurrencyFranc',\n CurrencyLira: 'CurrencyLira',\n CurrencyPound: 'CurrencyPound',\n CurrencyYuan: 'CurrencyYuan',\n Customize: 'Customize',\n Danger: 'Danger',\n DarkFilled: 'DarkFilled',\n Dark: 'Dark',\n Data: 'Data',\n Description: 'Description',\n Details: 'Details',\n Diagram: 'Diagram',\n DocumentCode: 'DocumentCode',\n Download: 'Download',\n Draft: 'Draft',\n EcoLeaf: 'EcoLeaf',\n EditSquare: 'EditSquare',\n Edit: 'Edit',\n EncryptedAdd: 'EncryptedAdd',\n Eraser: 'Eraser',\n Error: 'Error',\n Ethereum: 'Ethereum',\n Exchange: 'Exchange',\n ExpandVertical: 'ExpandVertical',\n Expand: 'Expand',\n ExploreFilled: 'ExploreFilled',\n Explore: 'Explore',\n Export: 'Export',\n Extension: 'Extension',\n EyeSlash: 'EyeSlash',\n Eye: 'Eye',\n FaceId: 'FaceId',\n Feedback: 'Feedback',\n File: 'File',\n Filter: 'Filter',\n Fingerprint: 'Fingerprint',\n Fire: 'Fire',\n FirstPage: 'FirstPage',\n Flag: 'Flag',\n FlashFilled: 'FlashFilled',\n FlashSlash: 'FlashSlash',\n Flash: 'Flash',\n Flask: 'Flask',\n Flower: 'Flower',\n Folder: 'Folder',\n Forest: 'Forest',\n FullCircle: 'FullCircle',\n Gas: 'Gas',\n Gift: 'Gift',\n GlobalSearch: 'GlobalSearch',\n Global: 'Global',\n Graph: 'Graph',\n Group: 'Group',\n Hardware: 'Hardware',\n HashTag: 'HashTag',\n HeartFilled: 'HeartFilled',\n Heart: 'Heart',\n Hierarchy: 'Hierarchy',\n HomeFilled: 'HomeFilled',\n Home: 'Home',\n Image: 'Image',\n Info: 'Info',\n Inventory: 'Inventory',\n Joystick: 'Joystick',\n KeepFilled: 'KeepFilled',\n Keep: 'Keep',\n Key: 'Key',\n LastPage: 'LastPage',\n LightFilled: 'LightFilled',\n Light: 'Light',\n Link: 'Link',\n ListArrow: 'ListArrow',\n Loading: 'Loading',\n Location: 'Location',\n LockSlash: 'LockSlash',\n Lock: 'Lock',\n LockedFilled: 'LockedFilled',\n Login: 'Login',\n Logout: 'Logout',\n Mail: 'Mail',\n Map: 'Map',\n Menu: 'Menu',\n Merge: 'Merge',\n MessageQuestion: 'MessageQuestion',\n Messages: 'Messages',\n MetamaskFoxOutline: 'MetamaskFoxOutline',\n Mic: 'Mic',\n MinusBold: 'MinusBold',\n MinusSquare: 'MinusSquare',\n Minus: 'Minus',\n Mobile: 'Mobile',\n MoneyBag: 'MoneyBag',\n Money: 'Money',\n Monitor: 'Monitor',\n MoreHorizontal: 'MoreHorizontal',\n MoreVertical: 'MoreVertical',\n MountainFlag: 'MountainFlag',\n MusdFilled: 'MusdFilled',\n Musd: 'Musd',\n MusicNote: 'MusicNote',\n NoPhotography: 'NoPhotography',\n Notification: 'Notification',\n PageInfo: 'PageInfo',\n Palette: 'Palette',\n PasswordCheck: 'PasswordCheck',\n Pending: 'Pending',\n People: 'People',\n PersonCancel: 'PersonCancel',\n PieChart: 'PieChart',\n Pin: 'Pin',\n Plant: 'Plant',\n Plug: 'Plug',\n PlusAndMinus: 'PlusAndMinus',\n PolicyAlert: 'PolicyAlert',\n PopUp: 'PopUp',\n Predictions: 'Predictions',\n Print: 'Print',\n PriorityHigh: 'PriorityHigh',\n PrivacyTip: 'PrivacyTip',\n ProgrammingArrows: 'ProgrammingArrows',\n Publish: 'Publish',\n QrCode: 'QrCode',\n Question: 'Question',\n Receive: 'Receive',\n Received: 'Received',\n Refresh: 'Refresh',\n RemoveMinus: 'RemoveMinus',\n Report: 'Report',\n Rocket: 'Rocket',\n SaveFilled: 'SaveFilled',\n Save: 'Save',\n Saving: 'Saving',\n ScanBarcode: 'ScanBarcode',\n ScanFocus: 'ScanFocus',\n Scan: 'Scan',\n Search: 'Search',\n SecurityAlert: 'SecurityAlert',\n SecurityCross: 'SecurityCross',\n SecurityKey: 'SecurityKey',\n SecuritySearch: 'SecuritySearch',\n SecuritySlash: 'SecuritySlash',\n SecurityTick: 'SecurityTick',\n SecurityTime: 'SecurityTime',\n SecurityUser: 'SecurityUser',\n Security: 'Security',\n Send: 'Send',\n SentimentDissatisfied: 'SentimentDissatisfied',\n SentimentNeutral: 'SentimentNeutral',\n SentimentSatisfied: 'SentimentSatisfied',\n SentimentVerySatisfied: 'SentimentVerySatisfied',\n SettingFilled: 'SettingFilled',\n Setting: 'Setting',\n Share: 'Share',\n ShieldLock: 'ShieldLock',\n ShoppingBag: 'ShoppingBag',\n ShoppingCart: 'ShoppingCart',\n SidePanel: 'SidePanel',\n SignalCellular: 'SignalCellular',\n Slash: 'Slash',\n Sms: 'Sms',\n SnapsMobile: 'SnapsMobile',\n SnapsPlus: 'SnapsPlus',\n SnapsRound: 'SnapsRound',\n Snaps: 'Snaps',\n SortByAlpha: 'SortByAlpha',\n Sort: 'Sort',\n Sparkle: 'Sparkle',\n Speed: 'Speed',\n Speedometer: 'Speedometer',\n Square: 'Square',\n Stake: 'Stake',\n StarFilled: 'StarFilled',\n Star: 'Star',\n Start: 'Start',\n Storefront: 'Storefront',\n Student: 'Student',\n SwapHorizontal: 'SwapHorizontal',\n SwapVertical: 'SwapVertical',\n TabClose: 'TabClose',\n TableRow: 'TableRow',\n Tablet: 'Tablet',\n Tag: 'Tag',\n Telegram: 'Telegram',\n ThumbDownFilled: 'ThumbDownFilled',\n ThumbDown: 'ThumbDown',\n ThumbUpFilled: 'ThumbUpFilled',\n ThumbUp: 'ThumbUp',\n Tint: 'Tint',\n Tooltip: 'Tooltip',\n Translate: 'Translate',\n Trash: 'Trash',\n TrendDown: 'TrendDown',\n TrendUp: 'TrendUp',\n Undo: 'Undo',\n Unfold: 'Unfold',\n UnlockedFilled: 'UnlockedFilled',\n Unpin: 'Unpin',\n UploadFile: 'UploadFile',\n Upload: 'Upload',\n Usb: 'Usb',\n UserCheck: 'UserCheck',\n UserCircleAdd: 'UserCircleAdd',\n UserCircleRemove: 'UserCircleRemove',\n UserCircle: 'UserCircle',\n User: 'User',\n VerifiedFilled: 'VerifiedFilled',\n Verified: 'Verified',\n Videocam: 'Videocam',\n ViewColumn: 'ViewColumn',\n ViewInAr: 'ViewInAr',\n VolumeOff: 'VolumeOff',\n VolumeUp: 'VolumeUp',\n WalletFilled: 'WalletFilled',\n Wallet: 'Wallet',\n Warning: 'Warning',\n WebTraffic: 'WebTraffic',\n Widgets: 'Widgets',\n WifiOff: 'WifiOff',\n Wifi: 'Wifi',\n X: 'X',\n} as const;\n\nexport type IconName = (typeof IconName)[keyof typeof IconName];\n\n// END generated IconName\n\n/**\n * Icon - size\n * Common icon sizes shared across React and React Native platforms.\n */\nexport const IconSize = {\n /** Extra small - 12px */\n Xs: 'xs',\n /** Small - 16px */\n Sm: 'sm',\n /** Medium - 20px (Default) */\n Md: 'md',\n /** Large - 24px */\n Lg: 'lg',\n /** Extra large - 32px */\n Xl: 'xl',\n} as const;\n\nexport type IconSize = (typeof IconSize)[keyof typeof IconSize];\n\n/**\n * Icon component shared props (ADR-0004).\n */\nexport type IconPropsShared = {\n /**\n * Required prop to specify which icon to render from the icon set.\n */\n name: IconName;\n /**\n * Optional prop that sets the color of the icon using predefined theme colors.\n *\n * @default IconColor.IconDefault\n */\n color?: IconColor;\n /**\n * Optional prop to control the size of the icon.\n * Different sizes map to specific pixel dimensions.\n *\n * @default IconSize.Md\n */\n size?: IconSize;\n};\n"]}
|
|
@@ -153,6 +153,7 @@ export declare const IconName: {
|
|
|
153
153
|
readonly Fire: "Fire";
|
|
154
154
|
readonly FirstPage: "FirstPage";
|
|
155
155
|
readonly Flag: "Flag";
|
|
156
|
+
readonly FlashFilled: "FlashFilled";
|
|
156
157
|
readonly FlashSlash: "FlashSlash";
|
|
157
158
|
readonly Flash: "Flash";
|
|
158
159
|
readonly Flask: "Flask";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.types.d.cts","sourceRoot":"","sources":["../../../src/types/Icon/Icon.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,SAAS;IACpB,gCAAgC;;IAEhC,+BAA+B;;IAE/B,8DAA8D;;IAE9D,sFAAsF;;IAEtF,kGAAkG;;IAElG,0DAA0D;;IAE1D,kFAAkF;;IAElF,uFAAuF;;IAEvF,4CAA4C;;IAE5C,gFAAgF;;IAEhF,sFAAsF;;IAEtF,kFAAkF;;IAElF,iFAAiF;;IAEjF,kFAAkF;;IAElF,uFAAuF;;IAEvF,+EAA+E;;CAEvE,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAMnE;;;;;GAKG;AACH,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"Icon.types.d.cts","sourceRoot":"","sources":["../../../src/types/Icon/Icon.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,SAAS;IACpB,gCAAgC;;IAEhC,+BAA+B;;IAE/B,8DAA8D;;IAE9D,sFAAsF;;IAEtF,kGAAkG;;IAElG,0DAA0D;;IAE1D,kFAAkF;;IAElF,uFAAuF;;IAEvF,4CAA4C;;IAE5C,gFAAgF;;IAEhF,sFAAsF;;IAEtF,kFAAkF;;IAElF,iFAAiF;;IAEjF,kFAAkF;;IAElF,uFAAuF;;IAEvF,+EAA+E;;CAEvE,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAMnE;;;;;GAKG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmSX,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,OAAO,QAAQ,CAAC,CAAC;AAIhE;;;GAGG;AACH,eAAO,MAAM,QAAQ;IACnB,yBAAyB;;IAEzB,mBAAmB;;IAEnB,8BAA8B;;IAE9B,mBAAmB;;IAEnB,yBAAyB;;CAEjB,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,OAAO,QAAQ,CAAC,CAAC;AAEhE;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,IAAI,EAAE,QAAQ,CAAC;IACf;;;;OAIG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;;;;OAKG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAC;CACjB,CAAC"}
|
|
@@ -153,6 +153,7 @@ export declare const IconName: {
|
|
|
153
153
|
readonly Fire: "Fire";
|
|
154
154
|
readonly FirstPage: "FirstPage";
|
|
155
155
|
readonly Flag: "Flag";
|
|
156
|
+
readonly FlashFilled: "FlashFilled";
|
|
156
157
|
readonly FlashSlash: "FlashSlash";
|
|
157
158
|
readonly Flash: "Flash";
|
|
158
159
|
readonly Flask: "Flask";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.types.d.mts","sourceRoot":"","sources":["../../../src/types/Icon/Icon.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,SAAS;IACpB,gCAAgC;;IAEhC,+BAA+B;;IAE/B,8DAA8D;;IAE9D,sFAAsF;;IAEtF,kGAAkG;;IAElG,0DAA0D;;IAE1D,kFAAkF;;IAElF,uFAAuF;;IAEvF,4CAA4C;;IAE5C,gFAAgF;;IAEhF,sFAAsF;;IAEtF,kFAAkF;;IAElF,iFAAiF;;IAEjF,kFAAkF;;IAElF,uFAAuF;;IAEvF,+EAA+E;;CAEvE,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAMnE;;;;;GAKG;AACH,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"Icon.types.d.mts","sourceRoot":"","sources":["../../../src/types/Icon/Icon.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,SAAS;IACpB,gCAAgC;;IAEhC,+BAA+B;;IAE/B,8DAA8D;;IAE9D,sFAAsF;;IAEtF,kGAAkG;;IAElG,0DAA0D;;IAE1D,kFAAkF;;IAElF,uFAAuF;;IAEvF,4CAA4C;;IAE5C,gFAAgF;;IAEhF,sFAAsF;;IAEtF,kFAAkF;;IAElF,iFAAiF;;IAEjF,kFAAkF;;IAElF,uFAAuF;;IAEvF,+EAA+E;;CAEvE,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAMnE;;;;;GAKG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmSX,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,OAAO,QAAQ,CAAC,CAAC;AAIhE;;;GAGG;AACH,eAAO,MAAM,QAAQ;IACnB,yBAAyB;;IAEzB,mBAAmB;;IAEnB,8BAA8B;;IAE9B,mBAAmB;;IAEnB,yBAAyB;;CAEjB,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,OAAO,QAAQ,CAAC,CAAC;AAEhE;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG;IAC5B;;OAEG;IACH,IAAI,EAAE,QAAQ,CAAC;IACf;;;;OAIG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;;;;OAKG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAC;CACjB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.types.mjs","sourceRoot":"","sources":["../../../src/types/Icon/Icon.types.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * Icon - color (ADR-0003)\n * All icon color values shared across React and React Native platforms.\n */\nexport const IconColor = {\n /** For default neutral icons */\n IconDefault: 'text-icon-default',\n /** For softer neutral icons */\n IconAlternative: 'text-icon-alternative',\n /** For the weakest contrast neutral icons (not accessible) */\n IconMuted: 'text-icon-muted',\n /** For elements used on top of overlay/alternative. Used for text, icon, or border */\n OverlayInverse: 'text-overlay-inverse',\n /** For interactive, active, and selected semantics. Used for text, background, icon, or border */\n PrimaryDefault: 'text-primary-default',\n /** For softer variants of primary interactive elements */\n PrimaryAlternative: 'text-primary-alternative',\n /** For elements used on top of primary/default. Used for text, icon, or border */\n PrimaryInverse: 'text-primary-inverse',\n /** For critical alert semantic elements. Used for text, background, icon, or border */\n ErrorDefault: 'text-error-default',\n /** For softer variants of error elements */\n ErrorAlternative: 'text-error-alternative',\n /** For elements used on top of error/default. Used for text, icon, or border */\n ErrorInverse: 'text-error-inverse',\n /** For caution alert semantic elements. Used for text, background, icon, or border */\n WarningDefault: 'text-warning-default',\n /** For elements used on top of warning/default. Used for text, icon, or border */\n WarningInverse: 'text-warning-inverse',\n /** For positive semantic elements. Used for text, background, icon, or border */\n SuccessDefault: 'text-success-default',\n /** For elements used on top of success/default. Used for text, icon, or border */\n SuccessInverse: 'text-success-inverse',\n /** For informational read-only elements. Used for text, background, icon, or border */\n InfoDefault: 'text-info-default',\n /** For elements used on top of info/default. Used for text, icon, or border */\n InfoInverse: 'text-info-inverse',\n} as const;\n\nexport type IconColor = (typeof IconColor)[keyof typeof IconColor];\n\n// /////////////////////////////////////////////////////\n// DO NOT EDIT - generated by generate-icons.ts\n// /////////////////////////////////////////////////////\n\n/**\n * Icon - name\n * All icon names shared across React and React Native platforms.\n * This block is auto-generated — do not edit directly.\n * Run `yarn generate:icons` from the repo root to regenerate.\n */\nexport const IconName = {\n Accessibility: 'Accessibility',\n Activity: 'Activity',\n AddCard: 'AddCard',\n AddCircle: 'AddCircle',\n AddSquare: 'AddSquare',\n Add: 'Add',\n AfterHours: 'AfterHours',\n Ai: 'Ai',\n AlternateEmail: 'AlternateEmail',\n AppleLogo: 'AppleLogo',\n Apps: 'Apps',\n Arrow2Down: 'Arrow2Down',\n Arrow2Left: 'Arrow2Left',\n Arrow2Right: 'Arrow2Right',\n Arrow2UpRight: 'Arrow2UpRight',\n Arrow2Up: 'Arrow2Up',\n ArrowCircleDown: 'ArrowCircleDown',\n ArrowCircleUp: 'ArrowCircleUp',\n ArrowDoubleLeft: 'ArrowDoubleLeft',\n ArrowDoubleRight: 'ArrowDoubleRight',\n ArrowDown: 'ArrowDown',\n ArrowDropDownCircle: 'ArrowDropDownCircle',\n ArrowLeft: 'ArrowLeft',\n ArrowRight: 'ArrowRight',\n ArrowUp: 'ArrowUp',\n AttachMoney: 'AttachMoney',\n Attachment: 'Attachment',\n Backspace: 'Backspace',\n Ban: 'Ban',\n BankAssured: 'BankAssured',\n Bank: 'Bank',\n Bold: 'Bold',\n Book: 'Book',\n Bookmark: 'Bookmark',\n Bridge: 'Bridge',\n Briefcase: 'Briefcase',\n Bulb: 'Bulb',\n BuySell: 'BuySell',\n Cake: 'Cake',\n Calculator: 'Calculator',\n Calendar: 'Calendar',\n Call: 'Call',\n Camera: 'Camera',\n Campaign: 'Campaign',\n Candlestick: 'Candlestick',\n CardPos: 'CardPos',\n Card: 'Card',\n Cash: 'Cash',\n Category: 'Category',\n Chart: 'Chart',\n CheckBold: 'CheckBold',\n Check: 'Check',\n CircleX: 'CircleX',\n Clear: 'Clear',\n ClockFilled: 'ClockFilled',\n Clock: 'Clock',\n Close: 'Close',\n CloudDownload: 'CloudDownload',\n CloudUpload: 'CloudUpload',\n Cloud: 'Cloud',\n CodeCircle: 'CodeCircle',\n Code: 'Code',\n Coin: 'Coin',\n Collapse: 'Collapse',\n Confirmation: 'Confirmation',\n Connect: 'Connect',\n CopySuccess: 'CopySuccess',\n Copy: 'Copy',\n CorporateFare: 'CorporateFare',\n CreditCheck: 'CreditCheck',\n CurrencyFranc: 'CurrencyFranc',\n CurrencyLira: 'CurrencyLira',\n CurrencyPound: 'CurrencyPound',\n CurrencyYuan: 'CurrencyYuan',\n Customize: 'Customize',\n Danger: 'Danger',\n DarkFilled: 'DarkFilled',\n Dark: 'Dark',\n Data: 'Data',\n Description: 'Description',\n Details: 'Details',\n Diagram: 'Diagram',\n DocumentCode: 'DocumentCode',\n Download: 'Download',\n Draft: 'Draft',\n EcoLeaf: 'EcoLeaf',\n EditSquare: 'EditSquare',\n Edit: 'Edit',\n EncryptedAdd: 'EncryptedAdd',\n Eraser: 'Eraser',\n Error: 'Error',\n Ethereum: 'Ethereum',\n Exchange: 'Exchange',\n ExpandVertical: 'ExpandVertical',\n Expand: 'Expand',\n ExploreFilled: 'ExploreFilled',\n Explore: 'Explore',\n Export: 'Export',\n Extension: 'Extension',\n EyeSlash: 'EyeSlash',\n Eye: 'Eye',\n FaceId: 'FaceId',\n Feedback: 'Feedback',\n File: 'File',\n Filter: 'Filter',\n Fingerprint: 'Fingerprint',\n Fire: 'Fire',\n FirstPage: 'FirstPage',\n Flag: 'Flag',\n FlashSlash: 'FlashSlash',\n Flash: 'Flash',\n Flask: 'Flask',\n Flower: 'Flower',\n Folder: 'Folder',\n Forest: 'Forest',\n FullCircle: 'FullCircle',\n Gas: 'Gas',\n Gift: 'Gift',\n GlobalSearch: 'GlobalSearch',\n Global: 'Global',\n Graph: 'Graph',\n Group: 'Group',\n Hardware: 'Hardware',\n HashTag: 'HashTag',\n HeartFilled: 'HeartFilled',\n Heart: 'Heart',\n Hierarchy: 'Hierarchy',\n HomeFilled: 'HomeFilled',\n Home: 'Home',\n Image: 'Image',\n Info: 'Info',\n Inventory: 'Inventory',\n Joystick: 'Joystick',\n KeepFilled: 'KeepFilled',\n Keep: 'Keep',\n Key: 'Key',\n LastPage: 'LastPage',\n LightFilled: 'LightFilled',\n Light: 'Light',\n Link: 'Link',\n ListArrow: 'ListArrow',\n Loading: 'Loading',\n Location: 'Location',\n LockSlash: 'LockSlash',\n Lock: 'Lock',\n LockedFilled: 'LockedFilled',\n Login: 'Login',\n Logout: 'Logout',\n Mail: 'Mail',\n Map: 'Map',\n Menu: 'Menu',\n Merge: 'Merge',\n MessageQuestion: 'MessageQuestion',\n Messages: 'Messages',\n MetamaskFoxOutline: 'MetamaskFoxOutline',\n Mic: 'Mic',\n MinusBold: 'MinusBold',\n MinusSquare: 'MinusSquare',\n Minus: 'Minus',\n Mobile: 'Mobile',\n MoneyBag: 'MoneyBag',\n Money: 'Money',\n Monitor: 'Monitor',\n MoreHorizontal: 'MoreHorizontal',\n MoreVertical: 'MoreVertical',\n MountainFlag: 'MountainFlag',\n MusdFilled: 'MusdFilled',\n Musd: 'Musd',\n MusicNote: 'MusicNote',\n NoPhotography: 'NoPhotography',\n Notification: 'Notification',\n PageInfo: 'PageInfo',\n Palette: 'Palette',\n PasswordCheck: 'PasswordCheck',\n Pending: 'Pending',\n People: 'People',\n PersonCancel: 'PersonCancel',\n PieChart: 'PieChart',\n Pin: 'Pin',\n Plant: 'Plant',\n Plug: 'Plug',\n PlusAndMinus: 'PlusAndMinus',\n PolicyAlert: 'PolicyAlert',\n PopUp: 'PopUp',\n Predictions: 'Predictions',\n Print: 'Print',\n PriorityHigh: 'PriorityHigh',\n PrivacyTip: 'PrivacyTip',\n ProgrammingArrows: 'ProgrammingArrows',\n Publish: 'Publish',\n QrCode: 'QrCode',\n Question: 'Question',\n Receive: 'Receive',\n Received: 'Received',\n Refresh: 'Refresh',\n RemoveMinus: 'RemoveMinus',\n Report: 'Report',\n Rocket: 'Rocket',\n SaveFilled: 'SaveFilled',\n Save: 'Save',\n Saving: 'Saving',\n ScanBarcode: 'ScanBarcode',\n ScanFocus: 'ScanFocus',\n Scan: 'Scan',\n Search: 'Search',\n SecurityAlert: 'SecurityAlert',\n SecurityCross: 'SecurityCross',\n SecurityKey: 'SecurityKey',\n SecuritySearch: 'SecuritySearch',\n SecuritySlash: 'SecuritySlash',\n SecurityTick: 'SecurityTick',\n SecurityTime: 'SecurityTime',\n SecurityUser: 'SecurityUser',\n Security: 'Security',\n Send: 'Send',\n SentimentDissatisfied: 'SentimentDissatisfied',\n SentimentNeutral: 'SentimentNeutral',\n SentimentSatisfied: 'SentimentSatisfied',\n SentimentVerySatisfied: 'SentimentVerySatisfied',\n SettingFilled: 'SettingFilled',\n Setting: 'Setting',\n Share: 'Share',\n ShieldLock: 'ShieldLock',\n ShoppingBag: 'ShoppingBag',\n ShoppingCart: 'ShoppingCart',\n SidePanel: 'SidePanel',\n SignalCellular: 'SignalCellular',\n Slash: 'Slash',\n Sms: 'Sms',\n SnapsMobile: 'SnapsMobile',\n SnapsPlus: 'SnapsPlus',\n SnapsRound: 'SnapsRound',\n Snaps: 'Snaps',\n SortByAlpha: 'SortByAlpha',\n Sort: 'Sort',\n Sparkle: 'Sparkle',\n Speed: 'Speed',\n Speedometer: 'Speedometer',\n Square: 'Square',\n Stake: 'Stake',\n StarFilled: 'StarFilled',\n Star: 'Star',\n Start: 'Start',\n Storefront: 'Storefront',\n Student: 'Student',\n SwapHorizontal: 'SwapHorizontal',\n SwapVertical: 'SwapVertical',\n TabClose: 'TabClose',\n TableRow: 'TableRow',\n Tablet: 'Tablet',\n Tag: 'Tag',\n Telegram: 'Telegram',\n ThumbDownFilled: 'ThumbDownFilled',\n ThumbDown: 'ThumbDown',\n ThumbUpFilled: 'ThumbUpFilled',\n ThumbUp: 'ThumbUp',\n Tint: 'Tint',\n Tooltip: 'Tooltip',\n Translate: 'Translate',\n Trash: 'Trash',\n TrendDown: 'TrendDown',\n TrendUp: 'TrendUp',\n Undo: 'Undo',\n Unfold: 'Unfold',\n UnlockedFilled: 'UnlockedFilled',\n Unpin: 'Unpin',\n UploadFile: 'UploadFile',\n Upload: 'Upload',\n Usb: 'Usb',\n UserCheck: 'UserCheck',\n UserCircleAdd: 'UserCircleAdd',\n UserCircleRemove: 'UserCircleRemove',\n UserCircle: 'UserCircle',\n User: 'User',\n VerifiedFilled: 'VerifiedFilled',\n Verified: 'Verified',\n Videocam: 'Videocam',\n ViewColumn: 'ViewColumn',\n ViewInAr: 'ViewInAr',\n VolumeOff: 'VolumeOff',\n VolumeUp: 'VolumeUp',\n WalletFilled: 'WalletFilled',\n Wallet: 'Wallet',\n Warning: 'Warning',\n WebTraffic: 'WebTraffic',\n Widgets: 'Widgets',\n WifiOff: 'WifiOff',\n Wifi: 'Wifi',\n X: 'X',\n} as const;\n\nexport type IconName = (typeof IconName)[keyof typeof IconName];\n\n// END generated IconName\n\n/**\n * Icon - size\n * Common icon sizes shared across React and React Native platforms.\n */\nexport const IconSize = {\n /** Extra small - 12px */\n Xs: 'xs',\n /** Small - 16px */\n Sm: 'sm',\n /** Medium - 20px (Default) */\n Md: 'md',\n /** Large - 24px */\n Lg: 'lg',\n /** Extra large - 32px */\n Xl: 'xl',\n} as const;\n\nexport type IconSize = (typeof IconSize)[keyof typeof IconSize];\n\n/**\n * Icon component shared props (ADR-0004).\n */\nexport type IconPropsShared = {\n /**\n * Required prop to specify which icon to render from the icon set.\n */\n name: IconName;\n /**\n * Optional prop that sets the color of the icon using predefined theme colors.\n *\n * @default IconColor.IconDefault\n */\n color?: IconColor;\n /**\n * Optional prop to control the size of the icon.\n * Different sizes map to specific pixel dimensions.\n *\n * @default IconSize.Md\n */\n size?: IconSize;\n};\n"]}
|
|
1
|
+
{"version":3,"file":"Icon.types.mjs","sourceRoot":"","sources":["../../../src/types/Icon/Icon.types.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * Icon - color (ADR-0003)\n * All icon color values shared across React and React Native platforms.\n */\nexport const IconColor = {\n /** For default neutral icons */\n IconDefault: 'text-icon-default',\n /** For softer neutral icons */\n IconAlternative: 'text-icon-alternative',\n /** For the weakest contrast neutral icons (not accessible) */\n IconMuted: 'text-icon-muted',\n /** For elements used on top of overlay/alternative. Used for text, icon, or border */\n OverlayInverse: 'text-overlay-inverse',\n /** For interactive, active, and selected semantics. Used for text, background, icon, or border */\n PrimaryDefault: 'text-primary-default',\n /** For softer variants of primary interactive elements */\n PrimaryAlternative: 'text-primary-alternative',\n /** For elements used on top of primary/default. Used for text, icon, or border */\n PrimaryInverse: 'text-primary-inverse',\n /** For critical alert semantic elements. Used for text, background, icon, or border */\n ErrorDefault: 'text-error-default',\n /** For softer variants of error elements */\n ErrorAlternative: 'text-error-alternative',\n /** For elements used on top of error/default. Used for text, icon, or border */\n ErrorInverse: 'text-error-inverse',\n /** For caution alert semantic elements. Used for text, background, icon, or border */\n WarningDefault: 'text-warning-default',\n /** For elements used on top of warning/default. Used for text, icon, or border */\n WarningInverse: 'text-warning-inverse',\n /** For positive semantic elements. Used for text, background, icon, or border */\n SuccessDefault: 'text-success-default',\n /** For elements used on top of success/default. Used for text, icon, or border */\n SuccessInverse: 'text-success-inverse',\n /** For informational read-only elements. Used for text, background, icon, or border */\n InfoDefault: 'text-info-default',\n /** For elements used on top of info/default. Used for text, icon, or border */\n InfoInverse: 'text-info-inverse',\n} as const;\n\nexport type IconColor = (typeof IconColor)[keyof typeof IconColor];\n\n// /////////////////////////////////////////////////////\n// DO NOT EDIT - generated by generate-icons.ts\n// /////////////////////////////////////////////////////\n\n/**\n * Icon - name\n * All icon names shared across React and React Native platforms.\n * This block is auto-generated — do not edit directly.\n * Run `yarn generate:icons` from the repo root to regenerate.\n */\nexport const IconName = {\n Accessibility: 'Accessibility',\n Activity: 'Activity',\n AddCard: 'AddCard',\n AddCircle: 'AddCircle',\n AddSquare: 'AddSquare',\n Add: 'Add',\n AfterHours: 'AfterHours',\n Ai: 'Ai',\n AlternateEmail: 'AlternateEmail',\n AppleLogo: 'AppleLogo',\n Apps: 'Apps',\n Arrow2Down: 'Arrow2Down',\n Arrow2Left: 'Arrow2Left',\n Arrow2Right: 'Arrow2Right',\n Arrow2UpRight: 'Arrow2UpRight',\n Arrow2Up: 'Arrow2Up',\n ArrowCircleDown: 'ArrowCircleDown',\n ArrowCircleUp: 'ArrowCircleUp',\n ArrowDoubleLeft: 'ArrowDoubleLeft',\n ArrowDoubleRight: 'ArrowDoubleRight',\n ArrowDown: 'ArrowDown',\n ArrowDropDownCircle: 'ArrowDropDownCircle',\n ArrowLeft: 'ArrowLeft',\n ArrowRight: 'ArrowRight',\n ArrowUp: 'ArrowUp',\n AttachMoney: 'AttachMoney',\n Attachment: 'Attachment',\n Backspace: 'Backspace',\n Ban: 'Ban',\n BankAssured: 'BankAssured',\n Bank: 'Bank',\n Bold: 'Bold',\n Book: 'Book',\n Bookmark: 'Bookmark',\n Bridge: 'Bridge',\n Briefcase: 'Briefcase',\n Bulb: 'Bulb',\n BuySell: 'BuySell',\n Cake: 'Cake',\n Calculator: 'Calculator',\n Calendar: 'Calendar',\n Call: 'Call',\n Camera: 'Camera',\n Campaign: 'Campaign',\n Candlestick: 'Candlestick',\n CardPos: 'CardPos',\n Card: 'Card',\n Cash: 'Cash',\n Category: 'Category',\n Chart: 'Chart',\n CheckBold: 'CheckBold',\n Check: 'Check',\n CircleX: 'CircleX',\n Clear: 'Clear',\n ClockFilled: 'ClockFilled',\n Clock: 'Clock',\n Close: 'Close',\n CloudDownload: 'CloudDownload',\n CloudUpload: 'CloudUpload',\n Cloud: 'Cloud',\n CodeCircle: 'CodeCircle',\n Code: 'Code',\n Coin: 'Coin',\n Collapse: 'Collapse',\n Confirmation: 'Confirmation',\n Connect: 'Connect',\n CopySuccess: 'CopySuccess',\n Copy: 'Copy',\n CorporateFare: 'CorporateFare',\n CreditCheck: 'CreditCheck',\n CurrencyFranc: 'CurrencyFranc',\n CurrencyLira: 'CurrencyLira',\n CurrencyPound: 'CurrencyPound',\n CurrencyYuan: 'CurrencyYuan',\n Customize: 'Customize',\n Danger: 'Danger',\n DarkFilled: 'DarkFilled',\n Dark: 'Dark',\n Data: 'Data',\n Description: 'Description',\n Details: 'Details',\n Diagram: 'Diagram',\n DocumentCode: 'DocumentCode',\n Download: 'Download',\n Draft: 'Draft',\n EcoLeaf: 'EcoLeaf',\n EditSquare: 'EditSquare',\n Edit: 'Edit',\n EncryptedAdd: 'EncryptedAdd',\n Eraser: 'Eraser',\n Error: 'Error',\n Ethereum: 'Ethereum',\n Exchange: 'Exchange',\n ExpandVertical: 'ExpandVertical',\n Expand: 'Expand',\n ExploreFilled: 'ExploreFilled',\n Explore: 'Explore',\n Export: 'Export',\n Extension: 'Extension',\n EyeSlash: 'EyeSlash',\n Eye: 'Eye',\n FaceId: 'FaceId',\n Feedback: 'Feedback',\n File: 'File',\n Filter: 'Filter',\n Fingerprint: 'Fingerprint',\n Fire: 'Fire',\n FirstPage: 'FirstPage',\n Flag: 'Flag',\n FlashFilled: 'FlashFilled',\n FlashSlash: 'FlashSlash',\n Flash: 'Flash',\n Flask: 'Flask',\n Flower: 'Flower',\n Folder: 'Folder',\n Forest: 'Forest',\n FullCircle: 'FullCircle',\n Gas: 'Gas',\n Gift: 'Gift',\n GlobalSearch: 'GlobalSearch',\n Global: 'Global',\n Graph: 'Graph',\n Group: 'Group',\n Hardware: 'Hardware',\n HashTag: 'HashTag',\n HeartFilled: 'HeartFilled',\n Heart: 'Heart',\n Hierarchy: 'Hierarchy',\n HomeFilled: 'HomeFilled',\n Home: 'Home',\n Image: 'Image',\n Info: 'Info',\n Inventory: 'Inventory',\n Joystick: 'Joystick',\n KeepFilled: 'KeepFilled',\n Keep: 'Keep',\n Key: 'Key',\n LastPage: 'LastPage',\n LightFilled: 'LightFilled',\n Light: 'Light',\n Link: 'Link',\n ListArrow: 'ListArrow',\n Loading: 'Loading',\n Location: 'Location',\n LockSlash: 'LockSlash',\n Lock: 'Lock',\n LockedFilled: 'LockedFilled',\n Login: 'Login',\n Logout: 'Logout',\n Mail: 'Mail',\n Map: 'Map',\n Menu: 'Menu',\n Merge: 'Merge',\n MessageQuestion: 'MessageQuestion',\n Messages: 'Messages',\n MetamaskFoxOutline: 'MetamaskFoxOutline',\n Mic: 'Mic',\n MinusBold: 'MinusBold',\n MinusSquare: 'MinusSquare',\n Minus: 'Minus',\n Mobile: 'Mobile',\n MoneyBag: 'MoneyBag',\n Money: 'Money',\n Monitor: 'Monitor',\n MoreHorizontal: 'MoreHorizontal',\n MoreVertical: 'MoreVertical',\n MountainFlag: 'MountainFlag',\n MusdFilled: 'MusdFilled',\n Musd: 'Musd',\n MusicNote: 'MusicNote',\n NoPhotography: 'NoPhotography',\n Notification: 'Notification',\n PageInfo: 'PageInfo',\n Palette: 'Palette',\n PasswordCheck: 'PasswordCheck',\n Pending: 'Pending',\n People: 'People',\n PersonCancel: 'PersonCancel',\n PieChart: 'PieChart',\n Pin: 'Pin',\n Plant: 'Plant',\n Plug: 'Plug',\n PlusAndMinus: 'PlusAndMinus',\n PolicyAlert: 'PolicyAlert',\n PopUp: 'PopUp',\n Predictions: 'Predictions',\n Print: 'Print',\n PriorityHigh: 'PriorityHigh',\n PrivacyTip: 'PrivacyTip',\n ProgrammingArrows: 'ProgrammingArrows',\n Publish: 'Publish',\n QrCode: 'QrCode',\n Question: 'Question',\n Receive: 'Receive',\n Received: 'Received',\n Refresh: 'Refresh',\n RemoveMinus: 'RemoveMinus',\n Report: 'Report',\n Rocket: 'Rocket',\n SaveFilled: 'SaveFilled',\n Save: 'Save',\n Saving: 'Saving',\n ScanBarcode: 'ScanBarcode',\n ScanFocus: 'ScanFocus',\n Scan: 'Scan',\n Search: 'Search',\n SecurityAlert: 'SecurityAlert',\n SecurityCross: 'SecurityCross',\n SecurityKey: 'SecurityKey',\n SecuritySearch: 'SecuritySearch',\n SecuritySlash: 'SecuritySlash',\n SecurityTick: 'SecurityTick',\n SecurityTime: 'SecurityTime',\n SecurityUser: 'SecurityUser',\n Security: 'Security',\n Send: 'Send',\n SentimentDissatisfied: 'SentimentDissatisfied',\n SentimentNeutral: 'SentimentNeutral',\n SentimentSatisfied: 'SentimentSatisfied',\n SentimentVerySatisfied: 'SentimentVerySatisfied',\n SettingFilled: 'SettingFilled',\n Setting: 'Setting',\n Share: 'Share',\n ShieldLock: 'ShieldLock',\n ShoppingBag: 'ShoppingBag',\n ShoppingCart: 'ShoppingCart',\n SidePanel: 'SidePanel',\n SignalCellular: 'SignalCellular',\n Slash: 'Slash',\n Sms: 'Sms',\n SnapsMobile: 'SnapsMobile',\n SnapsPlus: 'SnapsPlus',\n SnapsRound: 'SnapsRound',\n Snaps: 'Snaps',\n SortByAlpha: 'SortByAlpha',\n Sort: 'Sort',\n Sparkle: 'Sparkle',\n Speed: 'Speed',\n Speedometer: 'Speedometer',\n Square: 'Square',\n Stake: 'Stake',\n StarFilled: 'StarFilled',\n Star: 'Star',\n Start: 'Start',\n Storefront: 'Storefront',\n Student: 'Student',\n SwapHorizontal: 'SwapHorizontal',\n SwapVertical: 'SwapVertical',\n TabClose: 'TabClose',\n TableRow: 'TableRow',\n Tablet: 'Tablet',\n Tag: 'Tag',\n Telegram: 'Telegram',\n ThumbDownFilled: 'ThumbDownFilled',\n ThumbDown: 'ThumbDown',\n ThumbUpFilled: 'ThumbUpFilled',\n ThumbUp: 'ThumbUp',\n Tint: 'Tint',\n Tooltip: 'Tooltip',\n Translate: 'Translate',\n Trash: 'Trash',\n TrendDown: 'TrendDown',\n TrendUp: 'TrendUp',\n Undo: 'Undo',\n Unfold: 'Unfold',\n UnlockedFilled: 'UnlockedFilled',\n Unpin: 'Unpin',\n UploadFile: 'UploadFile',\n Upload: 'Upload',\n Usb: 'Usb',\n UserCheck: 'UserCheck',\n UserCircleAdd: 'UserCircleAdd',\n UserCircleRemove: 'UserCircleRemove',\n UserCircle: 'UserCircle',\n User: 'User',\n VerifiedFilled: 'VerifiedFilled',\n Verified: 'Verified',\n Videocam: 'Videocam',\n ViewColumn: 'ViewColumn',\n ViewInAr: 'ViewInAr',\n VolumeOff: 'VolumeOff',\n VolumeUp: 'VolumeUp',\n WalletFilled: 'WalletFilled',\n Wallet: 'Wallet',\n Warning: 'Warning',\n WebTraffic: 'WebTraffic',\n Widgets: 'Widgets',\n WifiOff: 'WifiOff',\n Wifi: 'Wifi',\n X: 'X',\n} as const;\n\nexport type IconName = (typeof IconName)[keyof typeof IconName];\n\n// END generated IconName\n\n/**\n * Icon - size\n * Common icon sizes shared across React and React Native platforms.\n */\nexport const IconSize = {\n /** Extra small - 12px */\n Xs: 'xs',\n /** Small - 16px */\n Sm: 'sm',\n /** Medium - 20px (Default) */\n Md: 'md',\n /** Large - 24px */\n Lg: 'lg',\n /** Extra large - 32px */\n Xl: 'xl',\n} as const;\n\nexport type IconSize = (typeof IconSize)[keyof typeof IconSize];\n\n/**\n * Icon component shared props (ADR-0004).\n */\nexport type IconPropsShared = {\n /**\n * Required prop to specify which icon to render from the icon set.\n */\n name: IconName;\n /**\n * Optional prop that sets the color of the icon using predefined theme colors.\n *\n * @default IconColor.IconDefault\n */\n color?: IconColor;\n /**\n * Optional prop to control the size of the icon.\n * Different sizes map to specific pixel dimensions.\n *\n * @default IconSize.Md\n */\n size?: IconSize;\n};\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextField.types.cjs","sourceRoot":"","sources":["../../../src/types/TextField/TextField.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ReactNode } from 'react';\n\nimport type { InputPropsShared } from '../Input/Input.types';\n\n/**\n * TextField shared props (ADR-0004).\n *\n * Layers controlled text-field chrome (accessories, custom input slot, error\n * state, etc.) on top of the shared `InputPropsShared` contract. Styling,\n * `testID`, native-only `inputProps`, and typed focus/blur handlers stay on
|
|
1
|
+
{"version":3,"file":"TextField.types.cjs","sourceRoot":"","sources":["../../../src/types/TextField/TextField.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ReactNode } from 'react';\n\nimport type { InputPropsShared } from '../Input/Input.types';\n\n/**\n * TextField shared props (ADR-0004).\n *\n * Layers controlled text-field chrome (accessories, custom input slot, error\n * state, etc.) on top of the shared `InputPropsShared` contract. Styling,\n * `testID`, native-only `inputProps`, refs, and typed focus/blur handlers\n * stay on the platform layer.\n */\nexport type TextFieldPropsShared = Omit<\n InputPropsShared,\n 'isStateStylesDisabled' | 'textVariant'\n> & {\n /**\n * When true, the field shows an error state (for example border treatment).\n *\n * @default false\n */\n isError?: boolean;\n /** Optional content before the input. */\n startAccessory?: ReactNode;\n /** Optional content after the input. */\n endAccessory?: ReactNode;\n /** Replaces the default field input implementation. */\n inputElement?: ReactNode;\n};\n"]}
|
|
@@ -5,8 +5,8 @@ import type { InputPropsShared } from "../Input/Input.types.cjs";
|
|
|
5
5
|
*
|
|
6
6
|
* Layers controlled text-field chrome (accessories, custom input slot, error
|
|
7
7
|
* state, etc.) on top of the shared `InputPropsShared` contract. Styling,
|
|
8
|
-
* `testID`, native-only `inputProps`, and typed focus/blur handlers
|
|
9
|
-
* the platform layer.
|
|
8
|
+
* `testID`, native-only `inputProps`, refs, and typed focus/blur handlers
|
|
9
|
+
* stay on the platform layer.
|
|
10
10
|
*/
|
|
11
11
|
export type TextFieldPropsShared = Omit<InputPropsShared, 'isStateStylesDisabled' | 'textVariant'> & {
|
|
12
12
|
/**
|
|
@@ -5,8 +5,8 @@ import type { InputPropsShared } from "../Input/Input.types.mjs";
|
|
|
5
5
|
*
|
|
6
6
|
* Layers controlled text-field chrome (accessories, custom input slot, error
|
|
7
7
|
* state, etc.) on top of the shared `InputPropsShared` contract. Styling,
|
|
8
|
-
* `testID`, native-only `inputProps`, and typed focus/blur handlers
|
|
9
|
-
* the platform layer.
|
|
8
|
+
* `testID`, native-only `inputProps`, refs, and typed focus/blur handlers
|
|
9
|
+
* stay on the platform layer.
|
|
10
10
|
*/
|
|
11
11
|
export type TextFieldPropsShared = Omit<InputPropsShared, 'isStateStylesDisabled' | 'textVariant'> & {
|
|
12
12
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextField.types.mjs","sourceRoot":"","sources":["../../../src/types/TextField/TextField.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ReactNode } from 'react';\n\nimport type { InputPropsShared } from '../Input/Input.types';\n\n/**\n * TextField shared props (ADR-0004).\n *\n * Layers controlled text-field chrome (accessories, custom input slot, error\n * state, etc.) on top of the shared `InputPropsShared` contract. Styling,\n * `testID`, native-only `inputProps`, and typed focus/blur handlers stay on
|
|
1
|
+
{"version":3,"file":"TextField.types.mjs","sourceRoot":"","sources":["../../../src/types/TextField/TextField.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ReactNode } from 'react';\n\nimport type { InputPropsShared } from '../Input/Input.types';\n\n/**\n * TextField shared props (ADR-0004).\n *\n * Layers controlled text-field chrome (accessories, custom input slot, error\n * state, etc.) on top of the shared `InputPropsShared` contract. Styling,\n * `testID`, native-only `inputProps`, refs, and typed focus/blur handlers\n * stay on the platform layer.\n */\nexport type TextFieldPropsShared = Omit<\n InputPropsShared,\n 'isStateStylesDisabled' | 'textVariant'\n> & {\n /**\n * When true, the field shows an error state (for example border treatment).\n *\n * @default false\n */\n isError?: boolean;\n /** Optional content before the input. */\n startAccessory?: ReactNode;\n /** Optional content after the input. */\n endAccessory?: ReactNode;\n /** Replaces the default field input implementation. */\n inputElement?: ReactNode;\n};\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../../../src/types/TextField/index.ts"],"names":[],"mappings":"","sourcesContent":["export type
|
|
1
|
+
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../../../src/types/TextField/index.ts"],"names":[],"mappings":"","sourcesContent":["export { type TextFieldPropsShared } from './TextField.types';\n"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type
|
|
1
|
+
export { type TextFieldPropsShared } from "./TextField.types.cjs";
|
|
2
2
|
//# sourceMappingURL=index.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../../../src/types/TextField/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../../../src/types/TextField/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,oBAAoB,EAAE,8BAA0B"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type
|
|
1
|
+
export { type TextFieldPropsShared } from "./TextField.types.mjs";
|
|
2
2
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/types/TextField/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/types/TextField/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,oBAAoB,EAAE,8BAA0B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/types/TextField/index.ts"],"names":[],"mappings":"","sourcesContent":["export type
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/types/TextField/index.ts"],"names":[],"mappings":"","sourcesContent":["export { type TextFieldPropsShared } from './TextField.types';\n"]}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TOAST_ANIMATION_DURATION = exports.TOAST_VISIBILITY_DURATION = void 0;
|
|
4
|
+
exports.TOAST_VISIBILITY_DURATION = 2750;
|
|
5
|
+
// Align this with AnimationDuration.Promptly without importing design-tokens
|
|
6
|
+
// here, which would reintroduce the workspace build cycle.
|
|
7
|
+
exports.TOAST_ANIMATION_DURATION = 200;
|
|
8
|
+
//# sourceMappingURL=Toast.constants.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toast.constants.cjs","sourceRoot":"","sources":["../../../src/types/Toast/Toast.constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,yBAAyB,GAAG,IAAI,CAAC;AAC9C,6EAA6E;AAC7E,2DAA2D;AAC9C,QAAA,wBAAwB,GAAG,GAAG,CAAC","sourcesContent":["export const TOAST_VISIBILITY_DURATION = 2750;\n// Align this with AnimationDuration.Promptly without importing design-tokens\n// here, which would reintroduce the workspace build cycle.\nexport const TOAST_ANIMATION_DURATION = 200;\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toast.constants.d.cts","sourceRoot":"","sources":["../../../src/types/Toast/Toast.constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,yBAAyB,OAAO,CAAC;AAG9C,eAAO,MAAM,wBAAwB,MAAM,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toast.constants.d.mts","sourceRoot":"","sources":["../../../src/types/Toast/Toast.constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,yBAAyB,OAAO,CAAC;AAG9C,eAAO,MAAM,wBAAwB,MAAM,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export const TOAST_VISIBILITY_DURATION = 2750;
|
|
2
|
+
// Align this with AnimationDuration.Promptly without importing design-tokens
|
|
3
|
+
// here, which would reintroduce the workspace build cycle.
|
|
4
|
+
export const TOAST_ANIMATION_DURATION = 200;
|
|
5
|
+
//# sourceMappingURL=Toast.constants.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toast.constants.mjs","sourceRoot":"","sources":["../../../src/types/Toast/Toast.constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,CAAC;AAC9C,6EAA6E;AAC7E,2DAA2D;AAC3D,MAAM,CAAC,MAAM,wBAAwB,GAAG,GAAG,CAAC","sourcesContent":["export const TOAST_VISIBILITY_DURATION = 2750;\n// Align this with AnimationDuration.Promptly without importing design-tokens\n// here, which would reintroduce the workspace build cycle.\nexport const TOAST_ANIMATION_DURATION = 200;\n"]}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ToastSeverity = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Toast severity variants.
|
|
6
|
+
* `Default` renders no built-in leading icon.
|
|
7
|
+
*/
|
|
8
|
+
exports.ToastSeverity = {
|
|
9
|
+
Default: 'default',
|
|
10
|
+
Success: 'success',
|
|
11
|
+
Warning: 'warning',
|
|
12
|
+
Danger: 'danger',
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=Toast.types.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toast.types.cjs","sourceRoot":"","sources":["../../../src/types/Toast/Toast.types.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACU,QAAA,aAAa,GAAG;IAC3B,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;CACR,CAAC","sourcesContent":["/**\n * Toast severity variants.\n * `Default` renders no built-in leading icon.\n */\nexport const ToastSeverity = {\n Default: 'default',\n Success: 'success',\n Warning: 'warning',\n Danger: 'danger',\n} as const;\n\nexport type ToastSeverity = (typeof ToastSeverity)[keyof typeof ToastSeverity];\n\n/**\n * Cross-platform Toast props shared between React and React Native.\n * Platform packages extend this with their own BannerBase props and event handlers.\n */\nexport type ToastPropsShared = {\n severity?: ToastSeverity;\n};\n"]}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Toast severity variants.
|
|
3
|
+
* `Default` renders no built-in leading icon.
|
|
4
|
+
*/
|
|
5
|
+
export declare const ToastSeverity: {
|
|
6
|
+
readonly Default: "default";
|
|
7
|
+
readonly Success: "success";
|
|
8
|
+
readonly Warning: "warning";
|
|
9
|
+
readonly Danger: "danger";
|
|
10
|
+
};
|
|
11
|
+
export type ToastSeverity = (typeof ToastSeverity)[keyof typeof ToastSeverity];
|
|
12
|
+
/**
|
|
13
|
+
* Cross-platform Toast props shared between React and React Native.
|
|
14
|
+
* Platform packages extend this with their own BannerBase props and event handlers.
|
|
15
|
+
*/
|
|
16
|
+
export type ToastPropsShared = {
|
|
17
|
+
severity?: ToastSeverity;
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=Toast.types.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toast.types.d.cts","sourceRoot":"","sources":["../../../src/types/Toast/Toast.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,aAAa;;;;;CAKhB,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC;AAE/E;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B,QAAQ,CAAC,EAAE,aAAa,CAAC;CAC1B,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Toast severity variants.
|
|
3
|
+
* `Default` renders no built-in leading icon.
|
|
4
|
+
*/
|
|
5
|
+
export declare const ToastSeverity: {
|
|
6
|
+
readonly Default: "default";
|
|
7
|
+
readonly Success: "success";
|
|
8
|
+
readonly Warning: "warning";
|
|
9
|
+
readonly Danger: "danger";
|
|
10
|
+
};
|
|
11
|
+
export type ToastSeverity = (typeof ToastSeverity)[keyof typeof ToastSeverity];
|
|
12
|
+
/**
|
|
13
|
+
* Cross-platform Toast props shared between React and React Native.
|
|
14
|
+
* Platform packages extend this with their own BannerBase props and event handlers.
|
|
15
|
+
*/
|
|
16
|
+
export type ToastPropsShared = {
|
|
17
|
+
severity?: ToastSeverity;
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=Toast.types.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toast.types.d.mts","sourceRoot":"","sources":["../../../src/types/Toast/Toast.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,aAAa;;;;;CAKhB,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC;AAE/E;;;GAGG;AACH,MAAM,MAAM,gBAAgB,GAAG;IAC7B,QAAQ,CAAC,EAAE,aAAa,CAAC;CAC1B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toast.types.mjs","sourceRoot":"","sources":["../../../src/types/Toast/Toast.types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;CACR,CAAC","sourcesContent":["/**\n * Toast severity variants.\n * `Default` renders no built-in leading icon.\n */\nexport const ToastSeverity = {\n Default: 'default',\n Success: 'success',\n Warning: 'warning',\n Danger: 'danger',\n} as const;\n\nexport type ToastSeverity = (typeof ToastSeverity)[keyof typeof ToastSeverity];\n\n/**\n * Cross-platform Toast props shared between React and React Native.\n * Platform packages extend this with their own BannerBase props and event handlers.\n */\nexport type ToastPropsShared = {\n severity?: ToastSeverity;\n};\n"]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ToastSeverity = exports.TOAST_VISIBILITY_DURATION = exports.TOAST_ANIMATION_DURATION = void 0;
|
|
4
|
+
var Toast_constants_1 = require("./Toast.constants.cjs");
|
|
5
|
+
Object.defineProperty(exports, "TOAST_ANIMATION_DURATION", { enumerable: true, get: function () { return Toast_constants_1.TOAST_ANIMATION_DURATION; } });
|
|
6
|
+
Object.defineProperty(exports, "TOAST_VISIBILITY_DURATION", { enumerable: true, get: function () { return Toast_constants_1.TOAST_VISIBILITY_DURATION; } });
|
|
7
|
+
var Toast_types_1 = require("./Toast.types.cjs");
|
|
8
|
+
Object.defineProperty(exports, "ToastSeverity", { enumerable: true, get: function () { return Toast_types_1.ToastSeverity; } });
|
|
9
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../../../src/types/Toast/index.ts"],"names":[],"mappings":";;;AAAA,yDAG2B;AAFzB,2HAAA,wBAAwB,OAAA;AACxB,4HAAA,yBAAyB,OAAA;AAE3B,iDAAqE;AAA5D,4GAAA,aAAa,OAAA","sourcesContent":["export {\n TOAST_ANIMATION_DURATION,\n TOAST_VISIBILITY_DURATION,\n} from './Toast.constants';\nexport { ToastSeverity, type ToastPropsShared } from './Toast.types';\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.cts","sourceRoot":"","sources":["../../../src/types/Toast/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,wBAAwB,EACxB,yBAAyB,GAC1B,8BAA0B;AAC3B,OAAO,EAAE,aAAa,EAAE,KAAK,gBAAgB,EAAE,0BAAsB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/types/Toast/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,wBAAwB,EACxB,yBAAyB,GAC1B,8BAA0B;AAC3B,OAAO,EAAE,aAAa,EAAE,KAAK,gBAAgB,EAAE,0BAAsB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/types/Toast/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,wBAAwB,EACxB,yBAAyB,EAC1B,8BAA0B;AAC3B,OAAO,EAAE,aAAa,EAAyB,0BAAsB","sourcesContent":["export {\n TOAST_ANIMATION_DURATION,\n TOAST_VISIBILITY_DURATION,\n} from './Toast.constants';\nexport { ToastSeverity, type ToastPropsShared } from './Toast.types';\n"]}
|