@orangecheck/design 0.31.1 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.d.mts +1 -1
- package/dist/components.d.ts +1 -1
- package/dist/components.js +37 -0
- package/dist/components.js.map +1 -1
- package/dist/components.mjs +35 -1
- package/dist/components.mjs.map +1 -1
- package/dist/composites.d.mts +9 -1
- package/dist/composites.d.ts +9 -1
- package/dist/composites.js +37 -0
- package/dist/composites.js.map +1 -1
- package/dist/composites.mjs +35 -1
- package/dist/composites.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +37 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +35 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -7
package/dist/composites.d.mts
CHANGED
|
@@ -265,4 +265,12 @@ interface VerifiedChipProps {
|
|
|
265
265
|
}
|
|
266
266
|
declare function VerifiedChip({ icon, iconTone, label, className }: VerifiedChipProps): react_jsx_runtime.JSX.Element;
|
|
267
267
|
|
|
268
|
-
|
|
268
|
+
interface AcknowledgementProps {
|
|
269
|
+
tone?: 'default' | 'onBrand';
|
|
270
|
+
className?: string;
|
|
271
|
+
}
|
|
272
|
+
declare const ACKNOWLEDGEMENT_URL = "https://bramk.substack.com/";
|
|
273
|
+
declare const ACKNOWLEDGEMENT_NAME = "bram kanstein";
|
|
274
|
+
declare function Acknowledgement({ tone, className }: AcknowledgementProps): react_jsx_runtime.JSX.Element;
|
|
275
|
+
|
|
276
|
+
export { ACKNOWLEDGEMENT_NAME, ACKNOWLEDGEMENT_URL, AccentList, type AccentListItem, type AccentListProps, AccentNote, type AccentNoteProps, Acknowledgement, type AcknowledgementProps, BrandBand, Callout, type CalloutProps, type CalloutTone, CheckList, type CheckListProps, type ComparisonRow, ComparisonTable, type ComparisonTableProps, DataRow, type DataRowProps, type DefinitionItem, DefinitionList, type DefinitionListProps, EmailCapture, type EmailCaptureProps, EmptyState, type EmptyStateCta, type EmptyStateProps, Faq, type FaqItem, type FaqProps, FeatureCard, type FeatureCardProps, HelpHint, type HelpHintProps, MarketingHeading, type MarketingHeadingProps, NumberedStep, type NumberedStepProps, OcErrorPage, type OcErrorPageProps, type OcErrorVariant, Panel, type PanelProps, Section, SectionHeader, type SectionHeaderProps, type SectionProps, StatCard, type StatCardProps, StatGrid, type StatGridProps, type StatItem, StatTile, type Step, StepList, type StepListProps, TwoToneHeading, type TwoToneHeadingProps, VerifiedChip, type VerifiedChipProps };
|
package/dist/composites.d.ts
CHANGED
|
@@ -265,4 +265,12 @@ interface VerifiedChipProps {
|
|
|
265
265
|
}
|
|
266
266
|
declare function VerifiedChip({ icon, iconTone, label, className }: VerifiedChipProps): react_jsx_runtime.JSX.Element;
|
|
267
267
|
|
|
268
|
-
|
|
268
|
+
interface AcknowledgementProps {
|
|
269
|
+
tone?: 'default' | 'onBrand';
|
|
270
|
+
className?: string;
|
|
271
|
+
}
|
|
272
|
+
declare const ACKNOWLEDGEMENT_URL = "https://bramk.substack.com/";
|
|
273
|
+
declare const ACKNOWLEDGEMENT_NAME = "bram kanstein";
|
|
274
|
+
declare function Acknowledgement({ tone, className }: AcknowledgementProps): react_jsx_runtime.JSX.Element;
|
|
275
|
+
|
|
276
|
+
export { ACKNOWLEDGEMENT_NAME, ACKNOWLEDGEMENT_URL, AccentList, type AccentListItem, type AccentListProps, AccentNote, type AccentNoteProps, Acknowledgement, type AcknowledgementProps, BrandBand, Callout, type CalloutProps, type CalloutTone, CheckList, type CheckListProps, type ComparisonRow, ComparisonTable, type ComparisonTableProps, DataRow, type DataRowProps, type DefinitionItem, DefinitionList, type DefinitionListProps, EmailCapture, type EmailCaptureProps, EmptyState, type EmptyStateCta, type EmptyStateProps, Faq, type FaqItem, type FaqProps, FeatureCard, type FeatureCardProps, HelpHint, type HelpHintProps, MarketingHeading, type MarketingHeadingProps, NumberedStep, type NumberedStepProps, OcErrorPage, type OcErrorPageProps, type OcErrorVariant, Panel, type PanelProps, Section, SectionHeader, type SectionHeaderProps, type SectionProps, StatCard, type StatCardProps, StatGrid, type StatGridProps, type StatItem, StatTile, type Step, StepList, type StepListProps, TwoToneHeading, type TwoToneHeadingProps, VerifiedChip, type VerifiedChipProps };
|
package/dist/composites.js
CHANGED
|
@@ -1019,9 +1019,46 @@ function VerifiedChip({ icon, iconTone = "peach", label, className }) {
|
|
|
1019
1019
|
}
|
|
1020
1020
|
);
|
|
1021
1021
|
}
|
|
1022
|
+
var ACKNOWLEDGEMENT_URL = "https://bramk.substack.com/";
|
|
1023
|
+
var ACKNOWLEDGEMENT_NAME = "bram kanstein";
|
|
1024
|
+
function Acknowledgement({ tone = "default", className }) {
|
|
1025
|
+
const onBrand = tone === "onBrand";
|
|
1026
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1027
|
+
"p",
|
|
1028
|
+
{
|
|
1029
|
+
className: cn(
|
|
1030
|
+
"mx-auto max-w-[52ch] font-mono text-xs leading-relaxed",
|
|
1031
|
+
onBrand ? "text-brand-foreground/70" : "text-muted-foreground",
|
|
1032
|
+
className
|
|
1033
|
+
),
|
|
1034
|
+
children: [
|
|
1035
|
+
"with thanks to",
|
|
1036
|
+
" ",
|
|
1037
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1038
|
+
"a",
|
|
1039
|
+
{
|
|
1040
|
+
href: ACKNOWLEDGEMENT_URL,
|
|
1041
|
+
target: "_blank",
|
|
1042
|
+
rel: "noreferrer",
|
|
1043
|
+
className: cn(
|
|
1044
|
+
"underline decoration-dotted underline-offset-2 transition-colors",
|
|
1045
|
+
onBrand ? "hover:text-brand-foreground" : "hover:text-foreground"
|
|
1046
|
+
),
|
|
1047
|
+
children: ACKNOWLEDGEMENT_NAME
|
|
1048
|
+
}
|
|
1049
|
+
),
|
|
1050
|
+
" ",
|
|
1051
|
+
"\u2014 whose work on bitcoin as sovereignty layer shaped the premise."
|
|
1052
|
+
]
|
|
1053
|
+
}
|
|
1054
|
+
);
|
|
1055
|
+
}
|
|
1022
1056
|
|
|
1057
|
+
exports.ACKNOWLEDGEMENT_NAME = ACKNOWLEDGEMENT_NAME;
|
|
1058
|
+
exports.ACKNOWLEDGEMENT_URL = ACKNOWLEDGEMENT_URL;
|
|
1023
1059
|
exports.AccentList = AccentList;
|
|
1024
1060
|
exports.AccentNote = AccentNote;
|
|
1061
|
+
exports.Acknowledgement = Acknowledgement;
|
|
1025
1062
|
exports.BrandBand = BrandBand;
|
|
1026
1063
|
exports.Callout = Callout;
|
|
1027
1064
|
exports.CheckList = CheckList;
|