@ostack.tech/ui 0.1.1 → 0.1.2

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/ostack-ui.js CHANGED
@@ -135,7 +135,7 @@ function LocalizationProvider({
135
135
  function useLocale() {
136
136
  return React.useContext(LocalizationContext);
137
137
  }
138
- const DEFAULT_PREFIX = "oui-";
138
+ const DEFAULT_PREFIX = "o-ui-";
139
139
  const PrefixContext = React.createContext(DEFAULT_PREFIX);
140
140
  function PrefixProvider({ prefix, children }) {
141
141
  return prefix === void 0 ? children : /* @__PURE__ */ jsx(PrefixContext.Provider, { value: prefix, children });