-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/firecrawl-fe' into deploy/dev
- Loading branch information
Showing
46 changed files
with
1,822 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
web/app/components/base/icons/assets/public/other/row-struct.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions
5
web/app/components/base/icons/assets/vender/line/others/icon-3-dots.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions
56
web/app/components/base/icons/src/public/other/RowStruct.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"icon": { | ||
"type": "element", | ||
"isRootNode": true, | ||
"name": "svg", | ||
"attributes": { | ||
"width": "624", | ||
"height": "48", | ||
"viewBox": "0 0 624 48", | ||
"fill": "none", | ||
"xmlns": "http://www.w3.org/2000/svg" | ||
}, | ||
"children": [ | ||
{ | ||
"type": "element", | ||
"name": "rect", | ||
"attributes": { | ||
"x": "8", | ||
"y": "7", | ||
"width": "16", | ||
"height": "16", | ||
"rx": "5", | ||
"fill": "#F2F4F7" | ||
}, | ||
"children": [] | ||
}, | ||
{ | ||
"type": "element", | ||
"name": "rect", | ||
"attributes": { | ||
"x": "32", | ||
"y": "10", | ||
"width": "233", | ||
"height": "10", | ||
"rx": "3", | ||
"fill": "#EAECF0" | ||
}, | ||
"children": [] | ||
}, | ||
{ | ||
"type": "element", | ||
"name": "rect", | ||
"attributes": { | ||
"x": "32", | ||
"y": "31", | ||
"width": "345", | ||
"height": "6", | ||
"rx": "3", | ||
"fill": "#F2F4F7" | ||
}, | ||
"children": [] | ||
} | ||
] | ||
}, | ||
"name": "RowStruct" | ||
} |
16 changes: 16 additions & 0 deletions
16
web/app/components/base/icons/src/public/other/RowStruct.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// GENERATE BY script | ||
// DON NOT EDIT IT MANUALLY | ||
|
||
import * as React from 'react' | ||
import data from './RowStruct.json' | ||
import IconBase from '@/app/components/base/icons/IconBase' | ||
import type { IconBaseProps, IconData } from '@/app/components/base/icons/IconBase' | ||
|
||
const Icon = React.forwardRef<React.MutableRefObject<SVGElement>, Omit<IconBaseProps, 'data'>>(( | ||
props, | ||
ref, | ||
) => <IconBase {...props} ref={ref} data={data as IconData} />) | ||
|
||
Icon.displayName = 'RowStruct' | ||
|
||
export default Icon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export { default as Icon3Dots } from './Icon3Dots' | ||
export { default as DefaultToolIcon } from './DefaultToolIcon' | ||
export { default as RowStruct } from './RowStruct' |
39 changes: 39 additions & 0 deletions
39
web/app/components/base/icons/src/vender/line/others/Icon3Dots.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"icon": { | ||
"type": "element", | ||
"isRootNode": true, | ||
"name": "svg", | ||
"attributes": { | ||
"width": "16", | ||
"height": "16", | ||
"viewBox": "0 0 16 16", | ||
"fill": "none", | ||
"xmlns": "http://www.w3.org/2000/svg" | ||
}, | ||
"children": [ | ||
{ | ||
"type": "element", | ||
"name": "g", | ||
"attributes": { | ||
"id": "Icon-3-dots" | ||
}, | ||
"children": [ | ||
{ | ||
"type": "element", | ||
"name": "path", | ||
"attributes": { | ||
"id": "Icon", | ||
"d": "M5 6.5V5M8.93934 7.56066L10 6.5M10.0103 11.5H11.5103", | ||
"stroke": "currentColor", | ||
"stroke-width": "2", | ||
"stroke-linecap": "round", | ||
"stroke-linejoin": "round" | ||
}, | ||
"children": [] | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"name": "Icon3Dots" | ||
} |
16 changes: 16 additions & 0 deletions
16
web/app/components/base/icons/src/vender/line/others/Icon3Dots.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// GENERATE BY script | ||
// DON NOT EDIT IT MANUALLY | ||
|
||
import * as React from 'react' | ||
import data from './Icon3Dots.json' | ||
import IconBase from '@/app/components/base/icons/IconBase' | ||
import type { IconBaseProps, IconData } from '@/app/components/base/icons/IconBase' | ||
|
||
const Icon = React.forwardRef<React.MutableRefObject<SVGElement>, Omit<IconBaseProps, 'data'>>(( | ||
props, | ||
ref, | ||
) => <IconBase {...props} ref={ref} data={data as IconData} />) | ||
|
||
Icon.displayName = 'Icon3Dots' | ||
|
||
export default Icon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -323,6 +323,7 @@ | |
} | ||
|
||
.sourceContent { | ||
width: 0; | ||
flex: 1 1 auto; | ||
} | ||
|
||
|
Oops, something went wrong.