@fibery/ui-kit 1.26.7 → 1.27.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/package.json +10 -9
- package/src/icons/ast/MirrorOn.ts +8 -0
- package/src/icons/ast/Question.ts +1 -1
- package/src/icons/ast/Refresh.ts +8 -0
- package/src/icons/ast/index.tsx +2 -0
- package/src/icons/react/MirrorOn.tsx +12 -0
- package/src/icons/react/Refresh.tsx +12 -0
- package/src/icons/react/index.tsx +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fibery/ui-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"files": [
|
|
6
6
|
"src/antd/styles.ts",
|
|
@@ -31,13 +31,11 @@
|
|
|
31
31
|
"src/integration-compact-info-button.tsx",
|
|
32
32
|
"src/dropdown-menu",
|
|
33
33
|
"src/shortcut-badge",
|
|
34
|
-
"src/tsfixme"
|
|
34
|
+
"src/tsfixme",
|
|
35
|
+
"src/togle.tsx"
|
|
35
36
|
],
|
|
36
37
|
"license": "UNLICENSED",
|
|
37
38
|
"dependencies": {
|
|
38
|
-
"@fibery/emoji-data": "2.4.0",
|
|
39
|
-
"@fibery/helpers": "1.2.0",
|
|
40
|
-
"@fibery/react": "1.3.1",
|
|
41
39
|
"@linaria/core": "5.0.1",
|
|
42
40
|
"@linaria/react": "5.0.1",
|
|
43
41
|
"@popperjs/core": "2.11.6",
|
|
@@ -74,7 +72,10 @@
|
|
|
74
72
|
"react-select-country-list": "2.2.1",
|
|
75
73
|
"react-virtuoso": "4.6.0",
|
|
76
74
|
"screenfull": "6.0.1",
|
|
77
|
-
"ua-parser-js": "0.7.24"
|
|
75
|
+
"ua-parser-js": "0.7.24",
|
|
76
|
+
"@fibery/emoji-data": "2.4.0",
|
|
77
|
+
"@fibery/react": "1.3.1",
|
|
78
|
+
"@fibery/helpers": "1.2.0"
|
|
78
79
|
},
|
|
79
80
|
"peerDependencies": {
|
|
80
81
|
"react": "^18.2.0",
|
|
@@ -83,8 +84,6 @@
|
|
|
83
84
|
"devDependencies": {
|
|
84
85
|
"@babel/core": "7.23.9",
|
|
85
86
|
"@babel/runtime": "7.23.9",
|
|
86
|
-
"@fibery/babel-preset": "7.4.0",
|
|
87
|
-
"@fibery/eslint-config": "8.5.1",
|
|
88
87
|
"@linaria/babel-preset": "5.0.3",
|
|
89
88
|
"@testing-library/dom": "8.19.1",
|
|
90
89
|
"@testing-library/jest-dom": "5.16.5",
|
|
@@ -108,7 +107,9 @@
|
|
|
108
107
|
"svg-parser": "2.0.4",
|
|
109
108
|
"svgo": "2.8.0",
|
|
110
109
|
"typescript": "5.1.6",
|
|
111
|
-
"unist-util-reduce": "0.2.2"
|
|
110
|
+
"unist-util-reduce": "0.2.2",
|
|
111
|
+
"@fibery/babel-preset": "7.4.0",
|
|
112
|
+
"@fibery/eslint-config": "8.5.1"
|
|
112
113
|
},
|
|
113
114
|
"jest": {
|
|
114
115
|
"testEnvironment": "jsdom",
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const MirrorOn: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":14,"height":12,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M6.697.482a.6.6 0 0 1 .606 0l5.8 3.4a.6.6 0 0 1 0 1.036L11.257 6l1.846 1.082a.6.6 0 0 1 0 1.036l-5.8 3.4a.6.6 0 0 1-.606 0l-5.8-3.4a.6.6 0 0 1 0-1.036L2.743 6 .897 4.918a.6.6 0 0 1 0-1.036l5.8-3.4Zm0 7.836L3.929 6.696 2.386 7.6 7 10.305 11.614 7.6l-1.543-.904-2.768 1.622a.6.6 0 0 1-.606 0ZM11.614 4.4 7 7.105 2.386 4.4 7 1.696 11.614 4.4Z","fill":"#151719","fillOpacity":0.35},"children":[]}],"metadata":""}]},"name":"mirror-on"};
|
|
7
|
+
|
|
8
|
+
export default MirrorOn;
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import { IconDefinition } from '../types';
|
|
5
5
|
|
|
6
|
-
const Question: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.
|
|
6
|
+
const Question: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.3 12.256a.556.556 0 0 0 .561-.562v-.563c0-.153.27-.42.624-.77.663-.656 1.615-1.597 1.615-2.605 0-1.52-1.157-3.094-3.092-3.094-2.245 0-3.072 2.043-3.07 3.094-.002.025 1.67 0 1.67 0 .037-.299.252-1.406 1.4-1.406 1.152 0 1.405 1.015 1.405 1.406 0 .668-.795 1.418-1.493 2.076-.548.517-1.037.977-1.037 1.3v.562c0 .301.251.562.562.562h.854Zm-1.417 2.25a1.125 1.125 0 1 0 2.25 0 1.125 1.125 0 0 0-2.25 0Z"},"children":[]}],"metadata":""}]},"name":"question"};
|
|
7
7
|
|
|
8
8
|
export default Question;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const Refresh: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"d":"M10.94 2.657a7.5 7.5 0 0 0-6.857 2.805V4.167a.75.75 0 1 0-1.5 0V7.5c0 .414.336.75.75.75h3.334a.75.75 0 0 0 0-1.5H5a6 6 0 0 1 10.924 2.52.75.75 0 0 0 1.486-.207 7.5 7.5 0 0 0-6.47-6.406ZM4.076 10.73a.75.75 0 1 0-1.486.207 7.5 7.5 0 0 0 13.327 3.6v1.296a.75.75 0 1 0 1.5 0V12.5a.75.75 0 0 0-.75-.75h-.4a.78.78 0 0 0-.034 0h-2.9a.75.75 0 0 0 0 1.5H15a6 6 0 0 1-10.924-2.52Z"},"children":[]}],"metadata":""}]},"name":"refresh"};
|
|
7
|
+
|
|
8
|
+
export default Refresh;
|
package/src/icons/ast/index.tsx
CHANGED
|
@@ -124,6 +124,7 @@ export { default as MessagePlusSquare } from './MessagePlusSquare';
|
|
|
124
124
|
export { default as Milestones } from './Milestones';
|
|
125
125
|
export { default as Minus } from './Minus';
|
|
126
126
|
export { default as Miro } from './Miro';
|
|
127
|
+
export { default as MirrorOn } from './MirrorOn';
|
|
127
128
|
export { default as Mixpanel } from './Mixpanel';
|
|
128
129
|
export { default as Monitor } from './Monitor';
|
|
129
130
|
export { default as MoreCompact } from './MoreCompact';
|
|
@@ -147,6 +148,7 @@ export { default as Photo } from './Photo';
|
|
|
147
148
|
export { default as Popup } from './Popup';
|
|
148
149
|
export { default as Posts } from './Posts';
|
|
149
150
|
export { default as Question } from './Question';
|
|
151
|
+
export { default as Refresh } from './Refresh';
|
|
150
152
|
export { default as RemovePeople } from './RemovePeople';
|
|
151
153
|
export { default as Remove } from './Remove';
|
|
152
154
|
export { default as Reply } from './Reply';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import MirrorOnSvg from '../ast/MirrorOn';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const MirrorOn = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={MirrorOnSvg} />;
|
|
10
|
+
|
|
11
|
+
MirrorOn.displayName = 'MirrorOn';
|
|
12
|
+
export default MirrorOn;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import RefreshSvg from '../ast/Refresh';
|
|
4
|
+
import { Icon } from '../Icon';
|
|
5
|
+
import { IconBaseProps } from '../types';
|
|
6
|
+
|
|
7
|
+
const Refresh = (
|
|
8
|
+
props: IconBaseProps,
|
|
9
|
+
): JSX.Element => <Icon {...props} icon={RefreshSvg} />;
|
|
10
|
+
|
|
11
|
+
Refresh.displayName = 'Refresh';
|
|
12
|
+
export default Refresh;
|
|
@@ -124,6 +124,7 @@ export { default as MessagePlusSquare } from './MessagePlusSquare';
|
|
|
124
124
|
export { default as Milestones } from './Milestones';
|
|
125
125
|
export { default as Minus } from './Minus';
|
|
126
126
|
export { default as Miro } from './Miro';
|
|
127
|
+
export { default as MirrorOn } from './MirrorOn';
|
|
127
128
|
export { default as Mixpanel } from './Mixpanel';
|
|
128
129
|
export { default as Monitor } from './Monitor';
|
|
129
130
|
export { default as MoreCompact } from './MoreCompact';
|
|
@@ -147,6 +148,7 @@ export { default as Photo } from './Photo';
|
|
|
147
148
|
export { default as Popup } from './Popup';
|
|
148
149
|
export { default as Posts } from './Posts';
|
|
149
150
|
export { default as Question } from './Question';
|
|
151
|
+
export { default as Refresh } from './Refresh';
|
|
150
152
|
export { default as RemovePeople } from './RemovePeople';
|
|
151
153
|
export { default as Remove } from './Remove';
|
|
152
154
|
export { default as Reply } from './Reply';
|