@orangecheck/design 0.31.1 → 0.32.1
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/dist/styles/sigil.css +4 -2
- package/package.json +6 -7
package/dist/composites.mjs
CHANGED
|
@@ -993,7 +993,41 @@ function VerifiedChip({ icon, iconTone = "peach", label, className }) {
|
|
|
993
993
|
}
|
|
994
994
|
);
|
|
995
995
|
}
|
|
996
|
+
var ACKNOWLEDGEMENT_URL = "https://bramk.substack.com/";
|
|
997
|
+
var ACKNOWLEDGEMENT_NAME = "bram kanstein";
|
|
998
|
+
function Acknowledgement({ tone = "default", className }) {
|
|
999
|
+
const onBrand = tone === "onBrand";
|
|
1000
|
+
return /* @__PURE__ */ jsxs(
|
|
1001
|
+
"p",
|
|
1002
|
+
{
|
|
1003
|
+
className: cn(
|
|
1004
|
+
"mx-auto max-w-[52ch] font-mono text-xs leading-relaxed",
|
|
1005
|
+
onBrand ? "text-brand-foreground/70" : "text-muted-foreground",
|
|
1006
|
+
className
|
|
1007
|
+
),
|
|
1008
|
+
children: [
|
|
1009
|
+
"with thanks to",
|
|
1010
|
+
" ",
|
|
1011
|
+
/* @__PURE__ */ jsx(
|
|
1012
|
+
"a",
|
|
1013
|
+
{
|
|
1014
|
+
href: ACKNOWLEDGEMENT_URL,
|
|
1015
|
+
target: "_blank",
|
|
1016
|
+
rel: "noreferrer",
|
|
1017
|
+
className: cn(
|
|
1018
|
+
"underline decoration-dotted underline-offset-2 transition-colors",
|
|
1019
|
+
onBrand ? "hover:text-brand-foreground" : "hover:text-foreground"
|
|
1020
|
+
),
|
|
1021
|
+
children: ACKNOWLEDGEMENT_NAME
|
|
1022
|
+
}
|
|
1023
|
+
),
|
|
1024
|
+
" ",
|
|
1025
|
+
"\u2014 whose work on bitcoin as sovereignty layer shaped the premise."
|
|
1026
|
+
]
|
|
1027
|
+
}
|
|
1028
|
+
);
|
|
1029
|
+
}
|
|
996
1030
|
|
|
997
|
-
export { AccentList, AccentNote, BrandBand, Callout, CheckList, ComparisonTable, DataRow, DefinitionList, EmailCapture, EmptyState, Faq, FeatureCard, HelpHint, MarketingHeading, NumberedStep, OcErrorPage, Panel, Section, SectionHeader, StatCard, StatGrid, StatTile, StepList, TwoToneHeading, VerifiedChip };
|
|
1031
|
+
export { ACKNOWLEDGEMENT_NAME, ACKNOWLEDGEMENT_URL, AccentList, AccentNote, Acknowledgement, BrandBand, Callout, CheckList, ComparisonTable, DataRow, DefinitionList, EmailCapture, EmptyState, Faq, FeatureCard, HelpHint, MarketingHeading, NumberedStep, OcErrorPage, Panel, Section, SectionHeader, StatCard, StatGrid, StatTile, StepList, TwoToneHeading, VerifiedChip };
|
|
998
1032
|
//# sourceMappingURL=composites.mjs.map
|
|
999
1033
|
//# sourceMappingURL=composites.mjs.map
|