@preply/ds-rn-lib 10.0.0 → 11.1.0
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/assets/PreplyDSIcons.ttf +0 -0
- package/dist/components/Button/Button.d.ts +4 -2
- package/dist/components/Button/Button.d.ts.map +1 -1
- package/dist/components/Button/Button.js +3 -3
- package/dist/components/Button/private/primitives.d.ts +1 -1
- package/dist/components/Button/private/primitives.d.ts.map +1 -1
- package/dist/components/Button/private/primitives.js +18 -7
- package/dist/components/IconButton/IconButton.d.ts +1 -1
- package/dist/components/IconButton/IconButton.d.ts.map +1 -1
- package/dist/components/IconButton/IconButton.js +3 -3
- package/dist/generated/PreplyDSIcons.d.ts +7 -2
- package/dist/generated/PreplyDSIcons.d.ts.map +1 -1
- package/dist/generated/PreplyDSIcons.js +173 -163
- package/dist/index.js +9 -9
- package/dist/props/index.js +1 -1
- package/package.json +15 -15
package/dist/index.js
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
export { DS_ICON_FONT_NAME } from './constants.js';
|
|
2
2
|
export { AIButtonBorder } from './components/AI/AIButtonBorder.js';
|
|
3
|
-
export { AISurfaceBorder } from './components/AI/AISurfaceBorder.js';
|
|
4
3
|
export { AISurfaceBackground } from './components/AI/AISurfaceBackground.js';
|
|
4
|
+
export { AISurfaceBorder } from './components/AI/AISurfaceBorder.js';
|
|
5
5
|
export { Avatar } from './components/Avatar/Avatar.js';
|
|
6
6
|
export { AvatarWithStatus } from './components/AvatarWithStatus/AvatarWithStatus.js';
|
|
7
7
|
export { Badge } from './components/Badge/Badge.js';
|
|
8
8
|
export { Button } from './components/Button/Button.js';
|
|
9
|
-
export { Heading } from './components/Heading/Heading.js';
|
|
10
9
|
export { FieldButton } from './components/FieldButton/FieldButton.js';
|
|
11
10
|
export { FormControl } from './components/FormControl/FormControl.js';
|
|
11
|
+
export { Heading } from './components/Heading/Heading.js';
|
|
12
12
|
export { Icon } from './components/Icon/Icon.js';
|
|
13
|
-
export { IconTile } from './components/IconTile/IconTile.js';
|
|
14
13
|
export { IconButton } from './components/IconButton/IconButton.js';
|
|
14
|
+
export { IconTile } from './components/IconTile/IconTile.js';
|
|
15
|
+
export { IntlFormattedAggregatedDateTime } from './components/IntlFormatted/IntlFormattedAggregatedDateTime.js';
|
|
16
|
+
export { IntlFormattedCurrency } from './components/IntlFormatted/IntlFormattedCurrency.js';
|
|
17
|
+
export { IntlFormattedDate } from './components/IntlFormatted/IntlFormattedDate.js';
|
|
18
|
+
export { IntlFormattedTime } from './components/IntlFormatted/IntlFormattedTime.js';
|
|
15
19
|
export { LayoutFlex } from './components/LayoutFlex/LayoutFlex.js';
|
|
16
20
|
export { LayoutFlexItem } from './components/LayoutFlexItem/LayoutFlexItem.js';
|
|
17
21
|
export { Link } from './components/Link/Link.js';
|
|
18
22
|
export { Loader } from './components/Loader/Loader.js';
|
|
19
23
|
export { PasswordField } from './components/PasswordField/PasswordField.js';
|
|
20
24
|
export { Text } from './components/Text/Text.js';
|
|
21
|
-
export { TextInline } from './components/TextInline/TextInline.js';
|
|
22
25
|
export { TextField } from './components/TextField/TextField.js';
|
|
26
|
+
export { TextInline } from './components/TextInline/TextInline.js';
|
|
23
27
|
export { TextareaField } from './components/TextareaField/TextareaField.js';
|
|
24
|
-
export {
|
|
25
|
-
export { IntlFormattedCurrency } from './components/IntlFormatted/IntlFormattedCurrency.js';
|
|
26
|
-
export { IntlFormattedDate } from './components/IntlFormatted/IntlFormattedDate.js';
|
|
27
|
-
export { IntlFormattedTime } from './components/IntlFormatted/IntlFormattedTime.js';
|
|
28
|
+
export { lettersCutStyleByVariant } from './props/typography/hooks/lettersCutStyleByVariant.js';
|
|
28
29
|
export { useHeadingStyle } from './props/typography/hooks/useHeadingStyle.js';
|
|
29
30
|
export { useTextStyle } from './props/typography/hooks/useTextStyle.js';
|
|
30
|
-
export { lettersCutStyleByVariant } from './props/typography/hooks/lettersCutStyleByVariant.js';
|
|
31
31
|
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VzIjpbXSwic291cmNlc0NvbnRlbnQiOltdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OzsifQ==
|
package/dist/props/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
+
export { lettersCutStyleByVariant } from './typography/hooks/lettersCutStyleByVariant.js';
|
|
1
2
|
export { useHeadingStyle } from './typography/hooks/useHeadingStyle.js';
|
|
2
3
|
export { useTextStyle } from './typography/hooks/useTextStyle.js';
|
|
3
|
-
export { lettersCutStyleByVariant } from './typography/hooks/lettersCutStyleByVariant.js';
|
|
4
4
|
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VzIjpbXSwic291cmNlc0NvbnRlbnQiOltdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzsifQ==
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@preply/ds-rn-lib",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"@radix-ui/react-slot": "^1.2.3"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@preply/ds-core": "
|
|
28
|
-
"@preply/ds-core-types": "
|
|
29
|
-
"@preply/ds-rn-core": "
|
|
30
|
-
"@preply/ds-rn-root": "
|
|
31
|
-
"@preply/ds-visual-coverage-preply-component-names": "
|
|
32
|
-
"@preply/ds-visual-coverage-preply-rn": "
|
|
27
|
+
"@preply/ds-core": "11.1.0",
|
|
28
|
+
"@preply/ds-core-types": "11.1.0",
|
|
29
|
+
"@preply/ds-rn-core": "11.1.0",
|
|
30
|
+
"@preply/ds-rn-root": "11.1.0",
|
|
31
|
+
"@preply/ds-visual-coverage-preply-component-names": "11.1.0",
|
|
32
|
+
"@preply/ds-visual-coverage-preply-rn": "11.1.0",
|
|
33
33
|
"@react-native-masked-view/masked-view": "0.x",
|
|
34
34
|
"expo-image": "^2.0.6",
|
|
35
35
|
"react": "^16 || ^18",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
|
42
42
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
43
|
-
"@preply/ds-core": "
|
|
44
|
-
"@preply/ds-core-types": "
|
|
45
|
-
"@preply/ds-media-icons": "
|
|
46
|
-
"@preply/ds-rn-core": "
|
|
47
|
-
"@preply/ds-rn-root": "
|
|
48
|
-
"@preply/ds-visual-coverage-preply-component-names": "
|
|
49
|
-
"@preply/ds-visual-coverage-preply-rn": "
|
|
43
|
+
"@preply/ds-core": "11.1.0",
|
|
44
|
+
"@preply/ds-core-types": "11.1.0",
|
|
45
|
+
"@preply/ds-media-icons": "11.1.0",
|
|
46
|
+
"@preply/ds-rn-core": "11.1.0",
|
|
47
|
+
"@preply/ds-rn-root": "11.1.0",
|
|
48
|
+
"@preply/ds-visual-coverage-preply-component-names": "11.1.0",
|
|
49
|
+
"@preply/ds-visual-coverage-preply-rn": "11.1.0",
|
|
50
50
|
"@react-native-masked-view/masked-view": "0.3.2",
|
|
51
51
|
"@storybook/react-native": "^10.1.0",
|
|
52
52
|
"@testing-library/jest-native": "^5.4.3",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"ts-jest": "^29.4.5",
|
|
70
70
|
"tsx": "^4.20.6"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "36832cd685631ed0d25ebe21415f412eaa63d28a"
|
|
73
73
|
}
|