@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.cjs +1 -1
- package/dist/ostack-ui.cjs.map +1 -1
- package/dist/ostack-ui.css +2356 -2356
- package/dist/ostack-ui.js +1 -1
- package/dist/ostack-ui.js.map +1 -1
- package/dist/types/components/Stack/Stack.d.ts +1 -1
- package/dist/types/providers/PrefixProvider/PrefixContext.d.ts +1 -1
- package/package.json +6 -6
- package/scss/scss/_base-variables.scss +1 -1
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 = "
|
|
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 });
|