@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/components.mjs
CHANGED
|
@@ -1130,6 +1130,40 @@ function VerifiedChip({ icon, iconTone = "peach", label, className }) {
|
|
|
1130
1130
|
}
|
|
1131
1131
|
);
|
|
1132
1132
|
}
|
|
1133
|
+
var ACKNOWLEDGEMENT_URL = "https://bramk.substack.com/";
|
|
1134
|
+
var ACKNOWLEDGEMENT_NAME = "bram kanstein";
|
|
1135
|
+
function Acknowledgement({ tone = "default", className }) {
|
|
1136
|
+
const onBrand = tone === "onBrand";
|
|
1137
|
+
return /* @__PURE__ */ jsxs(
|
|
1138
|
+
"p",
|
|
1139
|
+
{
|
|
1140
|
+
className: cn(
|
|
1141
|
+
"mx-auto max-w-[52ch] font-mono text-xs leading-relaxed",
|
|
1142
|
+
onBrand ? "text-brand-foreground/70" : "text-muted-foreground",
|
|
1143
|
+
className
|
|
1144
|
+
),
|
|
1145
|
+
children: [
|
|
1146
|
+
"with thanks to",
|
|
1147
|
+
" ",
|
|
1148
|
+
/* @__PURE__ */ jsx(
|
|
1149
|
+
"a",
|
|
1150
|
+
{
|
|
1151
|
+
href: ACKNOWLEDGEMENT_URL,
|
|
1152
|
+
target: "_blank",
|
|
1153
|
+
rel: "noreferrer",
|
|
1154
|
+
className: cn(
|
|
1155
|
+
"underline decoration-dotted underline-offset-2 transition-colors",
|
|
1156
|
+
onBrand ? "hover:text-brand-foreground" : "hover:text-foreground"
|
|
1157
|
+
),
|
|
1158
|
+
children: ACKNOWLEDGEMENT_NAME
|
|
1159
|
+
}
|
|
1160
|
+
),
|
|
1161
|
+
" ",
|
|
1162
|
+
"\u2014 whose work on bitcoin as sovereignty layer shaped the premise."
|
|
1163
|
+
]
|
|
1164
|
+
}
|
|
1165
|
+
);
|
|
1166
|
+
}
|
|
1133
1167
|
var ENTRIES = [
|
|
1134
1168
|
{
|
|
1135
1169
|
slug: "home",
|
|
@@ -3197,6 +3231,6 @@ function OcFamilyFooter({
|
|
|
3197
3231
|
] }) });
|
|
3198
3232
|
}
|
|
3199
3233
|
|
|
3200
|
-
export { AccentList, AccentNote, AppShell, BrandBand, Callout, CheckList, ComparisonTable, DataRow, DefinitionList, EcosystemSwitcher, EmailCapture, EmptyState, FAMILY_PROPERTIES, Faq, FeatureCard, HelpHint, LayoutSubHeader, MarketingHeading, NumberedStep, OcAccountMenu, OcAccountMenuView, OcAppBar, OcDashboardHub, OcDashboardShell, OcErrorPage, OcFamilyFooter, OcLogoDropdown, OcPrimaryNav, Panel, SITE_STATE_LABEL, Section, SectionHeader, StatCard, StatGrid, StatTile, StepList, TwoToneHeading, VerifiedChip, findFamilyProperty };
|
|
3234
|
+
export { ACKNOWLEDGEMENT_NAME, ACKNOWLEDGEMENT_URL, AccentList, AccentNote, Acknowledgement, AppShell, BrandBand, Callout, CheckList, ComparisonTable, DataRow, DefinitionList, EcosystemSwitcher, EmailCapture, EmptyState, FAMILY_PROPERTIES, Faq, FeatureCard, HelpHint, LayoutSubHeader, MarketingHeading, NumberedStep, OcAccountMenu, OcAccountMenuView, OcAppBar, OcDashboardHub, OcDashboardShell, OcErrorPage, OcFamilyFooter, OcLogoDropdown, OcPrimaryNav, Panel, SITE_STATE_LABEL, Section, SectionHeader, StatCard, StatGrid, StatTile, StepList, TwoToneHeading, VerifiedChip, findFamilyProperty };
|
|
3201
3235
|
//# sourceMappingURL=components.mjs.map
|
|
3202
3236
|
//# sourceMappingURL=components.mjs.map
|