@servlyadmin/runtime-core 0.1.30 → 0.1.32

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.
@@ -1,4 +1,4 @@
1
- // src/registry.ts
1
+ // packages/runtime-core/src/registry.ts
2
2
  function createRegistry() {
3
3
  const components = /* @__PURE__ */ new Map();
4
4
  return {
@@ -1,4 +1,4 @@
1
- // src/tailwind.ts
1
+ // packages/runtime-core/src/tailwind.ts
2
2
  var DEFAULT_TAILWIND_CDN = "https://cdn.tailwindcss.com";
3
3
  var tailwindInjected = false;
4
4
  var tailwindScript = null;
@@ -128,8 +128,10 @@ async function initServlyTailwind(customConfig) {
128
128
  usePlayCdn: true
129
129
  });
130
130
  }
131
+ var injectTailwindStyles = initServlyTailwind;
131
132
  var tailwind_default = {
132
133
  injectTailwind,
134
+ injectTailwindStyles,
133
135
  removeTailwind,
134
136
  isTailwindLoaded,
135
137
  getTailwind,
@@ -150,5 +152,6 @@ export {
150
152
  removeCustomStyles,
151
153
  DEFAULT_SERVLY_TAILWIND_CONFIG,
152
154
  initServlyTailwind,
155
+ injectTailwindStyles,
153
156
  tailwind_default
154
157
  };