@cypress-design/react-icon 0.34.0 → 0.35.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +11 -0
- package/animated/_IconGeneralChatBubble.tsx +11 -5
- package/animated/_IconObjectGear.tsx +9 -4
- package/animated/_IconTechnologyGitBranches.tsx +10 -5
- package/animated/_IconTechnologyServer.tsx +11 -6
- package/animated/_IconViewChart.tsx +13 -6
- package/animated/_testUtils.tsx +33 -3
- package/animated/compileAttributes.ts +42 -0
- package/dist/animated/_IconGeneralChatBubble.d.ts +2 -1
- package/dist/animated/_IconGeneralChatBubble.d.ts.map +1 -1
- package/dist/animated/_IconObjectGear.d.ts +2 -1
- package/dist/animated/_IconObjectGear.d.ts.map +1 -1
- package/dist/animated/_IconTechnologyGitBranches.d.ts +2 -1
- package/dist/animated/_IconTechnologyGitBranches.d.ts.map +1 -1
- package/dist/animated/_IconTechnologyServer.d.ts +2 -1
- package/dist/animated/_IconTechnologyServer.d.ts.map +1 -1
- package/dist/animated/_IconViewChart.d.ts +3 -1
- package/dist/animated/_IconViewChart.d.ts.map +1 -1
- package/dist/animated/compileAttributes.d.ts +10 -0
- package/dist/animated/compileAttributes.d.ts.map +1 -0
- package/dist/index.es.mjs +38 -71
- package/dist/index.es.mjs.map +1 -1
- package/dist/index.umd.js +37 -70
- package/dist/index.umd.js.map +1 -1
- package/package.json +3 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -9,5 +9,5 @@ $ rollup -c ./rollup.config.mjs
|
|
|
9
9
|
index.ts
|
|
10
10
|
|
|
11
11
|
Consumers of your bundle will have to use chunk.default to access their default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
|
|
12
|
-
[32mcreated [1m./dist/index.umd.js, ./dist/index.es.mjs[22m in [
|
|
12
|
+
[32mcreated [1m./dist/index.umd.js, ./dist/index.es.mjs[22m in [1m15.5s[22m[39m
|
|
13
13
|
$ tsc --project ./tsconfig.build.json
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @cypress-design/react-icon
|
|
2
2
|
|
|
3
|
+
## 0.35.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#402](https://github.com/cypress-io/cypress-design/pull/402) [`6f2ae04`](https://github.com/cypress-io/cypress-design/commit/6f2ae04a7202e13deabf0bf981f035ed03f3616e) Thanks [@elevatebart](https://github.com/elevatebart)! - refactor and add the logo component
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`6f2ae04`](https://github.com/cypress-io/cypress-design/commit/6f2ae04a7202e13deabf0bf981f035ed03f3616e)]:
|
|
12
|
+
- @cypress-design/icon-registry@0.38.0
|
|
13
|
+
|
|
3
14
|
## 0.34.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
import * as React from 'react'
|
|
2
|
-
import {
|
|
2
|
+
import { iconAnimatedGeneralChatBubble } from '@cypress-design/icon-registry'
|
|
3
3
|
import { PathMorpher } from './_Morphers'
|
|
4
|
+
import compileAttributes, { AnimatedProps } from './compileAttributes'
|
|
4
5
|
|
|
5
6
|
const IconGeneralChatBubble: React.FC<
|
|
6
|
-
|
|
7
|
-
>
|
|
7
|
+
AnimatedProps &
|
|
8
|
+
React.SVGProps<SVGSVGElement> & {
|
|
9
|
+
animated: boolean
|
|
10
|
+
}
|
|
11
|
+
> = ({ animated, ...fullRest }) => {
|
|
12
|
+
const rest = compileAttributes(fullRest)
|
|
13
|
+
|
|
8
14
|
return (
|
|
9
15
|
<svg
|
|
10
16
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -15,13 +21,13 @@ const IconGeneralChatBubble: React.FC<
|
|
|
15
21
|
<PathMorpher
|
|
16
22
|
className="icon-dark"
|
|
17
23
|
fill="#1B1E2E"
|
|
18
|
-
{...
|
|
24
|
+
{...iconAnimatedGeneralChatBubble.small}
|
|
19
25
|
animated={animated}
|
|
20
26
|
/>
|
|
21
27
|
<PathMorpher
|
|
22
28
|
className="icon-light"
|
|
23
29
|
fill="#1B1E2E"
|
|
24
|
-
{...
|
|
30
|
+
{...iconAnimatedGeneralChatBubble.big}
|
|
25
31
|
animated={animated}
|
|
26
32
|
/>
|
|
27
33
|
</svg>
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import * as React from 'react'
|
|
2
|
-
import {
|
|
2
|
+
import { iconAnimatedObjectGear } from '@cypress-design/icon-registry'
|
|
3
3
|
import { PathMorpher } from './_Morphers'
|
|
4
|
+
import compileAttributes, { AnimatedProps } from './compileAttributes'
|
|
4
5
|
|
|
5
6
|
const IconObjectGear: React.FC<
|
|
6
|
-
|
|
7
|
-
>
|
|
7
|
+
AnimatedProps &
|
|
8
|
+
React.SVGProps<SVGSVGElement> & {
|
|
9
|
+
animated: boolean
|
|
10
|
+
}
|
|
11
|
+
> = ({ animated, ...fullRest }) => {
|
|
12
|
+
const rest = compileAttributes(fullRest)
|
|
8
13
|
return (
|
|
9
14
|
<svg
|
|
10
15
|
viewBox="0 0 24 24"
|
|
@@ -15,7 +20,7 @@ const IconObjectGear: React.FC<
|
|
|
15
20
|
<PathMorpher
|
|
16
21
|
fillRule="evenodd"
|
|
17
22
|
clipRule="evenodd"
|
|
18
|
-
{...
|
|
23
|
+
{...iconAnimatedObjectGear}
|
|
19
24
|
fill="#1B1E2E"
|
|
20
25
|
animated={animated}
|
|
21
26
|
className="icon-light"
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import * as React from 'react'
|
|
2
|
-
import {
|
|
2
|
+
import { iconAnimatedTechnologyGitBranches } from '@cypress-design/icon-registry'
|
|
3
3
|
import { PathMorpher } from './_Morphers'
|
|
4
|
+
import compileAttributes, { AnimatedProps } from './compileAttributes'
|
|
4
5
|
|
|
5
6
|
const IconViewChart: React.FC<
|
|
6
|
-
|
|
7
|
-
>
|
|
7
|
+
AnimatedProps &
|
|
8
|
+
React.SVGProps<SVGSVGElement> & {
|
|
9
|
+
animated: boolean
|
|
10
|
+
}
|
|
11
|
+
> = ({ animated, ...fullRest }) => {
|
|
12
|
+
const rest = compileAttributes(fullRest)
|
|
8
13
|
return (
|
|
9
14
|
<svg
|
|
10
15
|
viewBox="0 0 24 24"
|
|
@@ -13,13 +18,13 @@ const IconViewChart: React.FC<
|
|
|
13
18
|
{...rest}
|
|
14
19
|
>
|
|
15
20
|
<PathMorpher
|
|
16
|
-
{...
|
|
21
|
+
{...iconAnimatedTechnologyGitBranches.left}
|
|
17
22
|
fill="#1B1E2E"
|
|
18
23
|
className="icon-light"
|
|
19
24
|
animated={animated}
|
|
20
25
|
/>
|
|
21
26
|
<PathMorpher
|
|
22
|
-
{...
|
|
27
|
+
{...iconAnimatedTechnologyGitBranches.right}
|
|
23
28
|
fill="#747994"
|
|
24
29
|
className="icon-dark"
|
|
25
30
|
animated={animated}
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import * as React from 'react'
|
|
2
|
-
import {
|
|
2
|
+
import { iconAnimatedTechnologyServer } from '@cypress-design/icon-registry'
|
|
3
3
|
import { PathMorpher } from './_Morphers'
|
|
4
|
+
import compileAttributes, { AnimatedProps } from './compileAttributes'
|
|
4
5
|
|
|
5
6
|
const IconTechServer: React.FC<
|
|
6
|
-
|
|
7
|
-
>
|
|
7
|
+
AnimatedProps &
|
|
8
|
+
React.SVGProps<SVGSVGElement> & {
|
|
9
|
+
animated: boolean
|
|
10
|
+
}
|
|
11
|
+
> = ({ animated, ...fullRest }) => {
|
|
12
|
+
const rest = compileAttributes(fullRest)
|
|
8
13
|
return (
|
|
9
14
|
<svg
|
|
10
15
|
width="24"
|
|
@@ -17,7 +22,7 @@ const IconTechServer: React.FC<
|
|
|
17
22
|
<PathMorpher
|
|
18
23
|
fillRule="evenodd"
|
|
19
24
|
clipRule="evenodd"
|
|
20
|
-
{...
|
|
25
|
+
{...iconAnimatedTechnologyServer.top}
|
|
21
26
|
animated={animated}
|
|
22
27
|
fill="#1B1E2E"
|
|
23
28
|
className="icon-light"
|
|
@@ -25,7 +30,7 @@ const IconTechServer: React.FC<
|
|
|
25
30
|
<PathMorpher
|
|
26
31
|
fillRule="evenodd"
|
|
27
32
|
clipRule="evenodd"
|
|
28
|
-
{...
|
|
33
|
+
{...iconAnimatedTechnologyServer.middle}
|
|
29
34
|
animated={animated}
|
|
30
35
|
fill="#9095AD"
|
|
31
36
|
className="icon-dark"
|
|
@@ -34,7 +39,7 @@ const IconTechServer: React.FC<
|
|
|
34
39
|
<PathMorpher
|
|
35
40
|
fillRule="evenodd"
|
|
36
41
|
clipRule="evenodd"
|
|
37
|
-
{...
|
|
42
|
+
{...iconAnimatedTechnologyServer.bottom}
|
|
38
43
|
animated={animated}
|
|
39
44
|
fill="#9095AD"
|
|
40
45
|
className="icon-dark"
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import * as React from 'react'
|
|
2
|
-
import {
|
|
2
|
+
import { iconAnimatedViewChart } from '@cypress-design/icon-registry'
|
|
3
3
|
import { PathMorpher } from './_Morphers'
|
|
4
|
+
import compileAttributes, { AnimatedProps } from './compileAttributes'
|
|
5
|
+
import { HasSecondaryStrokeColor } from '@cypress-design/icon-registry'
|
|
4
6
|
|
|
5
7
|
const IconViewChart: React.FC<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
+
AnimatedProps &
|
|
9
|
+
HasSecondaryStrokeColor &
|
|
10
|
+
React.SVGProps<SVGSVGElement> & {
|
|
11
|
+
animated: boolean
|
|
12
|
+
}
|
|
13
|
+
> = ({ animated, ...fullRest }) => {
|
|
14
|
+
const rest = compileAttributes(fullRest)
|
|
8
15
|
return (
|
|
9
16
|
<svg
|
|
10
17
|
viewBox="0 0 24 24"
|
|
@@ -13,19 +20,19 @@ const IconViewChart: React.FC<
|
|
|
13
20
|
{...rest}
|
|
14
21
|
>
|
|
15
22
|
<PathMorpher
|
|
16
|
-
{...
|
|
23
|
+
{...iconAnimatedViewChart.topRight}
|
|
17
24
|
fill="#AFB3C7"
|
|
18
25
|
className="icon-light"
|
|
19
26
|
animated={animated}
|
|
20
27
|
/>
|
|
21
28
|
<PathMorpher
|
|
22
|
-
{...
|
|
29
|
+
{...iconAnimatedViewChart.left}
|
|
23
30
|
fill="#1B1E2E"
|
|
24
31
|
className="icon-dark-secondary"
|
|
25
32
|
animated={animated}
|
|
26
33
|
/>
|
|
27
34
|
<PathMorpher
|
|
28
|
-
{...
|
|
35
|
+
{...iconAnimatedViewChart.bottom}
|
|
29
36
|
fill="#747994"
|
|
30
37
|
className="icon-dark"
|
|
31
38
|
animated={animated}
|
package/animated/_testUtils.tsx
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
import * as React from 'react'
|
|
2
2
|
import { mount } from 'cypress/react18'
|
|
3
|
+
import {
|
|
4
|
+
HasSecondaryFillColor,
|
|
5
|
+
HasSecondaryStrokeColor,
|
|
6
|
+
} from '@cypress-design/icon-registry'
|
|
7
|
+
import { AnimatedProps } from './compileAttributes'
|
|
3
8
|
|
|
4
9
|
export function iconTests(
|
|
5
10
|
Icon: React.FC<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
11
|
+
AnimatedProps &
|
|
12
|
+
HasSecondaryStrokeColor &
|
|
13
|
+
React.SVGProps<SVGSVGElement> & {
|
|
14
|
+
animated: boolean
|
|
15
|
+
}
|
|
9
16
|
>,
|
|
10
17
|
) {
|
|
11
18
|
it('renders', () => {
|
|
@@ -40,6 +47,29 @@ export function iconTests(
|
|
|
40
47
|
cy.get('svg').click()
|
|
41
48
|
})
|
|
42
49
|
|
|
50
|
+
it('renders with props', { viewportHeight: 550 }, () => {
|
|
51
|
+
const SUT = () => {
|
|
52
|
+
const [isActive, setIsActive] = React.useState(false)
|
|
53
|
+
return (
|
|
54
|
+
<>
|
|
55
|
+
<pre>{isActive ? 'active' : 'not active'}</pre>
|
|
56
|
+
<Icon
|
|
57
|
+
animated={isActive}
|
|
58
|
+
width={400}
|
|
59
|
+
height={400}
|
|
60
|
+
fillColor="indigo-500"
|
|
61
|
+
strokeColor="jade-300"
|
|
62
|
+
secondaryStrokeColor="purple-400"
|
|
63
|
+
onClick={() => setIsActive(!isActive)}
|
|
64
|
+
/>
|
|
65
|
+
</>
|
|
66
|
+
)
|
|
67
|
+
}
|
|
68
|
+
mount(<SUT />)
|
|
69
|
+
|
|
70
|
+
cy.get('svg').click()
|
|
71
|
+
})
|
|
72
|
+
|
|
43
73
|
it('renders both side by side', { viewportWidth: 900 }, () => {
|
|
44
74
|
mount(
|
|
45
75
|
<div className="bg-black flex gap-4 text-center text-2xl">
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HasFillColor,
|
|
3
|
+
HasStrokeColor,
|
|
4
|
+
ICON_COLOR_PROP_NAMES,
|
|
5
|
+
getComponentAttributes,
|
|
6
|
+
} from '@cypress-design/icon-registry'
|
|
7
|
+
import clsx from 'clsx'
|
|
8
|
+
|
|
9
|
+
export interface AnimatedProps
|
|
10
|
+
extends HasStrokeColor,
|
|
11
|
+
HasFillColor,
|
|
12
|
+
React.SVGProps<SVGSVGElement> {
|
|
13
|
+
interactiveColorsOnGroup?: boolean
|
|
14
|
+
className?: string
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export default function compileAttributes(fullRest: AnimatedProps) {
|
|
18
|
+
const { compiledClasses } = getComponentAttributes({
|
|
19
|
+
...fullRest,
|
|
20
|
+
availableSizes: ['24'],
|
|
21
|
+
})
|
|
22
|
+
|
|
23
|
+
const rest = Object.entries(fullRest).reduce(
|
|
24
|
+
(acc: Record<string, any>, [key, value]) => {
|
|
25
|
+
if (
|
|
26
|
+
ICON_COLOR_PROP_NAMES.includes(
|
|
27
|
+
key as (typeof ICON_COLOR_PROP_NAMES)[number],
|
|
28
|
+
)
|
|
29
|
+
) {
|
|
30
|
+
return acc
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
if (value) {
|
|
34
|
+
acc[key] = value
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
return acc
|
|
38
|
+
},
|
|
39
|
+
{},
|
|
40
|
+
)
|
|
41
|
+
return { ...rest, className: clsx(compiledClasses, fullRest.className) }
|
|
42
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
2
|
+
import { AnimatedProps } from './compileAttributes';
|
|
3
|
+
declare const IconGeneralChatBubble: React.FC<AnimatedProps & React.SVGProps<SVGSVGElement> & {
|
|
3
4
|
animated: boolean;
|
|
4
5
|
}>;
|
|
5
6
|
export default IconGeneralChatBubble;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_IconGeneralChatBubble.d.ts","sourceRoot":"./","sources":["animated/_IconGeneralChatBubble.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"_IconGeneralChatBubble.d.ts","sourceRoot":"./","sources":["animated/_IconGeneralChatBubble.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,OAA0B,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAEtE,QAAA,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CACnC,aAAa,GACX,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,GAAG;IAC9B,QAAQ,EAAE,OAAO,CAAA;CAClB,CAyBJ,CAAA;AAED,eAAe,qBAAqB,CAAA"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
2
|
+
import { AnimatedProps } from './compileAttributes';
|
|
3
|
+
declare const IconObjectGear: React.FC<AnimatedProps & React.SVGProps<SVGSVGElement> & {
|
|
3
4
|
animated: boolean;
|
|
4
5
|
}>;
|
|
5
6
|
export default IconObjectGear;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_IconObjectGear.d.ts","sourceRoot":"./","sources":["animated/_IconObjectGear.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"_IconObjectGear.d.ts","sourceRoot":"./","sources":["animated/_IconObjectGear.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,OAA0B,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAEtE,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAC5B,aAAa,GACX,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,GAAG;IAC9B,QAAQ,EAAE,OAAO,CAAA;CAClB,CAqBJ,CAAA;AAED,eAAe,cAAc,CAAA"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
2
|
+
import { AnimatedProps } from './compileAttributes';
|
|
3
|
+
declare const IconViewChart: React.FC<AnimatedProps & React.SVGProps<SVGSVGElement> & {
|
|
3
4
|
animated: boolean;
|
|
4
5
|
}>;
|
|
5
6
|
export default IconViewChart;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_IconTechnologyGitBranches.d.ts","sourceRoot":"./","sources":["animated/_IconTechnologyGitBranches.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"_IconTechnologyGitBranches.d.ts","sourceRoot":"./","sources":["animated/_IconTechnologyGitBranches.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,OAA0B,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAEtE,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAC3B,aAAa,GACX,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,GAAG;IAC9B,QAAQ,EAAE,OAAO,CAAA;CAClB,CAwBJ,CAAA;AAED,eAAe,aAAa,CAAA"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
2
|
+
import { AnimatedProps } from './compileAttributes';
|
|
3
|
+
declare const IconTechServer: React.FC<AnimatedProps & React.SVGProps<SVGSVGElement> & {
|
|
3
4
|
animated: boolean;
|
|
4
5
|
}>;
|
|
5
6
|
export default IconTechServer;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_IconTechnologyServer.d.ts","sourceRoot":"./","sources":["animated/_IconTechnologyServer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"_IconTechnologyServer.d.ts","sourceRoot":"./","sources":["animated/_IconTechnologyServer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,OAA0B,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAEtE,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAC5B,aAAa,GACX,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,GAAG;IAC9B,QAAQ,EAAE,OAAO,CAAA;CAClB,CAuCJ,CAAA;AAED,eAAe,cAAc,CAAA"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
|
|
2
|
+
import { AnimatedProps } from './compileAttributes';
|
|
3
|
+
import { HasSecondaryStrokeColor } from '@cypress-design/icon-registry';
|
|
4
|
+
declare const IconViewChart: React.FC<AnimatedProps & HasSecondaryStrokeColor & React.SVGProps<SVGSVGElement> & {
|
|
3
5
|
animated: boolean;
|
|
4
6
|
}>;
|
|
5
7
|
export default IconViewChart;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_IconViewChart.d.ts","sourceRoot":"./","sources":["animated/_IconViewChart.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"_IconViewChart.d.ts","sourceRoot":"./","sources":["animated/_IconViewChart.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,OAA0B,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAA;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,+BAA+B,CAAA;AAEvE,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAC3B,aAAa,GACX,uBAAuB,GACvB,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,GAAG;IAC9B,QAAQ,EAAE,OAAO,CAAA;CAClB,CA+BJ,CAAA;AAED,eAAe,aAAa,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { HasFillColor, HasStrokeColor } from '@cypress-design/icon-registry';
|
|
3
|
+
export interface AnimatedProps extends HasStrokeColor, HasFillColor, React.SVGProps<SVGSVGElement> {
|
|
4
|
+
interactiveColorsOnGroup?: boolean;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export default function compileAttributes(fullRest: AnimatedProps): {
|
|
8
|
+
className: string;
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=compileAttributes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"compileAttributes.d.ts","sourceRoot":"./","sources":["animated/compileAttributes.ts"],"names":[],"mappings":";AAAA,OAAO,EACL,YAAY,EACZ,cAAc,EAGf,MAAM,+BAA+B,CAAA;AAGtC,MAAM,WAAW,aACf,SAAQ,cAAc,EACpB,YAAY,EACZ,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC;IAC/B,wBAAwB,CAAC,EAAE,OAAO,CAAA;IAClC,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,QAAQ,EAAE,aAAa;;EAyBhE"}
|
package/dist/index.es.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
import clsx from 'clsx';
|
|
4
4
|
import * as iconsRegistry from '@cypress-design/icon-registry';
|
|
5
|
-
import { ICON_COLOR_PROP_NAMES, compileIcon } from '@cypress-design/icon-registry';
|
|
5
|
+
import { ICON_COLOR_PROP_NAMES, compileIcon, getComponentAttributes, iconAnimatedGeneralChatBubble, iconAnimatedTechnologyGitBranches, iconAnimatedTechnologyServer, iconAnimatedViewChart, iconAnimatedObjectGear } from '@cypress-design/icon-registry';
|
|
6
6
|
|
|
7
7
|
/******************************************************************************
|
|
8
8
|
Copyright (c) Microsoft Corporation.
|
|
@@ -1572,59 +1572,6 @@ var IconWindowCodeEditor = function (props) { return React.createElement('svg',
|
|
|
1572
1572
|
}
|
|
1573
1573
|
}, ["16", "24"], "window-code-editor")); };
|
|
1574
1574
|
|
|
1575
|
-
const iconGeneralChatBubble = {
|
|
1576
|
-
small: {
|
|
1577
|
-
d: 'M14 18 h-1 a3 3 0 0 1-3-3 v-1 h4 a3 3 0 0 0 3-3 V8 h2 a3 3 0 0 1 3 3 v4 a3 3 0 0 1-3 3 h0 v1.3 c0 .5-.6 1-1 .7Z',
|
|
1578
|
-
dAnimated: 'M15 19 h-2 a3 3 0 0 1-3-3 v-1 h3 a5 5 0 0 0 5-5 V6 h3 a3 3 0 0 1 3 3 v7 a3 3 0 0 1-3 3 h-1 v1.7 c0 .6-.6 1-1.1.6Z',
|
|
1579
|
-
},
|
|
1580
|
-
big: {
|
|
1581
|
-
d: 'M17 7a3 3 0 0 0-3-3H5a3 3 0 0 0-3 3v4a3 3 0 0 0 3 3v1.3c0 .5.6 1 1 .7l4-2h4a3 3 0 0 0 3-3V7ZM7 9c0 .5523-.4477 1-1 1-.5523 0-1-.4477-1-1 0-.5523.4477-1 1-1 .5523 0 1 .4477 1 1zM10.5 9c0 .5523-.4477 1-1 1-.5523 0-1-.4477-1-1 0-.5523.4477-1 1-1 .5523 0 1 .4477 1 1zm3.5 0c0 .5523-.4477 1-1 1-.5523 0-1-.4477-1-1 0-.5523.4477-1 1-1 .5523 0 1 .4477 1 1z',
|
|
1582
|
-
dAnimated: 'M16 4a3 3 0 00-3-3h-10a3 3 0 00-3 3v6a3 3 0 003 3v1.8c0 .5.6 1 1 .7l5-2.5h4a3 3 0 003-3v-6zM5 7c0 .5523-.4477 1-1 1-.5523 0-1-.4477-1-1 0-.5523.4477-1 1-1 .5523 0 1 .4477 1 1zM9 7c0 .5523-.4477 1-1 1-.5523 0-1-.4477-1-1 0-.5523.4477-1 1-1 .5523 0 1 .4477 1 1zM13 7c0 .5523-.4477 1-1 1-.5523 0-1-.4477-1-1 0-.5523.4477-1 1-1 .5523 0 1 .4477 1 1z',
|
|
1583
|
-
},
|
|
1584
|
-
};
|
|
1585
|
-
const iconObjectGear = {
|
|
1586
|
-
d: 'M10 3.7507c0-.4142.3358-.75.75-.75l2.5 0c.4142 0 .75.3358.75.75l0 .9806c0 .3318.2197.6203.5291.7403.6771.2625 1.3032.6272 1.8594 1.0753.2583.2081.6179.254.9052.0881l.851-.4913c.3587-.2071.8174-.0842 1.0245.2745l1.25 2.1651c.2072.3587.0842.8174-.2745 1.0245l-.85.4908c-.2871.1657-.4272.4997-.3767.8273.054.3504.082.7093.082 1.0748 0 .3655-.028.7245-.082 1.0749-.0505.3276.0896.6616.3767.8273l.85.4908c.3587.2071.4816.6658.2745 1.0245l-1.25 2.1651c-.2071.3587-.6658.4816-1.0245.2745l-.851-.4913c-.2873-.1659-.6469-.12-.9052.0881-.5562.4481-1.1823.8128-1.8594 1.0753-.3094.1199-.5291.4084-.5291.7403l0 .9805c0 .4142-.3358.75-.75.75l-2.5 0c-.4142 0-.75-.3358-.75-.75l0-.9805c0-.3319-.2197-.6204-.5291-.7403-.6771-.2625-1.3032-.6272-1.8594-1.0753-.2583-.2081-.6179-.254-.9052-.0881l-.851.4913c-.3587.2071-.8174.0842-1.0245-.2745l-1.25-2.1651c-.2071-.3587-.0842-.8174.2745-1.0245l.8501-.4908c.2871-.1657.4271-.4997.3766-.8273-.054-.3504-.082-.7094-.082-1.0749 0-.3655.028-.7244.082-1.0748.0505-.3276-.0896-.6616-.3766-.8273l-.8501-.4908c-.3587-.2071-.4816-.6658-.2745-1.0245l1.25-2.1651c.2071-.3587.6658-.4816 1.0245-.2745l.851.4913c.2873.1659.6469.12.9052-.0881.5562-.4481 1.1823-.8129 1.8594-1.0753.3094-.1199.5291-.4084.5291-.7403l0-.9806zM14 12c0 1.1046-.8954 2-2 2-1.1046 0-2-.8954-2-2 0-1.1046.8954-2 2-2 1.1046 0 2 .8954 2 2z',
|
|
1587
|
-
dAnimated: 'M3.288 10.4342c-.866-.5-1.1118-1.4174-.6977-2.1348l1.5-2.5981c.4142-.7174 1.3316-.9632 2.049-.5491l.9369.5409c.5913-.4615 1.2402-.833 1.9244-1.1093 0 0 0 0 0 0 0 0 0 0 0 0l-0-1.0834c-.0001-.8284.6716-1.5 1.4999-1.5l3-0c.8284-.0001 1.5.6716 1.5 1.4999l-.0001 1.0829c.34.138.6741.3008 1 .4889.326.1882.6339.3962.9234.6216 0 0 0 0 0 0 0 0 0 0 0 0l.9379-.5414c.7174-.4142 1.6348-.1685 2.049.5491l1.5 2.5981c.4142.7174.1684 1.6348-.5491 2.049l-.9383.5417c.1028.7307.1054 1.4783.0014 2.2212 0 0 0 0 0 0 0 0 0 0 0 0l.9369.5409c.7175.4142.9632 1.3316.5491 2.049l-1.5 2.5981c-.4142.7174-1.3315.9633-2.049.5491l-.9369-.5409c-.5913.4615-1.2401.8332-1.9243 1.1094 0 0 0 0 0 0 0 0 0 0 0 0l0 1.0834c-0 .8285-.6716 1.5001-1.5 1.5001l-3 0c-.8284-0-1.5-.6716-1.4999-1.5l-.0001-1.0829c-.34-.1379-.674-.3007-1-.4889-.3259-.1881-.634-.3961-.9234-.6216 0 0 0 0 0 0 0 0 0 0 0 0l-.9378.5414c-.7175.4142-1.6348.1685-2.049-.549l-1.5-2.5981c-.4142-.7174-.1685-1.6348.5491-2.0491l.9383-.5417c-.1029-.7306-.1054-1.4784-.0015-2.2212 0 0 0 0 0 0 0 0 0 0 0 0l-.9369-.5409zm5.2492-.4335c1.1045-1.9132 3.5509-2.5687 5.4641-1.4641 1.9132 1.1045 2.5686 3.551 1.4641 5.4641-1.1046 1.9132-3.551 2.5686-5.4641 1.4641-1.9132-1.1046-2.5687-3.5509-1.4641-5.4641z',
|
|
1588
|
-
};
|
|
1589
|
-
const iconTechnologyGitBranches = {
|
|
1590
|
-
left: {
|
|
1591
|
-
d: 'M11,4c0,-0.6,-0.4,-1,-1,-1h-4a3,3,0,0,0,-3,3v12a3,3,0,0,0,3,3h4c0.6,0,1,-0.4,1,-1v0a2,2,0,0,0,-0.8,-1.6l-3,-2.2a4,4,0,0,1,-1.8,-3.2v-0.5a1,1,0,1,1,2,0v0.5c0,0.6,0.3,1.2,0.8,1.6l2.7,2v-3.6a2,2,0,0,0,-0.8,-1.6l-1.6,-1.2a4,4,0,0,1,-1.5,-3.2v-0.5a1,1,0,0,1,2,0v0.5c0,0.6,0.3,1.2,0.8,1.6l1.2,0.9v-5.5z',
|
|
1592
|
-
dAnimated: 'M11,3c0,-0.6,-0.4,-1,-1,-1h-5a3,3,0,0,0,-3,3v14a3,3,0,0,0,3,3h5c0.6,0,1,-0.4,1,-1v-0.5a2,2,0,0,0,-0.8,-1.6l-3,-2.2a4,4,0,0,1,-1.7,-3.3v-0.4a1,1,0,1,1,2,0v0.4c0,0.7,0.3,1.3,0.8,1.7l2.7,1.9v-4.5a2,2,0,0,0,-0.8,-1.6l-1.6,-1.2a4,4,0,0,1,-1.6,-3.2v-0.5a1,1,0,0,1,2,0v0.5c0,0.6,0.3,1.2,0.8,1.6l1.2,0.9v-6z',
|
|
1593
|
-
},
|
|
1594
|
-
right: {
|
|
1595
|
-
d: 'M13 20C13 20.5523 13.4477 21 14 21H18C19.6569 21 21 19.6569 21 18V6C21 4.34315 19.6569 3 18 3H14C13.4477 3 13 3.44772 13 4V12.9554L14.7279 11.6115C15.2151 11.2325 15.5 10.6499 15.5 10.0328V9.5C15.5 8.94772 15.9477 8.5 16.5 8.5C17.0523 8.5 17.5 8.94772 17.5 9.5V10.0328C17.5 11.2671 16.9301 12.4323 15.9558 13.1902L13.7721 14.8885C13.2853 15.2672 13.0004 15.8493 13 16.4661V20Z',
|
|
1596
|
-
dAnimated: 'M13 21C13 21.5523 13.4477 22 14 22H19C20.6569 22 22 20.6569 22 19V5C22 3.34315 20.6569 2 19 2H14C13.4477 2 13 2.44772 13 3V12.9554L14.7279 11.6115C15.2151 11.2325 15.5 10.6499 15.5 10.0328V9.5C15.5 8.94772 15.9477 8.5 16.5 8.5C17.0523 8.5 17.5 8.94772 17.5 9.5V10.0328C17.5 11.2671 16.9301 12.4323 15.9558 13.1902L13.7721 14.8885C13.2853 15.2672 13.0004 15.8493 13 16.4661V21Z',
|
|
1597
|
-
},
|
|
1598
|
-
};
|
|
1599
|
-
const iconTechnologyServer = {
|
|
1600
|
-
top: {
|
|
1601
|
-
d: 'M 2 11 c 0 -1.1046 0.8954 -2 2 -2 h 16 c 1.1046 0 2 0.8954 2 2 v 2 c 0 1.1046 -0.8954 2 -2 2 h -16 c -1.1046 0 -2 -0.8954 -2 -2 v -2 z M 7 12 c 0 -0.5523 0.4477 -1 1 -1 h 11 c 0.5523 0 1 0.4477 1 1 c 0 0.5523 -0.4477 1 -1 1 h -11 c -0.5523 0 -1 -0.4477 -1 -1 z M 5 13 c 0.5523 0 1 -0.4477 1 -1 c 0 -0.5523 -0.4477 -1 -1 -1 c -0.5523 0 -1 0.4477 -1 1 c 0 0.5523 0.4477 1 1 1 z M 6.7011 9.7929 c -0.0156 -0.0156 -0.0409 -0.0156 -0.0566 0 c -0.0156 0.0156 -0.0156 0.0409 0 0.0566 l 0.0317 0.0317 l -0.0317 0.0317 c -0.0156 0.0156 -0.0156 0.0409 0 0.0566 c 0.0156 0.0156 0.0409 0.0156 0.0566 0 l 0.0317 -0.0317 l 0.0317 0.0317 c 0.0156 0.0156 0.0409 0.0156 0.0566 0 c 0.0156 -0.0156 0.0156 -0.0409 0 -0.0566 l -0.0317 -0.0317 l 0.0317 -0.0317 c 0.0156 -0.0156 0.0156 -0.0409 0 -0.0566 c -0.0156 -0.0156 -0.0409 -0.0156 -0.0566 0 l -0.0317 0.0317 l -0.0317 -0.0317 Z',
|
|
1602
|
-
dAnimated: 'M 0 10 c 0 -1.1046 0.8954 -2 2 -2 h 20 c 1.1046 0 2 0.8954 2 2 v 4 c 0 1.1046 -0.8954 2 -2 2 h -20 c -1.1046 0 -2 -0.8954 -2 -2 v -4 z M 9 12 c 0 -0.5523 0.4477 -1 1 -1 h 11 c 0.5523 0 1 0.4477 1 1 c 0 0.5523 -0.4477 1 -1 1 h -11 c -0.5523 0 -1 -0.4477 -1 -1 z M 2 13 c 0.0221 0 0.04 -0.0179 0.04 -0.04 c 0 -0.0221 -0.0179 -0.04 -0.04 -0.04 c -0.0221 0 -0.04 0.0179 -0.04 0.04 c 0 0.0221 0.0179 0.04 0.04 0.04 z M 3.7071 9.7929 c -0.3905 -0.3905 -1.0237 -0.3905 -1.4142 0 c -0.3905 0.3905 -0.3905 1.0237 0 1.4142 l 0.7929 0.7929 l -0.7929 0.7929 c -0.3905 0.3905 -0.3905 1.0237 0 1.4142 c 0.3905 0.3905 1.0237 0.3905 1.4142 0 l 0.7929 -0.7929 l 0.7929 0.7929 c 0.3905 0.3905 1.0237 0.3905 1.4142 0 c 0.3905 -0.3905 0.3905 -1.0237 0 -1.4142 l -0.7929 -0.7929 l 0.7929 -0.7929 c 0.3905 -0.3905 0.3905 -1.0237 0 -1.4142 c -0.3905 -0.3905 -1.0237 -0.3905 -1.4142 0 l -0.7929 0.7929 l -0.7929 -0.7929 Z',
|
|
1603
|
-
},
|
|
1604
|
-
middle: {
|
|
1605
|
-
d: 'M2 17C2 15.8954 2.89543 15 4 15H20C21.1046 15 22 15.8954 22 17V19C22 20.1046 21.1046 21 20 21H4C2.89543 21 2 20.1046 2 19V17ZM7 18C7 17.4477 7.44772 17 8 17H12C12.5523 17 13 17.4477 13 18C13 18.5523 12.5523 19 12 19H8C7.44772 19 7 18.5523 7 18ZM5 19C5.55228 19 6 18.5523 6 18C6 17.4477 5.55228 17 5 17C4.44772 17 4 17.4477 4 18C4 18.5523 4.44772 19 5 19Z',
|
|
1606
|
-
dAnimated: 'M2 20C2 18.8954 2.89543 18 4 18H20C21.1046 18 22 18.8954 22 20V22C22 23.1046 21.1046 24 20 24H4C2.89543 24 2 23.1046 2 22V20ZM7 21C7 20.4477 7.44772 20 8 20H12C12.5523 20 13 20.4477 13 21C13 21.5523 12.5523 22 12 22H8C7.44772 22 7 21.5523 7 21ZM5 22C5.55228 22 6 21.5523 6 21C6 20.4477 5.55228 20 5 20C4.44772 20 4 20.4477 4 21C4 21.5523 4.44772 22 5 22Z',
|
|
1607
|
-
},
|
|
1608
|
-
bottom: {
|
|
1609
|
-
d: 'M2 5C2 3.89543 2.89543 3 4 3H20C21.1046 3 22 3.89543 22 5V7C22 8.10457 21.1046 9 20 9H4C2.89543 9 2 8.10457 2 7V5ZM7 6C7 5.44772 7.44772 5 8 5H15C15.5523 5 16 5.44772 16 6C16 6.55228 15.5523 7 15 7H8C7.44772 7 7 6.55228 7 6ZM5 7C5.55228 7 6 6.55228 6 6C6 5.44772 5.55228 5 5 5C4.44772 5 4 5.44772 4 6C4 6.55228 4.44772 7 5 7Z',
|
|
1610
|
-
dAnimated: 'M2 2C2 0.89543 2.89543 0 4 0H20C21.1046 0 22 0.895431 22 2V4C22 5.10457 21.1046 6 20 6H4C2.89543 6 2 5.10457 2 4V2ZM7 3C7 2.44772 7.44772 2 8 2H15C15.5523 2 16 2.44772 16 3C16 3.55228 15.5523 4 15 4H8C7.44772 4 7 3.55228 7 3ZM5 4C5.55228 4 6 3.55228 6 3C6 2.44772 5.55228 2 5 2C4.44772 2 4 2.44772 4 3C4 3.55228 4.44772 4 5 4Z',
|
|
1611
|
-
},
|
|
1612
|
-
};
|
|
1613
|
-
const iconViewChart = {
|
|
1614
|
-
bottom: {
|
|
1615
|
-
d: 'M12,21a9,9,0,0,0,9,-8.3c0,-0.4,-0.3,-0.7,-0.8,-0.7h-7.8a1,1,0,0,0,-0.7,0.3l-5.5,5.5c-0.3,0.3,-0.3,0.8,0,1a9,9,0,0,0,5.8,2.2z',
|
|
1616
|
-
dAnimated: 'M12.4,21.6a9,9,0,0,0,9,-8.3c0,-0.4,-0.3,-0.7,-0.8,-0.7h-7.8a1,1,0,0,0,-0.7,0.3l-5.5,5.5c-0.3,0.3,-0.3,0.8,0,1a9,9,0,0,0,5.8,2.2z',
|
|
1617
|
-
},
|
|
1618
|
-
left: {
|
|
1619
|
-
d: 'M11.4,3a9,9,0,0,0,-6.3,14.8c0.3,0.3,0.8,0.3,1,0l5.6,-5.5c0.2,-0.2,0.3,-0.4,0.3,-0.7v-7.8c0,-0.5,-0.3,-0.8,-0.7,-0.8z',
|
|
1620
|
-
dAnimated: 'M10.9,2.6a9,9,0,0,0,-6.3,14.8c0.3,0.3,0.8,0.3,1,0l5.6,-5.5c0.2,-0.2,0.3,-0.4,0.3,-0.7v-7.8c0,-0.5,-0.3,-0.8,-0.7,-0.8z',
|
|
1621
|
-
},
|
|
1622
|
-
topRight: {
|
|
1623
|
-
d: 'M 21 11.3 C 20.67 6.86 17.14 3.33 12.7 3 C 12.3 3 12 3.3 12 3.8 L 12 11.3 C 12 11.7 12.3 12 12.8 12 L 20.2 12 C 20.7 12 21 11.7 21 11.3 Z',
|
|
1624
|
-
dAnimated: 'M 23 10.55 c -0.37 -4.93 -4.29 -8.85 -9.22 -9.22 c -0.45 0 -0.78 0.33 -0.78 0.89 l 0 8.33 c 0 0.45 0.33 0.78 0.89 0.78 l 8.22 0 c 0.56 0 0.89 -0.33 0.89 -0.78 z',
|
|
1625
|
-
},
|
|
1626
|
-
};
|
|
1627
|
-
|
|
1628
1575
|
function useAnimatedEffect(animated, dur) {
|
|
1629
1576
|
var _a = React__default.useState(animated), prevAnimated = _a[0], setPrevAnimated = _a[1];
|
|
1630
1577
|
var animateRef = React__default.useRef(null);
|
|
@@ -1653,44 +1600,64 @@ var PathMorpher = function (_a) {
|
|
|
1653
1600
|
: [d, dAnimated].join(';'), restart: "always" })));
|
|
1654
1601
|
};
|
|
1655
1602
|
|
|
1603
|
+
function compileAttributes(fullRest) {
|
|
1604
|
+
var compiledClasses = getComponentAttributes(__assign(__assign({}, fullRest), { availableSizes: ['24'] })).compiledClasses;
|
|
1605
|
+
var rest = Object.entries(fullRest).reduce(function (acc, _a) {
|
|
1606
|
+
var key = _a[0], value = _a[1];
|
|
1607
|
+
if (ICON_COLOR_PROP_NAMES.includes(key)) {
|
|
1608
|
+
return acc;
|
|
1609
|
+
}
|
|
1610
|
+
if (value) {
|
|
1611
|
+
acc[key] = value;
|
|
1612
|
+
}
|
|
1613
|
+
return acc;
|
|
1614
|
+
}, {});
|
|
1615
|
+
return __assign(__assign({}, rest), { className: clsx(compiledClasses, fullRest.className) });
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1656
1618
|
var IconGeneralChatBubble = function (_a) {
|
|
1657
|
-
var animated = _a.animated,
|
|
1619
|
+
var animated = _a.animated, fullRest = __rest(_a, ["animated"]);
|
|
1620
|
+
var rest = compileAttributes(fullRest);
|
|
1658
1621
|
return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24" }, rest),
|
|
1659
|
-
React.createElement(PathMorpher, __assign({ className: "icon-dark", fill: "#1B1E2E" },
|
|
1660
|
-
React.createElement(PathMorpher, __assign({ className: "icon-light", fill: "#1B1E2E" },
|
|
1622
|
+
React.createElement(PathMorpher, __assign({ className: "icon-dark", fill: "#1B1E2E" }, iconAnimatedGeneralChatBubble.small, { animated: animated })),
|
|
1623
|
+
React.createElement(PathMorpher, __assign({ className: "icon-light", fill: "#1B1E2E" }, iconAnimatedGeneralChatBubble.big, { animated: animated }))));
|
|
1661
1624
|
};
|
|
1662
1625
|
|
|
1663
1626
|
var IconViewChart$1 = function (_a) {
|
|
1664
|
-
var animated = _a.animated,
|
|
1627
|
+
var animated = _a.animated, fullRest = __rest(_a, ["animated"]);
|
|
1628
|
+
var rest = compileAttributes(fullRest);
|
|
1665
1629
|
return (React.createElement("svg", __assign({ viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, rest),
|
|
1666
|
-
React.createElement(PathMorpher, __assign({},
|
|
1667
|
-
React.createElement(PathMorpher, __assign({},
|
|
1630
|
+
React.createElement(PathMorpher, __assign({}, iconAnimatedTechnologyGitBranches.left, { fill: "#1B1E2E", className: "icon-light", animated: animated })),
|
|
1631
|
+
React.createElement(PathMorpher, __assign({}, iconAnimatedTechnologyGitBranches.right, { fill: "#747994", className: "icon-dark", animated: animated }))));
|
|
1668
1632
|
};
|
|
1669
1633
|
|
|
1670
1634
|
var IconTechServer = function (_a) {
|
|
1671
|
-
var animated = _a.animated,
|
|
1635
|
+
var animated = _a.animated, fullRest = __rest(_a, ["animated"]);
|
|
1636
|
+
var rest = compileAttributes(fullRest);
|
|
1672
1637
|
return (React.createElement("svg", __assign({ width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg" }, rest),
|
|
1673
|
-
React.createElement(PathMorpher, __assign({ fillRule: "evenodd", clipRule: "evenodd" },
|
|
1674
|
-
React.createElement(PathMorpher, __assign({ fillRule: "evenodd", clipRule: "evenodd" },
|
|
1675
|
-
React.createElement(PathMorpher, __assign({ fillRule: "evenodd", clipRule: "evenodd" },
|
|
1638
|
+
React.createElement(PathMorpher, __assign({ fillRule: "evenodd", clipRule: "evenodd" }, iconAnimatedTechnologyServer.top, { animated: animated, fill: "#1B1E2E", className: "icon-light" })),
|
|
1639
|
+
React.createElement(PathMorpher, __assign({ fillRule: "evenodd", clipRule: "evenodd" }, iconAnimatedTechnologyServer.middle, { animated: animated, fill: "#9095AD", className: "icon-dark" })),
|
|
1640
|
+
React.createElement(PathMorpher, __assign({ fillRule: "evenodd", clipRule: "evenodd" }, iconAnimatedTechnologyServer.bottom, { animated: animated, fill: "#9095AD", className: "icon-dark" }))));
|
|
1676
1641
|
};
|
|
1677
1642
|
|
|
1678
1643
|
var IconViewChart = function (_a) {
|
|
1679
|
-
var animated = _a.animated,
|
|
1644
|
+
var animated = _a.animated, fullRest = __rest(_a, ["animated"]);
|
|
1645
|
+
var rest = compileAttributes(fullRest);
|
|
1680
1646
|
return (React.createElement("svg", __assign({ viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, rest),
|
|
1681
|
-
React.createElement(PathMorpher, __assign({},
|
|
1682
|
-
React.createElement(PathMorpher, __assign({},
|
|
1683
|
-
React.createElement(PathMorpher, __assign({},
|
|
1647
|
+
React.createElement(PathMorpher, __assign({}, iconAnimatedViewChart.topRight, { fill: "#AFB3C7", className: "icon-light", animated: animated })),
|
|
1648
|
+
React.createElement(PathMorpher, __assign({}, iconAnimatedViewChart.left, { fill: "#1B1E2E", className: "icon-dark-secondary", animated: animated })),
|
|
1649
|
+
React.createElement(PathMorpher, __assign({}, iconAnimatedViewChart.bottom, { fill: "#747994", className: "icon-dark", animated: animated, shapeRendering: "geometricPrecision" }))));
|
|
1684
1650
|
};
|
|
1685
1651
|
|
|
1686
1652
|
var IconObjectGear = function (_a) {
|
|
1687
|
-
var animated = _a.animated,
|
|
1653
|
+
var animated = _a.animated, fullRest = __rest(_a, ["animated"]);
|
|
1654
|
+
var rest = compileAttributes(fullRest);
|
|
1688
1655
|
return (React.createElement("svg", __assign({ viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, rest),
|
|
1689
|
-
React.createElement(PathMorpher, __assign({ fillRule: "evenodd", clipRule: "evenodd" },
|
|
1656
|
+
React.createElement(PathMorpher, __assign({ fillRule: "evenodd", clipRule: "evenodd" }, iconAnimatedObjectGear, { fill: "#1B1E2E", animated: animated, className: "icon-light" })),
|
|
1690
1657
|
React.createElement("circle", { cx: "12", cy: "12", r: "2", fill: "#9095AD", className: "icon-dark" })));
|
|
1691
1658
|
};
|
|
1692
1659
|
|
|
1693
1660
|
export { IconActionAdd, IconActionAddLarge, IconActionAddMedium, IconActionAddSmall, IconActionAddXsmall, IconActionDelete, IconActionDeleteCircle, IconActionDeleteLarge, IconActionDeleteMedium, IconActionDeleteSmall, IconActionDeleteXlarge, IconActionDeleteXsmall, IconActionDisableCircleSolid, IconActionExport, IconActionNext, IconActionPlayLarge, IconActionPlaySmall, IconActionPlayVideo, IconActionPower, IconActionQuestionMarkCircle, IconActionQuestionMarkDefault, IconActionQuestionMarkOutline, IconActionRecord, IconActionRefresh, IconActionRestart, IconActionStop, IconActionTestReplay, IconGeneralChatBubble as IconAnimatedGeneralChatBubble, IconObjectGear as IconAnimatedObjectGear, IconViewChart$1 as IconAnimatedTechnologyGitBranches, IconTechServer as IconAnimatedTechnologyServer, IconViewChart as IconAnimatedViewChart, IconArrowBottomRight, IconArrowCollapse, IconArrowDown, IconArrowExpand, IconArrowLeft, IconArrowOpposingUpDown, IconArrowOutlineDown, IconArrowRight, IconArrowRightLarge, IconArrowSquareDown, IconArrowTopRight, IconArrowUp, IconBrowserChrome, IconBrowserChromeBeta, IconBrowserChromeCanary, IconBrowserEdge, IconBrowserElectronDark, IconBrowserElectronLight, IconBrowserMozillaFirefox, IconBrowserSafari, IconBrowserWebkit, IconCheckmark, IconCheckmarkOutline, IconCheckmarkSmall, IconCheckmarkSolid, IconChevronDownDouble, IconChevronDownLarge, IconChevronDownMedium, IconChevronDownSmall, IconChevronLeftDouble, IconChevronLeftLarge, IconChevronLeftSmall, IconChevronRightDouble, IconChevronRightLarge, IconChevronRightSmall, IconChevronUpDouble, IconChevronUpLarge, IconChevronUpSmall, IconCurrencyEur, IconCurrencyGbp, IconCurrencyInr, IconCurrencyRub, IconCurrencyUsd, IconDeviceLaptop, IconDeviceSmartphone, IconDeviceTv, IconDocumentAdded, IconDocumentAddedSquarePlus, IconDocumentBlank, IconDocumentCode, IconDocumentDeleted, IconDocumentDownload, IconDocumentMinus, IconDocumentModified, IconDocumentModifiedSquareDot, IconDocumentPlus, IconDocumentPlusMinus, IconDocumentScript, IconDocumentSheet, IconDocumentStar, IconDocumentText, IconDotOutlineLarge, IconDotOutlineSmall, IconFileChangesAdded, IconFileChangesError, IconFileChangesSkipped, IconFileChangesWarning, IconGeneral1X, IconGeneralChatBubble$1 as IconGeneralChatBubble, IconGeneralClipboard, IconGeneralCommandKey, IconGeneralCrosshairs, IconGeneralEarth, IconGeneralEyeClosed, IconGeneralEyeOpen, IconGeneralGlobe, IconGeneralGrid2X2, IconGeneralGrid2X2Medium, IconGeneralGrid2X2Small, IconGeneralHandleVertical, IconGeneralLifeRing, IconGeneralOfficeBuilding, IconGeneralPlaceholder, IconGeneralRocket, IconLoading, IconMenuDotsVertical, IconMenuExpandLeft, IconMenuExpandRight, IconMenuHamburger, IconNumber1, IconNumber2, IconNumber3, IconNumber4, IconNumber5, IconNumberOctothorpe, IconObjectBook, IconObjectBookCode, IconObjectBookmark, IconObjectBox, IconObjectBoxOpen, IconObjectBriefcase, IconObjectBug, IconObjectBugLarge, IconObjectBugSmall, IconObjectChainLink, IconObjectFolderDark, IconObjectFolderDarkSmall, IconObjectFolderLight, IconObjectGear$1 as IconObjectGear, IconObjectGraduationCap, IconObjectLetter, IconObjectMagicWandDarkMode, IconObjectMagnifyingGlass, IconObjectOdometer, IconObjectPaperAirplane, IconObjectPinModern, IconObjectRuler, IconObjectSlidersRound, IconObjectTag, IconObjectTassel, IconOsApple, IconOsGeneric, IconOsLinux, IconOsWindows, IconSecurityKey, IconSecurityLockLocked, IconSecurityShieldCheck, IconSecurityShieldCross, IconShapeHeart, IconShapeLightningBolt, IconShapeMoonCrescent, IconShapeStar, IconShapeSunLong, IconSocialDiscordSolid, IconSocialEmail, IconSocialFacebookSolid, IconSocialGithubSolid, IconSocialLinkedinSolid, IconSocialTwitterSolid, IconSocialYoutubeSolid, IconStatusCancelledOutline, IconStatusCancelledSimple, IconStatusCancelledSolid, IconStatusErroredOutline, IconStatusErroredSimple, IconStatusErroredSolid, IconStatusFailedOutline, IconStatusFailedSimple, IconStatusFailedSolid, IconStatusFailingOutline, IconStatusFlaky, IconStatusPassedOutline, IconStatusPassedSimple, IconStatusPassedSolid, IconStatusPendingOutline, IconStatusPendingSimple, IconStatusPlaceholderSimple, IconStatusPlaceholderSolid, IconStatusQueuedOutline, IconStatusQueuedSimple, IconStatusRunningOutline, IconStatusRunningSimple, IconStatusSkippedOutline, IconStatusSkippedSimple, IconTechnologyAccessibility, IconTechnologyBranchH, IconTechnologyBranchHTall, IconTechnologyBrowserDark, IconTechnologyBrowserLight, IconTechnologyBrowserTesting2, IconTechnologyCodeEditor, IconTechnologyCommandLine, IconTechnologyCommandLineError, IconTechnologyCypress, IconTechnologyDashboardCheckmark, IconTechnologyDashboardFail, IconTechnologyDashboardRunning, IconTechnologyDollar, IconTechnologyDragProject, IconTechnologyElementSelector, IconTechnologyGitBranches, IconTechnologyImageScreenshot, IconTechnologyInfinityLoop, IconTechnologyLockedProject, IconTechnologyOctothorpe, IconTechnologyPullRequest, IconTechnologyServer, IconTechnologyServerAlt, IconTechnologyTerminal, IconTechnologyTerminalLog, IconTechnologyTestResults, IconTechnologyUiCoverage, IconTestingTypeComponent, IconTestingTypeComponentSolid, IconTestingTypeE2E, IconTestingTypeE2ESolid, IconTimeCalendarDay, IconTimeClock, IconTimeStopwatch, IconUserGeneralOutline, IconUserGeneralSolid, IconViewList, IconViewPieChart, IconViewPieChartAlt, IconViewTreeAlt, IconWarning, IconWarningCircle, IconWindowCodeEditor, compileReactIconProperties, Icon as default };
|
|
1694
1661
|
//# sourceMappingURL=index.es.mjs.map
|
|
1695
1662
|
|
|
1696
|
-
/* <wind-keep class="filter icon-light-secondary icon-dark-secondary
|
|
1663
|
+
/* <wind-keep class="filter icon-light-secondary icon-dark-secondary"> */
|