@vector-im/compound-design-tokens 4.0.1 → 4.0.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.
@@ -0,0 +1,21 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function GuestIcon(props, ref) {
4
+ return /*#__PURE__*/_reactJsxRuntime.jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "currentColor",
9
+ viewBox: "0 0 24 24",
10
+ ref: ref,
11
+ ...props,
12
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
13
+ fillRule: "evenodd",
14
+ d: "M1.304 12.617a1.04 1.04 0 0 1 0-1.47l6.844-6.843a1.04 1.04 0 0 1 1.47 0l1.343 1.344-5.5 5.5a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.344 1.343a1.04 1.04 0 0 1-1.47 0zm6.235-1.47a1.04 1.04 0 0 0 0 1.47l6.844 6.844a1.04 1.04 0 0 0 1.47 0l6.843-6.843a1.04 1.04 0 0 0 0-1.47l-6.844-6.844a1.04 1.04 0 0 0-1.47 0z",
15
+ clipRule: "evenodd"
16
+ })
17
+ });
18
+ }
19
+ ;
20
+ GuestIcon.displayName = "GuestIcon";
21
+ module.exports = React.forwardRef(GuestIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * guest.svg
5
+ */
6
+ declare const GuestIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default GuestIcon;
@@ -0,0 +1,21 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function GuestIcon(props, ref) {
4
+ return /*#__PURE__*/_jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "currentColor",
9
+ viewBox: "0 0 24 24",
10
+ ref: ref,
11
+ ...props,
12
+ children: /*#__PURE__*/_jsx("path", {
13
+ fillRule: "evenodd",
14
+ d: "M1.304 12.617a1.04 1.04 0 0 1 0-1.47l6.844-6.843a1.04 1.04 0 0 1 1.47 0l1.343 1.344-5.5 5.5a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.344 1.343a1.04 1.04 0 0 1-1.47 0zm6.235-1.47a1.04 1.04 0 0 0 0 1.47l6.844 6.844a1.04 1.04 0 0 0 1.47 0l6.843-6.843a1.04 1.04 0 0 0 0-1.47l-6.844-6.844a1.04 1.04 0 0 0-1.47 0z",
15
+ clipRule: "evenodd"
16
+ })
17
+ });
18
+ }
19
+ ;
20
+ GuestIcon.displayName = "GuestIcon";
21
+ export default forwardRef(GuestIcon);
@@ -64,6 +64,7 @@ module.exports = {
64
64
  ForwardIcon: require("./forward.cjs"),
65
65
  GridIcon: require("./grid.cjs"),
66
66
  GroupIcon: require("./group.cjs"),
67
+ GuestIcon: require("./guest.cjs"),
67
68
  HeadphonesOffSolidIcon: require("./headphones-off-solid.cjs"),
68
69
  HeadphonesSolidIcon: require("./headphones-solid.cjs"),
69
70
  HelpSolidIcon: require("./help-solid.cjs"),
@@ -193,5 +194,7 @@ module.exports = {
193
194
  VolumeOnIcon: require("./volume-on.cjs"),
194
195
  WarningIcon: require("./warning.cjs"),
195
196
  WebBrowserIcon: require("./web-browser.cjs"),
196
- WindowsIcon: require("./windows.cjs")
197
+ WindowsIcon: require("./windows.cjs"),
198
+ WorkspaceSolidIcon: require("./workspace-solid.cjs"),
199
+ WorkspaceIcon: require("./workspace.cjs")
197
200
  };
@@ -63,6 +63,7 @@ export { default as FilterIcon } from "./filter.js";
63
63
  export { default as ForwardIcon } from "./forward.js";
64
64
  export { default as GridIcon } from "./grid.js";
65
65
  export { default as GroupIcon } from "./group.js";
66
+ export { default as GuestIcon } from "./guest.js";
66
67
  export { default as HeadphonesOffSolidIcon } from "./headphones-off-solid.js";
67
68
  export { default as HeadphonesSolidIcon } from "./headphones-solid.js";
68
69
  export { default as HelpSolidIcon } from "./help-solid.js";
@@ -192,4 +193,6 @@ export { default as VolumeOnSolidIcon } from "./volume-on-solid.js";
192
193
  export { default as VolumeOnIcon } from "./volume-on.js";
193
194
  export { default as WarningIcon } from "./warning.js";
194
195
  export { default as WebBrowserIcon } from "./web-browser.js";
195
- export { default as WindowsIcon } from "./windows.js";
196
+ export { default as WindowsIcon } from "./windows.js";
197
+ export { default as WorkspaceSolidIcon } from "./workspace-solid.js";
198
+ export { default as WorkspaceIcon } from "./workspace.js";
@@ -63,6 +63,7 @@ export { default as FilterIcon } from "./filter.js";
63
63
  export { default as ForwardIcon } from "./forward.js";
64
64
  export { default as GridIcon } from "./grid.js";
65
65
  export { default as GroupIcon } from "./group.js";
66
+ export { default as GuestIcon } from "./guest.js";
66
67
  export { default as HeadphonesOffSolidIcon } from "./headphones-off-solid.js";
67
68
  export { default as HeadphonesSolidIcon } from "./headphones-solid.js";
68
69
  export { default as HelpSolidIcon } from "./help-solid.js";
@@ -192,4 +193,6 @@ export { default as VolumeOnSolidIcon } from "./volume-on-solid.js";
192
193
  export { default as VolumeOnIcon } from "./volume-on.js";
193
194
  export { default as WarningIcon } from "./warning.js";
194
195
  export { default as WebBrowserIcon } from "./web-browser.js";
195
- export { default as WindowsIcon } from "./windows.js";
196
+ export { default as WindowsIcon } from "./windows.js";
197
+ export { default as WorkspaceSolidIcon } from "./workspace-solid.js";
198
+ export { default as WorkspaceIcon } from "./workspace.js";
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function WorkspaceSolidIcon(props, ref) {
4
+ return /*#__PURE__*/_reactJsxRuntime.jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "currentColor",
9
+ viewBox: "0 0 24 24",
10
+ ref: ref,
11
+ ...props,
12
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
13
+ d: "M3.175 19.825Q4.35 21 6 21t2.825-1.175T10 17t-1.175-2.825T6 13t-2.825 1.175T2 17t1.175 2.825m12 0Q16.35 21 18 21t2.825-1.175T22 17t-1.175-2.825T18 13t-2.825 1.175T14 17t1.175 2.825m-6-10Q10.35 11 12 11t2.825-1.175T16 7t-1.175-2.825T12 3 9.175 4.175 8 7t1.175 2.825"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ WorkspaceSolidIcon.displayName = "WorkspaceSolidIcon";
19
+ module.exports = React.forwardRef(WorkspaceSolidIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * workspace-solid.svg
5
+ */
6
+ declare const WorkspaceSolidIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default WorkspaceSolidIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function WorkspaceSolidIcon(props, ref) {
4
+ return /*#__PURE__*/_jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "currentColor",
9
+ viewBox: "0 0 24 24",
10
+ ref: ref,
11
+ ...props,
12
+ children: /*#__PURE__*/_jsx("path", {
13
+ d: "M3.175 19.825Q4.35 21 6 21t2.825-1.175T10 17t-1.175-2.825T6 13t-2.825 1.175T2 17t1.175 2.825m12 0Q16.35 21 18 21t2.825-1.175T22 17t-1.175-2.825T18 13t-2.825 1.175T14 17t1.175 2.825m-6-10Q10.35 11 12 11t2.825-1.175T16 7t-1.175-2.825T12 3 9.175 4.175 8 7t1.175 2.825"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ WorkspaceSolidIcon.displayName = "WorkspaceSolidIcon";
19
+ export default forwardRef(WorkspaceSolidIcon);
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function WorkspaceIcon(props, ref) {
4
+ return /*#__PURE__*/_reactJsxRuntime.jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "currentColor",
9
+ viewBox: "0 0 24 24",
10
+ ref: ref,
11
+ ...props,
12
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
13
+ d: "M6 21q-1.65 0-2.825-1.175T2 17t1.175-2.825T6 13t2.825 1.175T10 17t-1.175 2.825T6 21m12 0q-1.65 0-2.825-1.175T14 17t1.175-2.825T18 13t2.825 1.175T22 17t-1.175 2.825T18 21M6 19q.824 0 1.412-.587Q8 17.825 8 17t-.588-1.412A1.93 1.93 0 0 0 6 15q-.824 0-1.412.588A1.93 1.93 0 0 0 4 17q0 .824.588 1.413Q5.175 19 6 19m12 0q.824 0 1.413-.587Q20 17.825 20 17t-.587-1.412A1.93 1.93 0 0 0 18 15q-.824 0-1.413.588A1.93 1.93 0 0 0 16 17q0 .824.587 1.413Q17.176 19 18 19m-6-8q-1.65 0-2.825-1.175T8 7t1.175-2.825T12 3t2.825 1.175T16 7t-1.175 2.825T12 11m0-2q.825 0 1.412-.588Q14 7.826 14 7q0-.824-.588-1.412A1.93 1.93 0 0 0 12 5q-.825 0-1.412.588A1.93 1.93 0 0 0 10 7q0 .824.588 1.412Q11.175 9 12 9"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ WorkspaceIcon.displayName = "WorkspaceIcon";
19
+ module.exports = React.forwardRef(WorkspaceIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * workspace.svg
5
+ */
6
+ declare const WorkspaceIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default WorkspaceIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function WorkspaceIcon(props, ref) {
4
+ return /*#__PURE__*/_jsx("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "currentColor",
9
+ viewBox: "0 0 24 24",
10
+ ref: ref,
11
+ ...props,
12
+ children: /*#__PURE__*/_jsx("path", {
13
+ d: "M6 21q-1.65 0-2.825-1.175T2 17t1.175-2.825T6 13t2.825 1.175T10 17t-1.175 2.825T6 21m12 0q-1.65 0-2.825-1.175T14 17t1.175-2.825T18 13t2.825 1.175T22 17t-1.175 2.825T18 21M6 19q.824 0 1.412-.587Q8 17.825 8 17t-.588-1.412A1.93 1.93 0 0 0 6 15q-.824 0-1.412.588A1.93 1.93 0 0 0 4 17q0 .824.588 1.413Q5.175 19 6 19m12 0q.824 0 1.413-.587Q20 17.825 20 17t-.587-1.412A1.93 1.93 0 0 0 18 15q-.824 0-1.413.588A1.93 1.93 0 0 0 16 17q0 .824.587 1.413Q17.176 19 18 19m-6-8q-1.65 0-2.825-1.175T8 7t1.175-2.825T12 3t2.825 1.175T16 7t-1.175 2.825T12 11m0-2q.825 0 1.412-.588Q14 7.826 14 7q0-.824-.588-1.412A1.93 1.93 0 0 0 12 5q-.825 0-1.412.588A1.93 1.93 0 0 0 10 7q0 .824.588 1.412Q11.175 9 12 9"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ WorkspaceIcon.displayName = "WorkspaceIcon";
19
+ export default forwardRef(WorkspaceIcon);
@@ -272,6 +272,9 @@ export const cpdIconPresenceOutline8X8: string;
272
272
  export const cpdIconPresenceStrikethrough8X8: string;
273
273
  export const cpdIconError: string;
274
274
  export const cpdIconDialPad: string;
275
+ export const cpdIconWorkspace: string;
276
+ export const cpdIconWorkspaceSolid: string;
277
+ export const cpdIconGuest: string;
275
278
  export const cpdColorThemeBg: string;
276
279
  export const cpdColorGray100: string;
277
280
  export const cpdColorGray200: string;
@@ -297,6 +297,9 @@ export const cpdIconPresenceStrikethrough8X8 =
297
297
  "icons/presence-strikethrough-8x8.svg";
298
298
  export const cpdIconError = "icons/error.svg";
299
299
  export const cpdIconDialPad = "icons/dial-pad.svg";
300
+ export const cpdIconWorkspace = "icons/workspace.svg";
301
+ export const cpdIconWorkspaceSolid = "icons/workspace-solid.svg";
302
+ export const cpdIconGuest = "icons/guest.svg";
300
303
  export const cpdColorThemeBg = "#101317";
301
304
  export const cpdColorGray100 = "#14171b";
302
305
  export const cpdColorGray200 = "#181a1f";
@@ -272,6 +272,9 @@ export const cpdIconPresenceOutline8X8: string;
272
272
  export const cpdIconPresenceStrikethrough8X8: string;
273
273
  export const cpdIconError: string;
274
274
  export const cpdIconDialPad: string;
275
+ export const cpdIconWorkspace: string;
276
+ export const cpdIconWorkspaceSolid: string;
277
+ export const cpdIconGuest: string;
275
278
  export const cpdColorThemeBg: string;
276
279
  export const cpdColorGray100: string;
277
280
  export const cpdColorGray200: string;
@@ -297,6 +297,9 @@ export const cpdIconPresenceStrikethrough8X8 =
297
297
  "icons/presence-strikethrough-8x8.svg";
298
298
  export const cpdIconError = "icons/error.svg";
299
299
  export const cpdIconDialPad = "icons/dial-pad.svg";
300
+ export const cpdIconWorkspace = "icons/workspace.svg";
301
+ export const cpdIconWorkspaceSolid = "icons/workspace-solid.svg";
302
+ export const cpdIconGuest = "icons/guest.svg";
300
303
  export const cpdColorThemeBg = "#101317";
301
304
  export const cpdColorGray100 = "#181a1f";
302
305
  export const cpdColorGray200 = "#1d1f24";
@@ -272,6 +272,9 @@ export const cpdIconPresenceOutline8X8: string;
272
272
  export const cpdIconPresenceStrikethrough8X8: string;
273
273
  export const cpdIconError: string;
274
274
  export const cpdIconDialPad: string;
275
+ export const cpdIconWorkspace: string;
276
+ export const cpdIconWorkspaceSolid: string;
277
+ export const cpdIconGuest: string;
275
278
  export const cpdColorThemeBg: string;
276
279
  export const cpdColorGray100: string;
277
280
  export const cpdColorGray200: string;
@@ -297,6 +297,9 @@ export const cpdIconPresenceStrikethrough8X8 =
297
297
  "icons/presence-strikethrough-8x8.svg";
298
298
  export const cpdIconError = "icons/error.svg";
299
299
  export const cpdIconDialPad = "icons/dial-pad.svg";
300
+ export const cpdIconWorkspace = "icons/workspace.svg";
301
+ export const cpdIconWorkspaceSolid = "icons/workspace-solid.svg";
302
+ export const cpdIconGuest = "icons/guest.svg";
300
303
  export const cpdColorThemeBg = "#ffffff";
301
304
  export const cpdColorGray100 = "#fbfcfd";
302
305
  export const cpdColorGray200 = "#f7f9fa";
@@ -272,6 +272,9 @@ export const cpdIconPresenceOutline8X8: string;
272
272
  export const cpdIconPresenceStrikethrough8X8: string;
273
273
  export const cpdIconError: string;
274
274
  export const cpdIconDialPad: string;
275
+ export const cpdIconWorkspace: string;
276
+ export const cpdIconWorkspaceSolid: string;
277
+ export const cpdIconGuest: string;
275
278
  export const cpdColorThemeBg: string;
276
279
  export const cpdColorGray100: string;
277
280
  export const cpdColorGray200: string;
@@ -297,6 +297,9 @@ export const cpdIconPresenceStrikethrough8X8 =
297
297
  "icons/presence-strikethrough-8x8.svg";
298
298
  export const cpdIconError = "icons/error.svg";
299
299
  export const cpdIconDialPad = "icons/dial-pad.svg";
300
+ export const cpdIconWorkspace = "icons/workspace.svg";
301
+ export const cpdIconWorkspaceSolid = "icons/workspace-solid.svg";
302
+ export const cpdIconGuest = "icons/guest.svg";
300
303
  export const cpdColorThemeBg = "#ffffff";
301
304
  export const cpdColorGray100 = "#f7f9fa";
302
305
  export const cpdColorGray200 = "#f0f2f5";
package/icons/$icons.json CHANGED
@@ -779,6 +779,18 @@
779
779
  "dial-pad": {
780
780
  "value": "icons/dial-pad.svg",
781
781
  "type": "icon"
782
+ },
783
+ "workspace": {
784
+ "value": "icons/workspace.svg",
785
+ "type": "icon"
786
+ },
787
+ "workspace-solid": {
788
+ "value": "icons/workspace-solid.svg",
789
+ "type": "icon"
790
+ },
791
+ "guest": {
792
+ "value": "icons/guest.svg",
793
+ "type": "icon"
782
794
  }
783
795
  }
784
796
  }
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M1.304 12.617a1.04 1.04 0 0 1 0-1.47l6.844-6.843a1.04 1.04 0 0 1 1.47 0l1.343 1.344-5.5 5.5a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.344 1.343a1.04 1.04 0 0 1-1.47 0zm6.235-1.47a1.04 1.04 0 0 0 0 1.47l6.844 6.844a1.04 1.04 0 0 0 1.47 0l6.843-6.843a1.04 1.04 0 0 0 0-1.47l-6.844-6.844a1.04 1.04 0 0 0-1.47 0z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M3.175 19.825Q4.35 21 6 21t2.825-1.175T10 17t-1.175-2.825T6 13t-2.825 1.175T2 17t1.175 2.825m12 0Q16.35 21 18 21t2.825-1.175T22 17t-1.175-2.825T18 13t-2.825 1.175T14 17t1.175 2.825m-6-10Q10.35 11 12 11t2.825-1.175T16 7t-1.175-2.825T12 3 9.175 4.175 8 7t1.175 2.825"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M6 21q-1.65 0-2.825-1.175T2 17t1.175-2.825T6 13t2.825 1.175T10 17t-1.175 2.825T6 21m12 0q-1.65 0-2.825-1.175T14 17t1.175-2.825T18 13t2.825 1.175T22 17t-1.175 2.825T18 21M6 19q.824 0 1.412-.587Q8 17.825 8 17t-.588-1.412A1.93 1.93 0 0 0 6 15q-.824 0-1.412.588A1.93 1.93 0 0 0 4 17q0 .824.588 1.413Q5.175 19 6 19m12 0q.824 0 1.413-.587Q20 17.825 20 17t-.587-1.412A1.93 1.93 0 0 0 18 15q-.824 0-1.413.588A1.93 1.93 0 0 0 16 17q0 .824.587 1.413Q17.176 19 18 19m-6-8q-1.65 0-2.825-1.175T8 7t1.175-2.825T12 3t2.825 1.175T16 7t-1.175 2.825T12 11m0-2q.825 0 1.412-.588Q14 7.826 14 7q0-.824-.588-1.412A1.93 1.93 0 0 0 12 5q-.825 0-1.412.588A1.93 1.93 0 0 0 10 7q0 .824.588 1.412Q11.175 9 12 9"/></svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vector-im/compound-design-tokens",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Compound design tokens",
5
5
  "sideEffects": false,
6
6
  "scripts": {