@sudajs/cli 0.16.0 → 0.17.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/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/templates/theme/AGENTS.md +3 -3
- package/templates/theme/src/sections.tsx +4 -4
package/dist/index.js
CHANGED
|
@@ -886,9 +886,14 @@ if (!ThemeRuntime) {
|
|
|
886
886
|
throw new Error("Missing host theme runtime (__SUDA_THEME_RUNTIME__).");
|
|
887
887
|
}
|
|
888
888
|
export const {
|
|
889
|
+
SudaIcon,
|
|
889
890
|
SudaLucideIcon,
|
|
891
|
+
getSudaSimpleIconSlug,
|
|
892
|
+
isSudaSimpleIconName,
|
|
893
|
+
normalizeSudaIconName,
|
|
890
894
|
isSudaLucideIconName,
|
|
891
895
|
normalizeSudaLucideIconName,
|
|
896
|
+
toSudaSimpleIconName,
|
|
892
897
|
colorSchemeField,
|
|
893
898
|
createColorSchemeDefault,
|
|
894
899
|
createThemeCssVariables,
|
|
@@ -949,9 +954,14 @@ if (!ThemeIcons) {
|
|
|
949
954
|
throw new Error("Missing host theme icon runtime (__SUDA_THEME_ICONS__).");
|
|
950
955
|
}
|
|
951
956
|
export const {
|
|
957
|
+
SudaIcon,
|
|
952
958
|
SudaLucideIcon,
|
|
959
|
+
getSudaSimpleIconSlug,
|
|
960
|
+
isSudaSimpleIconName,
|
|
961
|
+
normalizeSudaIconName,
|
|
953
962
|
isSudaLucideIconName,
|
|
954
963
|
normalizeSudaLucideIconName,
|
|
964
|
+
toSudaSimpleIconName,
|
|
955
965
|
} = ThemeIcons;
|
|
956
966
|
`
|
|
957
967
|
}));
|