@xsolla/xui-select 0.141.0 → 0.141.1
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/native/index.js +5 -5
- package/native/index.js.map +1 -1
- package/native/index.mjs +5 -5
- package/native/index.mjs.map +1 -1
- package/package.json +3 -3
- package/web/index.js +10 -10
- package/web/index.js.map +1 -1
- package/web/index.mjs +10 -10
- package/web/index.mjs.map +1 -1
- package/README.md +0 -358
package/native/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/Select.tsx
|
|
2
2
|
import React2, { useState, useRef, useEffect } from "react";
|
|
3
3
|
|
|
4
|
-
//
|
|
4
|
+
// ../../foundation/primitives-native/src/Box.tsx
|
|
5
5
|
import {
|
|
6
6
|
View,
|
|
7
7
|
Pressable,
|
|
@@ -179,7 +179,7 @@ var Box = ({
|
|
|
179
179
|
);
|
|
180
180
|
};
|
|
181
181
|
|
|
182
|
-
//
|
|
182
|
+
// ../../foundation/primitives-native/src/Text.tsx
|
|
183
183
|
import {
|
|
184
184
|
Text as RNText,
|
|
185
185
|
StyleSheet
|
|
@@ -245,7 +245,7 @@ var Text = ({
|
|
|
245
245
|
);
|
|
246
246
|
};
|
|
247
247
|
|
|
248
|
-
//
|
|
248
|
+
// ../../foundation/primitives-native/src/Icon.tsx
|
|
249
249
|
import React from "react";
|
|
250
250
|
import { View as View2 } from "react-native";
|
|
251
251
|
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
@@ -269,14 +269,14 @@ var Icon = ({ children, color, size }) => {
|
|
|
269
269
|
return /* @__PURE__ */ jsx3(View2, { style, children: childrenWithProps });
|
|
270
270
|
};
|
|
271
271
|
|
|
272
|
-
//
|
|
272
|
+
// ../../foundation/primitives-native/src/index.tsx
|
|
273
273
|
var isWeb = false;
|
|
274
274
|
var isNative = true;
|
|
275
275
|
|
|
276
276
|
// src/Select.tsx
|
|
277
277
|
import { useResolvedTheme } from "@xsolla/xui-core";
|
|
278
278
|
|
|
279
|
-
//
|
|
279
|
+
// ../../foundation/icons-base/dist/web/index.mjs
|
|
280
280
|
import styled from "styled-components";
|
|
281
281
|
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
282
282
|
import { jsx as jsx22 } from "react/jsx-runtime";
|