@vector-im/compound-design-tokens 2.0.1 → 2.1.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/assets/web/icons/ask-to-join-solid.cjs +19 -0
- package/assets/web/icons/ask-to-join-solid.d.ts +11 -0
- package/assets/web/icons/ask-to-join-solid.js +19 -0
- package/assets/web/icons/ask-to-join.cjs +19 -0
- package/assets/web/icons/ask-to-join.d.ts +11 -0
- package/assets/web/icons/ask-to-join.js +19 -0
- package/assets/web/icons/explore.cjs +19 -0
- package/assets/web/icons/explore.d.ts +11 -0
- package/assets/web/icons/explore.js +19 -0
- package/assets/web/icons/group.cjs +19 -0
- package/assets/web/icons/group.d.ts +11 -0
- package/assets/web/icons/group.js +19 -0
- package/assets/web/icons/index.cjs +11 -1
- package/assets/web/icons/index.d.ts +11 -1
- package/assets/web/icons/index.js +11 -1
- package/assets/web/icons/linux.cjs +33 -0
- package/assets/web/icons/linux.d.ts +11 -0
- package/assets/web/icons/linux.js +33 -0
- package/assets/web/icons/mac.cjs +21 -0
- package/assets/web/icons/mac.d.ts +11 -0
- package/assets/web/icons/mac.js +21 -0
- package/assets/web/icons/presence-outline-8x8.cjs +31 -0
- package/assets/web/icons/presence-outline-8x8.d.ts +11 -0
- package/assets/web/icons/presence-outline-8x8.js +31 -0
- package/assets/web/icons/presence-solid-8x8.cjs +29 -0
- package/assets/web/icons/presence-solid-8x8.d.ts +11 -0
- package/assets/web/icons/presence-solid-8x8.js +29 -0
- package/assets/web/icons/presence-strikethrough-8x8.cjs +31 -0
- package/assets/web/icons/presence-strikethrough-8x8.d.ts +11 -0
- package/assets/web/icons/presence-strikethrough-8x8.js +31 -0
- package/assets/web/icons/windows.cjs +19 -0
- package/assets/web/icons/windows.d.ts +11 -0
- package/assets/web/icons/windows.js +19 -0
- package/assets/web/js/cpdDark.d.ts +10 -0
- package/assets/web/js/cpdDark.js +11 -0
- package/assets/web/js/cpdDarkHc.d.ts +10 -0
- package/assets/web/js/cpdDarkHc.js +11 -0
- package/assets/web/js/cpdLight.d.ts +10 -0
- package/assets/web/js/cpdLight.js +11 -0
- package/assets/web/js/cpdLightHc.d.ts +10 -0
- package/assets/web/js/cpdLightHc.js +11 -0
- package/icons/$icons.json +1 -1
- package/icons/ask-to-join-solid.svg +3 -0
- package/icons/ask-to-join.svg +3 -0
- package/icons/explore.svg +3 -0
- package/icons/group.svg +3 -0
- package/icons/linux.svg +12 -0
- package/icons/mac.svg +3 -0
- package/icons/presence-outline-8x8.svg +10 -0
- package/icons/presence-solid-8x8.svg +10 -0
- package/icons/presence-strikethrough-8x8.svg +10 -0
- package/icons/windows.svg +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function PresenceSolid8X8Icon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_reactJsxRuntime.jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 8 8",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [/*#__PURE__*/_reactJsxRuntime.jsx("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
15
|
+
d: "M8 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"
|
|
16
|
+
})
|
|
17
|
+
}), /*#__PURE__*/_reactJsxRuntime.jsx("defs", {
|
|
18
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("clipPath", {
|
|
19
|
+
id: "a",
|
|
20
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
21
|
+
d: "M0 0h8v8H0z"
|
|
22
|
+
})
|
|
23
|
+
})
|
|
24
|
+
})]
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
;
|
|
28
|
+
PresenceSolid8X8Icon.displayName = "PresenceSolid8X8Icon";
|
|
29
|
+
module.exports = React.forwardRef(PresenceSolid8X8Icon);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* presence-solid-8x8.svg
|
|
5
|
+
*/
|
|
6
|
+
declare const PresenceSolid8X8Icon: React.ForwardRefExoticComponent<
|
|
7
|
+
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
|
|
8
|
+
React.RefAttributes<SVGSVGElement>
|
|
9
|
+
>;
|
|
10
|
+
|
|
11
|
+
export default PresenceSolid8X8Icon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
function PresenceSolid8X8Icon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 8 8",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [/*#__PURE__*/_jsx("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
15
|
+
d: "M8 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"
|
|
16
|
+
})
|
|
17
|
+
}), /*#__PURE__*/_jsx("defs", {
|
|
18
|
+
children: /*#__PURE__*/_jsx("clipPath", {
|
|
19
|
+
id: "a",
|
|
20
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
21
|
+
d: "M0 0h8v8H0z"
|
|
22
|
+
})
|
|
23
|
+
})
|
|
24
|
+
})]
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
;
|
|
28
|
+
PresenceSolid8X8Icon.displayName = "PresenceSolid8X8Icon";
|
|
29
|
+
export default forwardRef(PresenceSolid8X8Icon);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function PresenceStrikethrough8X8Icon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_reactJsxRuntime.jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 8 8",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [/*#__PURE__*/_reactJsxRuntime.jsx("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
d: "M8 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM5.435 6.048A2.5 2.5 0 0 1 1.687 3.05l3.748 2.998Zm.914-1.19L2.648 1.897a2.5 2.5 0 0 1 3.701 2.961Z",
|
|
17
|
+
clipRule: "evenodd"
|
|
18
|
+
})
|
|
19
|
+
}), /*#__PURE__*/_reactJsxRuntime.jsx("defs", {
|
|
20
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("clipPath", {
|
|
21
|
+
id: "a",
|
|
22
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
23
|
+
d: "M0 0h8v8H0z"
|
|
24
|
+
})
|
|
25
|
+
})
|
|
26
|
+
})]
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
;
|
|
30
|
+
PresenceStrikethrough8X8Icon.displayName = "PresenceStrikethrough8X8Icon";
|
|
31
|
+
module.exports = React.forwardRef(PresenceStrikethrough8X8Icon);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* presence-strikethrough-8x8.svg
|
|
5
|
+
*/
|
|
6
|
+
declare const PresenceStrikethrough8X8Icon: React.ForwardRefExoticComponent<
|
|
7
|
+
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
|
|
8
|
+
React.RefAttributes<SVGSVGElement>
|
|
9
|
+
>;
|
|
10
|
+
|
|
11
|
+
export default PresenceStrikethrough8X8Icon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
function PresenceStrikethrough8X8Icon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 8 8",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [/*#__PURE__*/_jsx("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
d: "M8 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM5.435 6.048A2.5 2.5 0 0 1 1.687 3.05l3.748 2.998Zm.914-1.19L2.648 1.897a2.5 2.5 0 0 1 3.701 2.961Z",
|
|
17
|
+
clipRule: "evenodd"
|
|
18
|
+
})
|
|
19
|
+
}), /*#__PURE__*/_jsx("defs", {
|
|
20
|
+
children: /*#__PURE__*/_jsx("clipPath", {
|
|
21
|
+
id: "a",
|
|
22
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
23
|
+
d: "M0 0h8v8H0z"
|
|
24
|
+
})
|
|
25
|
+
})
|
|
26
|
+
})]
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
;
|
|
30
|
+
PresenceStrikethrough8X8Icon.displayName = "PresenceStrikethrough8X8Icon";
|
|
31
|
+
export default forwardRef(PresenceStrikethrough8X8Icon);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function WindowsIcon(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: "M12.589 2.4H21.6v9.011h-9.011zM2.4 12.588h9.011v9.011H2.4zM2.4 2.4h9.011v9.011H2.4zm10.189 10.188H21.6v9.011h-9.011z"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
;
|
|
18
|
+
WindowsIcon.displayName = "WindowsIcon";
|
|
19
|
+
module.exports = React.forwardRef(WindowsIcon);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
function WindowsIcon(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: "M12.589 2.4H21.6v9.011h-9.011zM2.4 12.588h9.011v9.011H2.4zM2.4 2.4h9.011v9.011H2.4zm10.189 10.188H21.6v9.011h-9.011z"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
;
|
|
18
|
+
WindowsIcon.displayName = "WindowsIcon";
|
|
19
|
+
export default forwardRef(WindowsIcon);
|
|
@@ -83,6 +83,8 @@ export const cpdIconArrowLeft: string;
|
|
|
83
83
|
export const cpdIconArrowRight: string;
|
|
84
84
|
export const cpdIconArrowUpRight: string;
|
|
85
85
|
export const cpdIconArrowUp: string;
|
|
86
|
+
export const cpdIconAskToJoinSolid: string;
|
|
87
|
+
export const cpdIconAskToJoin: string;
|
|
86
88
|
export const cpdIconAttachment: string;
|
|
87
89
|
export const cpdIconBlock: string;
|
|
88
90
|
export const cpdIconBold: string;
|
|
@@ -124,6 +126,7 @@ export const cpdIconEmail: string;
|
|
|
124
126
|
export const cpdIconEndCall: string;
|
|
125
127
|
export const cpdIconError: string;
|
|
126
128
|
export const cpdIconExpand: string;
|
|
129
|
+
export const cpdIconExplore: string;
|
|
127
130
|
export const cpdIconExportArchive: string;
|
|
128
131
|
export const cpdIconExtensionsSolid: string;
|
|
129
132
|
export const cpdIconExtensions: string;
|
|
@@ -134,6 +137,7 @@ export const cpdIconFiles: string;
|
|
|
134
137
|
export const cpdIconFilter: string;
|
|
135
138
|
export const cpdIconForward: string;
|
|
136
139
|
export const cpdIconGrid: string;
|
|
140
|
+
export const cpdIconGroup: string;
|
|
137
141
|
export const cpdIconHelpSolid: string;
|
|
138
142
|
export const cpdIconHelp: string;
|
|
139
143
|
export const cpdIconHistory: string;
|
|
@@ -156,6 +160,7 @@ export const cpdIconKeyboard: string;
|
|
|
156
160
|
export const cpdIconLabs: string;
|
|
157
161
|
export const cpdIconLeave: string;
|
|
158
162
|
export const cpdIconLink: string;
|
|
163
|
+
export const cpdIconLinux: string;
|
|
159
164
|
export const cpdIconListBulleted: string;
|
|
160
165
|
export const cpdIconListNumbered: string;
|
|
161
166
|
export const cpdIconLocationNavigatorCentred: string;
|
|
@@ -165,6 +170,7 @@ export const cpdIconLocationPin: string;
|
|
|
165
170
|
export const cpdIconLockOff: string;
|
|
166
171
|
export const cpdIconLockSolid: string;
|
|
167
172
|
export const cpdIconLock: string;
|
|
173
|
+
export const cpdIconMac: string;
|
|
168
174
|
export const cpdIconMarkAsRead: string;
|
|
169
175
|
export const cpdIconMarkAsUnread: string;
|
|
170
176
|
export const cpdIconMarkThreadsAsRead: string;
|
|
@@ -195,6 +201,9 @@ export const cpdIconPollsEnd: string;
|
|
|
195
201
|
export const cpdIconPolls: string;
|
|
196
202
|
export const cpdIconPopOut: string;
|
|
197
203
|
export const cpdIconPreferences: string;
|
|
204
|
+
export const cpdIconPresenceOutline8X8: string;
|
|
205
|
+
export const cpdIconPresenceSolid8X8: string;
|
|
206
|
+
export const cpdIconPresenceStrikethrough8X8: string;
|
|
198
207
|
export const cpdIconPublic: string;
|
|
199
208
|
export const cpdIconQrCode: string;
|
|
200
209
|
export const cpdIconQuote: string;
|
|
@@ -253,6 +262,7 @@ export const cpdIconVolumeOnSolid: string;
|
|
|
253
262
|
export const cpdIconVolumeOn: string;
|
|
254
263
|
export const cpdIconWarning: string;
|
|
255
264
|
export const cpdIconWebBrowser: string;
|
|
265
|
+
export const cpdIconWindows: string;
|
|
256
266
|
export const cpdColorThemeBg: string;
|
|
257
267
|
export const cpdColorGray100: string;
|
|
258
268
|
export const cpdColorGray200: string;
|
package/assets/web/js/cpdDark.js
CHANGED
|
@@ -105,6 +105,8 @@ export const cpdIconArrowLeft = "icons/arrow-left.svg";
|
|
|
105
105
|
export const cpdIconArrowRight = "icons/arrow-right.svg";
|
|
106
106
|
export const cpdIconArrowUpRight = "icons/arrow-up-right.svg";
|
|
107
107
|
export const cpdIconArrowUp = "icons/arrow-up.svg";
|
|
108
|
+
export const cpdIconAskToJoinSolid = "icons/ask-to-join-solid.svg";
|
|
109
|
+
export const cpdIconAskToJoin = "icons/ask-to-join.svg";
|
|
108
110
|
export const cpdIconAttachment = "icons/attachment.svg";
|
|
109
111
|
export const cpdIconBlock = "icons/block.svg";
|
|
110
112
|
export const cpdIconBold = "icons/bold.svg";
|
|
@@ -146,6 +148,7 @@ export const cpdIconEmail = "icons/email.svg";
|
|
|
146
148
|
export const cpdIconEndCall = "icons/end-call.svg";
|
|
147
149
|
export const cpdIconError = "icons/error.svg";
|
|
148
150
|
export const cpdIconExpand = "icons/expand.svg";
|
|
151
|
+
export const cpdIconExplore = "icons/explore.svg";
|
|
149
152
|
export const cpdIconExportArchive = "icons/export-archive.svg";
|
|
150
153
|
export const cpdIconExtensionsSolid = "icons/extensions-solid.svg";
|
|
151
154
|
export const cpdIconExtensions = "icons/extensions.svg";
|
|
@@ -156,6 +159,7 @@ export const cpdIconFiles = "icons/files.svg";
|
|
|
156
159
|
export const cpdIconFilter = "icons/filter.svg";
|
|
157
160
|
export const cpdIconForward = "icons/forward.svg";
|
|
158
161
|
export const cpdIconGrid = "icons/grid.svg";
|
|
162
|
+
export const cpdIconGroup = "icons/group.svg";
|
|
159
163
|
export const cpdIconHelpSolid = "icons/help-solid.svg";
|
|
160
164
|
export const cpdIconHelp = "icons/help.svg";
|
|
161
165
|
export const cpdIconHistory = "icons/history.svg";
|
|
@@ -178,6 +182,7 @@ export const cpdIconKeyboard = "icons/keyboard.svg";
|
|
|
178
182
|
export const cpdIconLabs = "icons/labs.svg";
|
|
179
183
|
export const cpdIconLeave = "icons/leave.svg";
|
|
180
184
|
export const cpdIconLink = "icons/link.svg";
|
|
185
|
+
export const cpdIconLinux = "icons/linux.svg";
|
|
181
186
|
export const cpdIconListBulleted = "icons/list-bulleted.svg";
|
|
182
187
|
export const cpdIconListNumbered = "icons/list-numbered.svg";
|
|
183
188
|
export const cpdIconLocationNavigatorCentred =
|
|
@@ -188,6 +193,7 @@ export const cpdIconLocationPin = "icons/location-pin.svg";
|
|
|
188
193
|
export const cpdIconLockOff = "icons/lock-off.svg";
|
|
189
194
|
export const cpdIconLockSolid = "icons/lock-solid.svg";
|
|
190
195
|
export const cpdIconLock = "icons/lock.svg";
|
|
196
|
+
export const cpdIconMac = "icons/mac.svg";
|
|
191
197
|
export const cpdIconMarkAsRead = "icons/mark-as-read.svg";
|
|
192
198
|
export const cpdIconMarkAsUnread = "icons/mark-as-unread.svg";
|
|
193
199
|
export const cpdIconMarkThreadsAsRead = "icons/mark-threads-as-read.svg";
|
|
@@ -218,6 +224,10 @@ export const cpdIconPollsEnd = "icons/polls-end.svg";
|
|
|
218
224
|
export const cpdIconPolls = "icons/polls.svg";
|
|
219
225
|
export const cpdIconPopOut = "icons/pop-out.svg";
|
|
220
226
|
export const cpdIconPreferences = "icons/preferences.svg";
|
|
227
|
+
export const cpdIconPresenceOutline8X8 = "icons/presence-outline-8x8.svg";
|
|
228
|
+
export const cpdIconPresenceSolid8X8 = "icons/presence-solid-8x8.svg";
|
|
229
|
+
export const cpdIconPresenceStrikethrough8X8 =
|
|
230
|
+
"icons/presence-strikethrough-8x8.svg";
|
|
221
231
|
export const cpdIconPublic = "icons/public.svg";
|
|
222
232
|
export const cpdIconQrCode = "icons/qr-code.svg";
|
|
223
233
|
export const cpdIconQuote = "icons/quote.svg";
|
|
@@ -277,6 +287,7 @@ export const cpdIconVolumeOnSolid = "icons/volume-on-solid.svg";
|
|
|
277
287
|
export const cpdIconVolumeOn = "icons/volume-on.svg";
|
|
278
288
|
export const cpdIconWarning = "icons/warning.svg";
|
|
279
289
|
export const cpdIconWebBrowser = "icons/web-browser.svg";
|
|
290
|
+
export const cpdIconWindows = "icons/windows.svg";
|
|
280
291
|
export const cpdColorThemeBg = "#101317";
|
|
281
292
|
export const cpdColorGray100 = "#14171b";
|
|
282
293
|
export const cpdColorGray200 = "#181a1f";
|
|
@@ -83,6 +83,8 @@ export const cpdIconArrowLeft: string;
|
|
|
83
83
|
export const cpdIconArrowRight: string;
|
|
84
84
|
export const cpdIconArrowUpRight: string;
|
|
85
85
|
export const cpdIconArrowUp: string;
|
|
86
|
+
export const cpdIconAskToJoinSolid: string;
|
|
87
|
+
export const cpdIconAskToJoin: string;
|
|
86
88
|
export const cpdIconAttachment: string;
|
|
87
89
|
export const cpdIconBlock: string;
|
|
88
90
|
export const cpdIconBold: string;
|
|
@@ -124,6 +126,7 @@ export const cpdIconEmail: string;
|
|
|
124
126
|
export const cpdIconEndCall: string;
|
|
125
127
|
export const cpdIconError: string;
|
|
126
128
|
export const cpdIconExpand: string;
|
|
129
|
+
export const cpdIconExplore: string;
|
|
127
130
|
export const cpdIconExportArchive: string;
|
|
128
131
|
export const cpdIconExtensionsSolid: string;
|
|
129
132
|
export const cpdIconExtensions: string;
|
|
@@ -134,6 +137,7 @@ export const cpdIconFiles: string;
|
|
|
134
137
|
export const cpdIconFilter: string;
|
|
135
138
|
export const cpdIconForward: string;
|
|
136
139
|
export const cpdIconGrid: string;
|
|
140
|
+
export const cpdIconGroup: string;
|
|
137
141
|
export const cpdIconHelpSolid: string;
|
|
138
142
|
export const cpdIconHelp: string;
|
|
139
143
|
export const cpdIconHistory: string;
|
|
@@ -156,6 +160,7 @@ export const cpdIconKeyboard: string;
|
|
|
156
160
|
export const cpdIconLabs: string;
|
|
157
161
|
export const cpdIconLeave: string;
|
|
158
162
|
export const cpdIconLink: string;
|
|
163
|
+
export const cpdIconLinux: string;
|
|
159
164
|
export const cpdIconListBulleted: string;
|
|
160
165
|
export const cpdIconListNumbered: string;
|
|
161
166
|
export const cpdIconLocationNavigatorCentred: string;
|
|
@@ -165,6 +170,7 @@ export const cpdIconLocationPin: string;
|
|
|
165
170
|
export const cpdIconLockOff: string;
|
|
166
171
|
export const cpdIconLockSolid: string;
|
|
167
172
|
export const cpdIconLock: string;
|
|
173
|
+
export const cpdIconMac: string;
|
|
168
174
|
export const cpdIconMarkAsRead: string;
|
|
169
175
|
export const cpdIconMarkAsUnread: string;
|
|
170
176
|
export const cpdIconMarkThreadsAsRead: string;
|
|
@@ -195,6 +201,9 @@ export const cpdIconPollsEnd: string;
|
|
|
195
201
|
export const cpdIconPolls: string;
|
|
196
202
|
export const cpdIconPopOut: string;
|
|
197
203
|
export const cpdIconPreferences: string;
|
|
204
|
+
export const cpdIconPresenceOutline8X8: string;
|
|
205
|
+
export const cpdIconPresenceSolid8X8: string;
|
|
206
|
+
export const cpdIconPresenceStrikethrough8X8: string;
|
|
198
207
|
export const cpdIconPublic: string;
|
|
199
208
|
export const cpdIconQrCode: string;
|
|
200
209
|
export const cpdIconQuote: string;
|
|
@@ -253,6 +262,7 @@ export const cpdIconVolumeOnSolid: string;
|
|
|
253
262
|
export const cpdIconVolumeOn: string;
|
|
254
263
|
export const cpdIconWarning: string;
|
|
255
264
|
export const cpdIconWebBrowser: string;
|
|
265
|
+
export const cpdIconWindows: string;
|
|
256
266
|
export const cpdColorThemeBg: string;
|
|
257
267
|
export const cpdColorGray100: string;
|
|
258
268
|
export const cpdColorGray200: string;
|
|
@@ -105,6 +105,8 @@ export const cpdIconArrowLeft = "icons/arrow-left.svg";
|
|
|
105
105
|
export const cpdIconArrowRight = "icons/arrow-right.svg";
|
|
106
106
|
export const cpdIconArrowUpRight = "icons/arrow-up-right.svg";
|
|
107
107
|
export const cpdIconArrowUp = "icons/arrow-up.svg";
|
|
108
|
+
export const cpdIconAskToJoinSolid = "icons/ask-to-join-solid.svg";
|
|
109
|
+
export const cpdIconAskToJoin = "icons/ask-to-join.svg";
|
|
108
110
|
export const cpdIconAttachment = "icons/attachment.svg";
|
|
109
111
|
export const cpdIconBlock = "icons/block.svg";
|
|
110
112
|
export const cpdIconBold = "icons/bold.svg";
|
|
@@ -146,6 +148,7 @@ export const cpdIconEmail = "icons/email.svg";
|
|
|
146
148
|
export const cpdIconEndCall = "icons/end-call.svg";
|
|
147
149
|
export const cpdIconError = "icons/error.svg";
|
|
148
150
|
export const cpdIconExpand = "icons/expand.svg";
|
|
151
|
+
export const cpdIconExplore = "icons/explore.svg";
|
|
149
152
|
export const cpdIconExportArchive = "icons/export-archive.svg";
|
|
150
153
|
export const cpdIconExtensionsSolid = "icons/extensions-solid.svg";
|
|
151
154
|
export const cpdIconExtensions = "icons/extensions.svg";
|
|
@@ -156,6 +159,7 @@ export const cpdIconFiles = "icons/files.svg";
|
|
|
156
159
|
export const cpdIconFilter = "icons/filter.svg";
|
|
157
160
|
export const cpdIconForward = "icons/forward.svg";
|
|
158
161
|
export const cpdIconGrid = "icons/grid.svg";
|
|
162
|
+
export const cpdIconGroup = "icons/group.svg";
|
|
159
163
|
export const cpdIconHelpSolid = "icons/help-solid.svg";
|
|
160
164
|
export const cpdIconHelp = "icons/help.svg";
|
|
161
165
|
export const cpdIconHistory = "icons/history.svg";
|
|
@@ -178,6 +182,7 @@ export const cpdIconKeyboard = "icons/keyboard.svg";
|
|
|
178
182
|
export const cpdIconLabs = "icons/labs.svg";
|
|
179
183
|
export const cpdIconLeave = "icons/leave.svg";
|
|
180
184
|
export const cpdIconLink = "icons/link.svg";
|
|
185
|
+
export const cpdIconLinux = "icons/linux.svg";
|
|
181
186
|
export const cpdIconListBulleted = "icons/list-bulleted.svg";
|
|
182
187
|
export const cpdIconListNumbered = "icons/list-numbered.svg";
|
|
183
188
|
export const cpdIconLocationNavigatorCentred =
|
|
@@ -188,6 +193,7 @@ export const cpdIconLocationPin = "icons/location-pin.svg";
|
|
|
188
193
|
export const cpdIconLockOff = "icons/lock-off.svg";
|
|
189
194
|
export const cpdIconLockSolid = "icons/lock-solid.svg";
|
|
190
195
|
export const cpdIconLock = "icons/lock.svg";
|
|
196
|
+
export const cpdIconMac = "icons/mac.svg";
|
|
191
197
|
export const cpdIconMarkAsRead = "icons/mark-as-read.svg";
|
|
192
198
|
export const cpdIconMarkAsUnread = "icons/mark-as-unread.svg";
|
|
193
199
|
export const cpdIconMarkThreadsAsRead = "icons/mark-threads-as-read.svg";
|
|
@@ -218,6 +224,10 @@ export const cpdIconPollsEnd = "icons/polls-end.svg";
|
|
|
218
224
|
export const cpdIconPolls = "icons/polls.svg";
|
|
219
225
|
export const cpdIconPopOut = "icons/pop-out.svg";
|
|
220
226
|
export const cpdIconPreferences = "icons/preferences.svg";
|
|
227
|
+
export const cpdIconPresenceOutline8X8 = "icons/presence-outline-8x8.svg";
|
|
228
|
+
export const cpdIconPresenceSolid8X8 = "icons/presence-solid-8x8.svg";
|
|
229
|
+
export const cpdIconPresenceStrikethrough8X8 =
|
|
230
|
+
"icons/presence-strikethrough-8x8.svg";
|
|
221
231
|
export const cpdIconPublic = "icons/public.svg";
|
|
222
232
|
export const cpdIconQrCode = "icons/qr-code.svg";
|
|
223
233
|
export const cpdIconQuote = "icons/quote.svg";
|
|
@@ -277,6 +287,7 @@ export const cpdIconVolumeOnSolid = "icons/volume-on-solid.svg";
|
|
|
277
287
|
export const cpdIconVolumeOn = "icons/volume-on.svg";
|
|
278
288
|
export const cpdIconWarning = "icons/warning.svg";
|
|
279
289
|
export const cpdIconWebBrowser = "icons/web-browser.svg";
|
|
290
|
+
export const cpdIconWindows = "icons/windows.svg";
|
|
280
291
|
export const cpdColorThemeBg = "#101317";
|
|
281
292
|
export const cpdColorGray100 = "#181a1f";
|
|
282
293
|
export const cpdColorGray200 = "#1d1f24";
|
|
@@ -83,6 +83,8 @@ export const cpdIconArrowLeft: string;
|
|
|
83
83
|
export const cpdIconArrowRight: string;
|
|
84
84
|
export const cpdIconArrowUpRight: string;
|
|
85
85
|
export const cpdIconArrowUp: string;
|
|
86
|
+
export const cpdIconAskToJoinSolid: string;
|
|
87
|
+
export const cpdIconAskToJoin: string;
|
|
86
88
|
export const cpdIconAttachment: string;
|
|
87
89
|
export const cpdIconBlock: string;
|
|
88
90
|
export const cpdIconBold: string;
|
|
@@ -124,6 +126,7 @@ export const cpdIconEmail: string;
|
|
|
124
126
|
export const cpdIconEndCall: string;
|
|
125
127
|
export const cpdIconError: string;
|
|
126
128
|
export const cpdIconExpand: string;
|
|
129
|
+
export const cpdIconExplore: string;
|
|
127
130
|
export const cpdIconExportArchive: string;
|
|
128
131
|
export const cpdIconExtensionsSolid: string;
|
|
129
132
|
export const cpdIconExtensions: string;
|
|
@@ -134,6 +137,7 @@ export const cpdIconFiles: string;
|
|
|
134
137
|
export const cpdIconFilter: string;
|
|
135
138
|
export const cpdIconForward: string;
|
|
136
139
|
export const cpdIconGrid: string;
|
|
140
|
+
export const cpdIconGroup: string;
|
|
137
141
|
export const cpdIconHelpSolid: string;
|
|
138
142
|
export const cpdIconHelp: string;
|
|
139
143
|
export const cpdIconHistory: string;
|
|
@@ -156,6 +160,7 @@ export const cpdIconKeyboard: string;
|
|
|
156
160
|
export const cpdIconLabs: string;
|
|
157
161
|
export const cpdIconLeave: string;
|
|
158
162
|
export const cpdIconLink: string;
|
|
163
|
+
export const cpdIconLinux: string;
|
|
159
164
|
export const cpdIconListBulleted: string;
|
|
160
165
|
export const cpdIconListNumbered: string;
|
|
161
166
|
export const cpdIconLocationNavigatorCentred: string;
|
|
@@ -165,6 +170,7 @@ export const cpdIconLocationPin: string;
|
|
|
165
170
|
export const cpdIconLockOff: string;
|
|
166
171
|
export const cpdIconLockSolid: string;
|
|
167
172
|
export const cpdIconLock: string;
|
|
173
|
+
export const cpdIconMac: string;
|
|
168
174
|
export const cpdIconMarkAsRead: string;
|
|
169
175
|
export const cpdIconMarkAsUnread: string;
|
|
170
176
|
export const cpdIconMarkThreadsAsRead: string;
|
|
@@ -195,6 +201,9 @@ export const cpdIconPollsEnd: string;
|
|
|
195
201
|
export const cpdIconPolls: string;
|
|
196
202
|
export const cpdIconPopOut: string;
|
|
197
203
|
export const cpdIconPreferences: string;
|
|
204
|
+
export const cpdIconPresenceOutline8X8: string;
|
|
205
|
+
export const cpdIconPresenceSolid8X8: string;
|
|
206
|
+
export const cpdIconPresenceStrikethrough8X8: string;
|
|
198
207
|
export const cpdIconPublic: string;
|
|
199
208
|
export const cpdIconQrCode: string;
|
|
200
209
|
export const cpdIconQuote: string;
|
|
@@ -253,6 +262,7 @@ export const cpdIconVolumeOnSolid: string;
|
|
|
253
262
|
export const cpdIconVolumeOn: string;
|
|
254
263
|
export const cpdIconWarning: string;
|
|
255
264
|
export const cpdIconWebBrowser: string;
|
|
265
|
+
export const cpdIconWindows: string;
|
|
256
266
|
export const cpdColorThemeBg: string;
|
|
257
267
|
export const cpdColorGray100: string;
|
|
258
268
|
export const cpdColorGray200: string;
|
|
@@ -105,6 +105,8 @@ export const cpdIconArrowLeft = "icons/arrow-left.svg";
|
|
|
105
105
|
export const cpdIconArrowRight = "icons/arrow-right.svg";
|
|
106
106
|
export const cpdIconArrowUpRight = "icons/arrow-up-right.svg";
|
|
107
107
|
export const cpdIconArrowUp = "icons/arrow-up.svg";
|
|
108
|
+
export const cpdIconAskToJoinSolid = "icons/ask-to-join-solid.svg";
|
|
109
|
+
export const cpdIconAskToJoin = "icons/ask-to-join.svg";
|
|
108
110
|
export const cpdIconAttachment = "icons/attachment.svg";
|
|
109
111
|
export const cpdIconBlock = "icons/block.svg";
|
|
110
112
|
export const cpdIconBold = "icons/bold.svg";
|
|
@@ -146,6 +148,7 @@ export const cpdIconEmail = "icons/email.svg";
|
|
|
146
148
|
export const cpdIconEndCall = "icons/end-call.svg";
|
|
147
149
|
export const cpdIconError = "icons/error.svg";
|
|
148
150
|
export const cpdIconExpand = "icons/expand.svg";
|
|
151
|
+
export const cpdIconExplore = "icons/explore.svg";
|
|
149
152
|
export const cpdIconExportArchive = "icons/export-archive.svg";
|
|
150
153
|
export const cpdIconExtensionsSolid = "icons/extensions-solid.svg";
|
|
151
154
|
export const cpdIconExtensions = "icons/extensions.svg";
|
|
@@ -156,6 +159,7 @@ export const cpdIconFiles = "icons/files.svg";
|
|
|
156
159
|
export const cpdIconFilter = "icons/filter.svg";
|
|
157
160
|
export const cpdIconForward = "icons/forward.svg";
|
|
158
161
|
export const cpdIconGrid = "icons/grid.svg";
|
|
162
|
+
export const cpdIconGroup = "icons/group.svg";
|
|
159
163
|
export const cpdIconHelpSolid = "icons/help-solid.svg";
|
|
160
164
|
export const cpdIconHelp = "icons/help.svg";
|
|
161
165
|
export const cpdIconHistory = "icons/history.svg";
|
|
@@ -178,6 +182,7 @@ export const cpdIconKeyboard = "icons/keyboard.svg";
|
|
|
178
182
|
export const cpdIconLabs = "icons/labs.svg";
|
|
179
183
|
export const cpdIconLeave = "icons/leave.svg";
|
|
180
184
|
export const cpdIconLink = "icons/link.svg";
|
|
185
|
+
export const cpdIconLinux = "icons/linux.svg";
|
|
181
186
|
export const cpdIconListBulleted = "icons/list-bulleted.svg";
|
|
182
187
|
export const cpdIconListNumbered = "icons/list-numbered.svg";
|
|
183
188
|
export const cpdIconLocationNavigatorCentred =
|
|
@@ -188,6 +193,7 @@ export const cpdIconLocationPin = "icons/location-pin.svg";
|
|
|
188
193
|
export const cpdIconLockOff = "icons/lock-off.svg";
|
|
189
194
|
export const cpdIconLockSolid = "icons/lock-solid.svg";
|
|
190
195
|
export const cpdIconLock = "icons/lock.svg";
|
|
196
|
+
export const cpdIconMac = "icons/mac.svg";
|
|
191
197
|
export const cpdIconMarkAsRead = "icons/mark-as-read.svg";
|
|
192
198
|
export const cpdIconMarkAsUnread = "icons/mark-as-unread.svg";
|
|
193
199
|
export const cpdIconMarkThreadsAsRead = "icons/mark-threads-as-read.svg";
|
|
@@ -218,6 +224,10 @@ export const cpdIconPollsEnd = "icons/polls-end.svg";
|
|
|
218
224
|
export const cpdIconPolls = "icons/polls.svg";
|
|
219
225
|
export const cpdIconPopOut = "icons/pop-out.svg";
|
|
220
226
|
export const cpdIconPreferences = "icons/preferences.svg";
|
|
227
|
+
export const cpdIconPresenceOutline8X8 = "icons/presence-outline-8x8.svg";
|
|
228
|
+
export const cpdIconPresenceSolid8X8 = "icons/presence-solid-8x8.svg";
|
|
229
|
+
export const cpdIconPresenceStrikethrough8X8 =
|
|
230
|
+
"icons/presence-strikethrough-8x8.svg";
|
|
221
231
|
export const cpdIconPublic = "icons/public.svg";
|
|
222
232
|
export const cpdIconQrCode = "icons/qr-code.svg";
|
|
223
233
|
export const cpdIconQuote = "icons/quote.svg";
|
|
@@ -277,6 +287,7 @@ export const cpdIconVolumeOnSolid = "icons/volume-on-solid.svg";
|
|
|
277
287
|
export const cpdIconVolumeOn = "icons/volume-on.svg";
|
|
278
288
|
export const cpdIconWarning = "icons/warning.svg";
|
|
279
289
|
export const cpdIconWebBrowser = "icons/web-browser.svg";
|
|
290
|
+
export const cpdIconWindows = "icons/windows.svg";
|
|
280
291
|
export const cpdColorThemeBg = "#ffffff";
|
|
281
292
|
export const cpdColorGray100 = "#fbfcfd";
|
|
282
293
|
export const cpdColorGray200 = "#f7f9fa";
|
|
@@ -83,6 +83,8 @@ export const cpdIconArrowLeft: string;
|
|
|
83
83
|
export const cpdIconArrowRight: string;
|
|
84
84
|
export const cpdIconArrowUpRight: string;
|
|
85
85
|
export const cpdIconArrowUp: string;
|
|
86
|
+
export const cpdIconAskToJoinSolid: string;
|
|
87
|
+
export const cpdIconAskToJoin: string;
|
|
86
88
|
export const cpdIconAttachment: string;
|
|
87
89
|
export const cpdIconBlock: string;
|
|
88
90
|
export const cpdIconBold: string;
|
|
@@ -124,6 +126,7 @@ export const cpdIconEmail: string;
|
|
|
124
126
|
export const cpdIconEndCall: string;
|
|
125
127
|
export const cpdIconError: string;
|
|
126
128
|
export const cpdIconExpand: string;
|
|
129
|
+
export const cpdIconExplore: string;
|
|
127
130
|
export const cpdIconExportArchive: string;
|
|
128
131
|
export const cpdIconExtensionsSolid: string;
|
|
129
132
|
export const cpdIconExtensions: string;
|
|
@@ -134,6 +137,7 @@ export const cpdIconFiles: string;
|
|
|
134
137
|
export const cpdIconFilter: string;
|
|
135
138
|
export const cpdIconForward: string;
|
|
136
139
|
export const cpdIconGrid: string;
|
|
140
|
+
export const cpdIconGroup: string;
|
|
137
141
|
export const cpdIconHelpSolid: string;
|
|
138
142
|
export const cpdIconHelp: string;
|
|
139
143
|
export const cpdIconHistory: string;
|
|
@@ -156,6 +160,7 @@ export const cpdIconKeyboard: string;
|
|
|
156
160
|
export const cpdIconLabs: string;
|
|
157
161
|
export const cpdIconLeave: string;
|
|
158
162
|
export const cpdIconLink: string;
|
|
163
|
+
export const cpdIconLinux: string;
|
|
159
164
|
export const cpdIconListBulleted: string;
|
|
160
165
|
export const cpdIconListNumbered: string;
|
|
161
166
|
export const cpdIconLocationNavigatorCentred: string;
|
|
@@ -165,6 +170,7 @@ export const cpdIconLocationPin: string;
|
|
|
165
170
|
export const cpdIconLockOff: string;
|
|
166
171
|
export const cpdIconLockSolid: string;
|
|
167
172
|
export const cpdIconLock: string;
|
|
173
|
+
export const cpdIconMac: string;
|
|
168
174
|
export const cpdIconMarkAsRead: string;
|
|
169
175
|
export const cpdIconMarkAsUnread: string;
|
|
170
176
|
export const cpdIconMarkThreadsAsRead: string;
|
|
@@ -195,6 +201,9 @@ export const cpdIconPollsEnd: string;
|
|
|
195
201
|
export const cpdIconPolls: string;
|
|
196
202
|
export const cpdIconPopOut: string;
|
|
197
203
|
export const cpdIconPreferences: string;
|
|
204
|
+
export const cpdIconPresenceOutline8X8: string;
|
|
205
|
+
export const cpdIconPresenceSolid8X8: string;
|
|
206
|
+
export const cpdIconPresenceStrikethrough8X8: string;
|
|
198
207
|
export const cpdIconPublic: string;
|
|
199
208
|
export const cpdIconQrCode: string;
|
|
200
209
|
export const cpdIconQuote: string;
|
|
@@ -253,6 +262,7 @@ export const cpdIconVolumeOnSolid: string;
|
|
|
253
262
|
export const cpdIconVolumeOn: string;
|
|
254
263
|
export const cpdIconWarning: string;
|
|
255
264
|
export const cpdIconWebBrowser: string;
|
|
265
|
+
export const cpdIconWindows: string;
|
|
256
266
|
export const cpdColorThemeBg: string;
|
|
257
267
|
export const cpdColorGray100: string;
|
|
258
268
|
export const cpdColorGray200: string;
|