@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.cjs
CHANGED
|
@@ -152,7 +152,7 @@ function LocalizationProvider({
|
|
|
152
152
|
function useLocale() {
|
|
153
153
|
return React__namespace.useContext(LocalizationContext);
|
|
154
154
|
}
|
|
155
|
-
const DEFAULT_PREFIX = "
|
|
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 });
|