@dxos/react-ui 0.3.11-next.e28df4f → 0.3.11-next.f4c1077
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/lib/browser/index.mjs +24 -12
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/types/src/components/Avatars/Avatar.d.ts +2 -2
- package/dist/types/src/components/Input/Input.stories.d.ts +1 -1
- package/dist/types/src/components/List/List.stories.d.ts.map +1 -1
- package/dist/types/src/components/Popover/Popover.stories.d.ts.map +1 -1
- package/dist/types/src/components/ScrollArea/ScrollArea.stories.d.ts.map +1 -1
- package/dist/types/src/components/Select/Select.d.ts.map +1 -1
- package/dist/types/src/components/ThemeProvider/TranslationsProvider.d.ts +108 -1
- package/dist/types/src/components/ThemeProvider/TranslationsProvider.d.ts.map +1 -1
- package/dist/types/src/components/ThemeProvider/index.d.ts +1 -0
- package/dist/types/src/components/ThemeProvider/index.d.ts.map +1 -1
- package/dist/types/src/hooks/useTranslationsContext.d.ts +1 -0
- package/dist/types/src/hooks/useTranslationsContext.d.ts.map +1 -1
- package/dist/types/src/index.d.ts +1 -1
- package/dist/types/src/index.d.ts.map +1 -1
- package/package.json +10 -9
- package/src/components/List/List.stories.tsx +10 -3
- package/src/components/Popover/Popover.stories.tsx +2 -1
- package/src/components/ScrollArea/ScrollArea.stories.tsx +1 -1
- package/src/components/Select/Select.stories.tsx +1 -1
- package/src/components/Select/Select.tsx +14 -12
- package/src/components/ThemeProvider/TranslationsProvider.tsx +20 -4
- package/src/components/ThemeProvider/index.ts +1 -0
- package/src/index.ts +1 -1
- package/src/playground/Surfaces.stories.tsx +6 -6
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// packages/ui/react-ui/src/index.ts
|
|
2
|
-
import {
|
|
2
|
+
import { Trans } from "react-i18next";
|
|
3
3
|
export * from "@dxos/react-ui-types";
|
|
4
4
|
export * from "@dxos/react-hooks";
|
|
5
5
|
|
|
@@ -23,14 +23,16 @@ var useElevationContext = (propsElevation) => {
|
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
// packages/ui/react-ui/src/hooks/useTranslationsContext.ts
|
|
26
|
-
import { useContext as
|
|
26
|
+
import { useContext as useContext4 } from "react";
|
|
27
27
|
|
|
28
28
|
// packages/ui/react-ui/src/components/ThemeProvider/TranslationsProvider.tsx
|
|
29
|
+
import { enUS as dtLocaleEnUs } from "date-fns/locale";
|
|
29
30
|
import i18Next from "i18next";
|
|
30
|
-
import React, { useEffect, createContext, useState, Suspense } from "react";
|
|
31
|
-
import { initReactI18next } from "react-i18next";
|
|
31
|
+
import React, { useEffect, createContext, useState, Suspense, useContext as useContext3 } from "react";
|
|
32
|
+
import { initReactI18next, useTranslation as useI18NextTranslation } from "react-i18next";
|
|
32
33
|
var initialLng = "en-US";
|
|
33
34
|
var initialNs = "dxos-common";
|
|
35
|
+
var initialDtLocale = dtLocaleEnUs;
|
|
34
36
|
var resources = {
|
|
35
37
|
[initialLng]: {
|
|
36
38
|
[initialNs]: {
|
|
@@ -47,9 +49,18 @@ void i18Next.use(initReactI18next).init({
|
|
|
47
49
|
}
|
|
48
50
|
});
|
|
49
51
|
var TranslationsContext = /* @__PURE__ */ createContext({
|
|
50
|
-
appNs: initialNs
|
|
52
|
+
appNs: initialNs,
|
|
53
|
+
dtLocale: initialDtLocale
|
|
51
54
|
});
|
|
52
|
-
var
|
|
55
|
+
var useTranslation = (...args) => {
|
|
56
|
+
const result = useI18NextTranslation(...args);
|
|
57
|
+
const { dtLocale } = useContext3(TranslationsContext);
|
|
58
|
+
return {
|
|
59
|
+
...result,
|
|
60
|
+
dtLocale
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
var TranslationsProvider = ({ fallback, resourceExtensions, children, appNs, dtLocale }) => {
|
|
53
64
|
const [loaded, setLoaded] = useState(false);
|
|
54
65
|
useEffect(() => {
|
|
55
66
|
setLoaded(false);
|
|
@@ -68,7 +79,8 @@ var TranslationsProvider = ({ fallback, resourceExtensions, children, appNs }) =
|
|
|
68
79
|
]);
|
|
69
80
|
return /* @__PURE__ */ React.createElement(TranslationsContext.Provider, {
|
|
70
81
|
value: {
|
|
71
|
-
appNs: appNs ?? initialNs
|
|
82
|
+
appNs: appNs ?? initialNs,
|
|
83
|
+
dtLocale: dtLocale ?? initialDtLocale
|
|
72
84
|
}
|
|
73
85
|
}, /* @__PURE__ */ React.createElement(Suspense, {
|
|
74
86
|
fallback
|
|
@@ -76,11 +88,11 @@ var TranslationsProvider = ({ fallback, resourceExtensions, children, appNs }) =
|
|
|
76
88
|
};
|
|
77
89
|
|
|
78
90
|
// packages/ui/react-ui/src/hooks/useTranslationsContext.ts
|
|
79
|
-
var useTranslationsContext = () =>
|
|
91
|
+
var useTranslationsContext = () => useContext4(TranslationsContext);
|
|
80
92
|
|
|
81
93
|
// packages/ui/react-ui/src/hooks/useThemeContext.ts
|
|
82
|
-
import { useContext as
|
|
83
|
-
var useThemeContext = () =>
|
|
94
|
+
import { useContext as useContext5 } from "react";
|
|
95
|
+
var useThemeContext = () => useContext5(ThemeContext);
|
|
84
96
|
|
|
85
97
|
// packages/ui/react-ui/src/hooks/useVisualViewport.ts
|
|
86
98
|
import { useEffect as useEffect2, useState as useState2 } from "react";
|
|
@@ -1711,13 +1723,13 @@ var SelectTrigger = SelectPrimitive.Trigger;
|
|
|
1711
1723
|
var SelectValue = SelectPrimitive.Value;
|
|
1712
1724
|
var SelectIcon = SelectPrimitive.Icon;
|
|
1713
1725
|
var SelectPortal = SelectPrimitive.Portal;
|
|
1714
|
-
var SelectTriggerButton = /* @__PURE__ */ forwardRef21(({ placeholder, ...props }, forwardedRef) => {
|
|
1726
|
+
var SelectTriggerButton = /* @__PURE__ */ forwardRef21(({ children, placeholder, ...props }, forwardedRef) => {
|
|
1715
1727
|
return /* @__PURE__ */ React24.createElement(SelectPrimitive.Trigger, {
|
|
1716
1728
|
asChild: true,
|
|
1717
1729
|
ref: forwardedRef
|
|
1718
1730
|
}, /* @__PURE__ */ React24.createElement(Button, props, /* @__PURE__ */ React24.createElement(SelectPrimitive.Value, {
|
|
1719
1731
|
placeholder
|
|
1720
|
-
}), /* @__PURE__ */ React24.createElement(SelectPrimitive.Icon, {
|
|
1732
|
+
}, children), /* @__PURE__ */ React24.createElement(SelectPrimitive.Icon, {
|
|
1721
1733
|
className: "pis-2"
|
|
1722
1734
|
}, /* @__PURE__ */ React24.createElement(CaretDown2, {
|
|
1723
1735
|
weight: "bold"
|