@artsy/palette-mobile 13.0.17 → 13.0.19
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v13.0.19 (Fri Oct 13 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- feat(DIA-134): add ImageSetIcon [#161](https://github.com/artsy/palette-mobile/pull/161) ([@araujobarret](https://github.com/araujobarret))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Carlos Alberto de Araujo Barreto ([@araujobarret](https://github.com/araujobarret))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v13.0.18 (Wed Oct 11 2023)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- fix: make innerRef optional [#160](https://github.com/artsy/palette-mobile/pull/160) ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v13.0.17 (Wed Oct 11 2023)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MasonryFlashListProps, MasonryFlashListRef } from "@shopify/flash-list";
|
|
2
2
|
import { RefObject } from "react";
|
|
3
3
|
export declare function TabMasonry<T>(props: MasonryFlashListProps<T> & {
|
|
4
|
-
innerRef
|
|
4
|
+
innerRef?: RefObject<MasonryFlashListRef<T>> | null;
|
|
5
5
|
}): JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ImageSetIcon = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const Icon_1 = require("./Icon");
|
|
6
|
+
const hooks_1 = require("../utils/hooks");
|
|
7
|
+
const ImageSetIcon = ({ fill, ...restProps }) => {
|
|
8
|
+
const color = (0, hooks_1.useColor)();
|
|
9
|
+
return ((0, jsx_runtime_1.jsxs)(Icon_1.Icon, { ...restProps, viewBox: "0 0 18 18", children: [(0, jsx_runtime_1.jsx)(Icon_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M12 6H2V16H12V6ZM1 5V17H13V5H1Z", fill: color(fill) }), (0, jsx_runtime_1.jsx)(Icon_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M14 3H3V4H14L14 15H15V4V3H14Z", fill: color(fill) }), (0, jsx_runtime_1.jsx)(Icon_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M16 1H5V2H16L16 13H17V2V1H16Z", fill: color(fill) })] }));
|
|
10
|
+
};
|
|
11
|
+
exports.ImageSetIcon = ImageSetIcon;
|
package/dist/svgs/index.d.ts
CHANGED
|
@@ -58,6 +58,7 @@ export * from "./HeartFillIcon";
|
|
|
58
58
|
export * from "./HeartIcon";
|
|
59
59
|
export * from "./HomeIcon";
|
|
60
60
|
export * from "./ImageIcon";
|
|
61
|
+
export * from "./ImageSetIcon";
|
|
61
62
|
export * from "./IncreaseIcon";
|
|
62
63
|
export * from "./InfoCircleIcon";
|
|
63
64
|
export * from "./InstagramAppIcon";
|
package/dist/svgs/index.js
CHANGED
|
@@ -74,6 +74,7 @@ __exportStar(require("./HeartFillIcon"), exports);
|
|
|
74
74
|
__exportStar(require("./HeartIcon"), exports);
|
|
75
75
|
__exportStar(require("./HomeIcon"), exports);
|
|
76
76
|
__exportStar(require("./ImageIcon"), exports);
|
|
77
|
+
__exportStar(require("./ImageSetIcon"), exports);
|
|
77
78
|
__exportStar(require("./IncreaseIcon"), exports);
|
|
78
79
|
__exportStar(require("./InfoCircleIcon"), exports);
|
|
79
80
|
__exportStar(require("./InstagramAppIcon"), exports);
|