@fibery/ui-kit 1.33.1 → 1.33.2
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fibery/ui-kit",
|
|
3
|
-
"version": "1.33.
|
|
3
|
+
"version": "1.33.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"files": [
|
|
6
6
|
"src/antd/styles.ts",
|
|
@@ -108,8 +108,8 @@
|
|
|
108
108
|
"svgo": "2.8.0",
|
|
109
109
|
"typescript": "5.4.3",
|
|
110
110
|
"unist-util-reduce": "0.2.2",
|
|
111
|
-
"@fibery/
|
|
112
|
-
"@fibery/
|
|
111
|
+
"@fibery/babel-preset": "7.4.0",
|
|
112
|
+
"@fibery/eslint-config": "8.6.0"
|
|
113
113
|
},
|
|
114
114
|
"jest": {
|
|
115
115
|
"testEnvironment": "jsdom",
|
package/src/design-system.ts
CHANGED
|
@@ -624,6 +624,11 @@ export const themeColors = {
|
|
|
624
624
|
// Chat
|
|
625
625
|
colorBgMessageContainer: [slate.slate3, slateDark.slate6],
|
|
626
626
|
colorBgMessageContainerHover: [slate.slate2, slateDark.slate3],
|
|
627
|
+
|
|
628
|
+
colorBgEntityAvatarDefault: [indigo.indigo1, indigoDark.indigo1],
|
|
629
|
+
colorBgEntityAvatarHover: [indigo.indigo3, indigoDark.indigo3],
|
|
630
|
+
colorTextEntityAvatarDefault: [indigo.indigo8, indigoDark.indigo8],
|
|
631
|
+
colorTextEntityAvatarHover: [indigo.indigo9, indigoDark.indigo9],
|
|
627
632
|
} as const;
|
|
628
633
|
|
|
629
634
|
type ThemeDefs = typeof themeColors;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
// This icon file is generated automatically.
|
|
3
|
+
|
|
4
|
+
import { IconDefinition } from '../types';
|
|
5
|
+
|
|
6
|
+
const PanelAdd: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M2 15.75A2.25 2.25 0 0 0 4.25 18h3a.75.75 0 0 0 0-1.5h-3a.75.75 0 0 1-.75-.75V4.25a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 .75.75v3a.75.75 0 0 0 1.5 0v-3A2.25 2.25 0 0 0 15.75 2H4.25A2.25 2.25 0 0 0 2 4.25v11.5Zm10.863-5.39a2.503 2.503 0 1 0 0 5.007 2.503 2.503 0 0 0 0-5.007Zm2.206 5.676a3.863 3.863 0 1 1 .963-.96l1.768 1.763a.68.68 0 1 1-.96.963l-1.771-1.766Z","fill":"#51616C"},"children":[]}],"metadata":""}]},"name":"panel-add"};
|
|
7
|
+
|
|
8
|
+
export default PanelAdd;
|
package/src/icons/ast/index.tsx
CHANGED
|
@@ -159,6 +159,7 @@ export { default as OnSchedule } from './OnSchedule';
|
|
|
159
159
|
export { default as OpenAsPage } from './OpenAsPage';
|
|
160
160
|
export { default as PageRegularMode } from './PageRegularMode';
|
|
161
161
|
export { default as PageWideMode } from './PageWideMode';
|
|
162
|
+
export { default as PanelAdd } from './PanelAdd';
|
|
162
163
|
export { default as Pencil } from './Pencil';
|
|
163
164
|
export { default as People } from './People';
|
|
164
165
|
export { default as Photo } from './Photo';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This icon file is generated automatically.
|
|
2
|
+
|
|
3
|
+
import {forwardRef} from 'react';
|
|
4
|
+
import PanelAddSvg from '../ast/PanelAdd';
|
|
5
|
+
import { Icon } from '../Icon';
|
|
6
|
+
import { IconBaseProps } from '../types';
|
|
7
|
+
|
|
8
|
+
const PanelAdd = forwardRef<SVGSVGElement, IconBaseProps>(function PanelAdd(
|
|
9
|
+
props: IconBaseProps,
|
|
10
|
+
ref: React.Ref<SVGSVGElement>
|
|
11
|
+
) {return <Icon {...props} className={props.className} ref={ref} icon={PanelAddSvg} />});
|
|
12
|
+
|
|
13
|
+
export default PanelAdd;
|
|
@@ -159,6 +159,7 @@ export { default as OnSchedule } from './OnSchedule';
|
|
|
159
159
|
export { default as OpenAsPage } from './OpenAsPage';
|
|
160
160
|
export { default as PageRegularMode } from './PageRegularMode';
|
|
161
161
|
export { default as PageWideMode } from './PageWideMode';
|
|
162
|
+
export { default as PanelAdd } from './PanelAdd';
|
|
162
163
|
export { default as Pencil } from './Pencil';
|
|
163
164
|
export { default as People } from './People';
|
|
164
165
|
export { default as Photo } from './Photo';
|