@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.
@@ -152,7 +152,7 @@ function LocalizationProvider({
152
152
  function useLocale() {
153
153
  return React__namespace.useContext(LocalizationContext);
154
154
  }
155
- const DEFAULT_PREFIX = "oui-";
155
+ const DEFAULT_PREFIX = "o-ui-";
156
156
  const PrefixContext = React__namespace.createContext(DEFAULT_PREFIX);
157
157
  function PrefixProvider({ prefix, children }) {
158
158
  return prefix === void 0 ? children : /* @__PURE__ */ jsxRuntime.jsx(PrefixContext.Provider, { value: prefix, children });