@loomhq/lens 12.17.1 → 12.19.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/README.md +39 -3
- package/dist/cjs/icons/index.js +224 -204
- package/dist/cjs/icons/index.js.map +4 -4
- package/dist/cjs/icons/playlist.js +52 -0
- package/dist/cjs/icons/playlist.js.map +7 -0
- package/dist/cjs/index.js +1075 -960
- package/dist/cjs/index.js.map +4 -4
- package/dist/esm/icons/chunk-DNFVTET2.js +23 -0
- package/dist/esm/icons/chunk-DNFVTET2.js.map +7 -0
- package/dist/esm/icons/index.js +33 -29
- package/dist/esm/icons/playlist.js +8 -0
- package/dist/esm/icons/playlist.js.map +7 -0
- package/dist/esm/index.js +1001 -886
- package/dist/esm/index.js.map +4 -4
- package/dist/types/app/useTheme.d.ts.map +1 -1
- package/dist/types/icons/index.d.ts +1 -0
- package/dist/types/icons/index.d.ts.map +1 -1
- package/dist/types/icons/playlist.d.ts +3 -0
- package/dist/types/icons/playlist.d.ts.map +1 -0
- package/dist/types/shared-docs/color-box.d.ts +1 -1
- package/dist/types/shared-docs/color-box.d.ts.map +1 -1
- package/dist/types/shared-docs/theme-colors.d.ts.map +1 -1
- package/dist/types/src/colors.d.ts.map +1 -1
- package/dist/types/src/components/avatar/avatar.d.ts +3 -1
- package/dist/types/src/components/avatar/avatar.d.ts.map +1 -1
- package/dist/types/src/components/base-styles/base-styles.d.ts.map +1 -1
- package/dist/types/src/components/checkbox/checkbox.d.ts +3 -0
- package/dist/types/src/components/checkbox/checkbox.d.ts.map +1 -1
- package/dist/types/src/components/icon/available-icons/index.d.ts +1 -0
- package/dist/types/src/components/icon/available-icons/index.d.ts.map +1 -1
- package/dist/types/src/components/icon/available-icons/playlist.d.ts +3 -0
- package/dist/types/src/components/icon/available-icons/playlist.d.ts.map +1 -0
- package/dist/types/src/components/menu/menu.d.ts.map +1 -1
- package/dist/types/src/components/modal/modal.d.ts.map +1 -1
- package/dist/types/src/components/pill/pill.d.ts.map +1 -1
- package/dist/types/src/components/popover/popover.d.ts +2 -1
- package/dist/types/src/components/popover/popover.d.ts.map +1 -1
- package/dist/types/src/components/tabs/tabs.d.ts.map +1 -1
- package/dist/types/src/components/text-button/text-button.d.ts.map +1 -1
- package/dist/types/src/components/tooltip/tooltip.d.ts.map +1 -1
- package/dist/types/src/components/typeahead/typeahead.d.ts.map +1 -1
- package/dist/types/src/css-variables/index.d.ts.map +1 -1
- package/dist/types/src/utilities/index.d.ts +1 -0
- package/dist/types/src/utilities/index.d.ts.map +1 -1
- package/dist/types/src/utilities/style-provider.d.ts +92 -0
- package/dist/types/src/utilities/style-provider.d.ts.map +1 -0
- package/package.json +9 -8
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// src/components/icon/available-icons/playlist.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
function SvgPlaylist() {
|
|
4
|
+
return /* @__PURE__ */ React.createElement("span", { "aria-hidden": true, "data-testid": "ads-refreshed-icon" }, /* @__PURE__ */ React.createElement("svg", { fill: "none", viewBox: "0 0 16 16" }, /* @__PURE__ */ React.createElement(
|
|
5
|
+
"path",
|
|
6
|
+
{
|
|
7
|
+
fillRule: "evenodd",
|
|
8
|
+
fill: "currentcolor",
|
|
9
|
+
d: "M8.124 7.351a.75.75 0 0 1 .748-.003l3.5 2a.75.75 0 0 1 0 1.303l-3.5 2A.75.75 0 0 1 7.75 12V8a.75.75 0 0 1 .374-.649"
|
|
10
|
+
}
|
|
11
|
+
), /* @__PURE__ */ React.createElement(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
fill: "currentcolor",
|
|
15
|
+
d: "M4 6.624A2.626 2.626 0 0 1 6.625 4h4.052l-.34-1.6a1.125 1.125 0 0 0-1.334-.866L2.4 2.937a1.124 1.124 0 0 0-.866 1.334l1.403 6.602c.11.517.558.873 1.063.889zm1.5 6.75c0 .621.504 1.125 1.125 1.125h6.75c.621 0 1.125-.503 1.125-1.125v-6.75c0-.62-.504-1.125-1.125-1.125h-6.75c-.621 0-1.125.504-1.125 1.125zm10.5 0A2.625 2.625 0 0 1 13.375 16h-6.75A2.625 2.625 0 0 1 4 13.374v-.112a2.624 2.624 0 0 1-2.53-2.077L.065 4.582A2.626 2.626 0 0 1 2.09 1.47L8.69.066a2.626 2.626 0 0 1 3.114 2.022L12.211 4h1.164A2.625 2.625 0 0 1 16 6.624z"
|
|
16
|
+
}
|
|
17
|
+
)));
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export {
|
|
21
|
+
SvgPlaylist
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=chunk-DNFVTET2.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/components/icon/available-icons/playlist.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\n\n// TODO update ADS icons to get new icons\n// import PlaylistIcon from '@atlaskit/icon-lab/core/playlist';\n\nexport function SvgPlaylist() {\n return (\n <span aria-hidden={true} data-testid=\"ads-refreshed-icon\">\n <svg fill=\"none\" viewBox=\"0 0 16 16\">\n <path\n fillRule=\"evenodd\"\n fill=\"currentcolor\"\n d=\"M8.124 7.351a.75.75 0 0 1 .748-.003l3.5 2a.75.75 0 0 1 0 1.303l-3.5 2A.75.75 0 0 1 7.75 12V8a.75.75 0 0 1 .374-.649\"\n />\n <path\n fill=\"currentcolor\"\n d=\"M4 6.624A2.626 2.626 0 0 1 6.625 4h4.052l-.34-1.6a1.125 1.125 0 0 0-1.334-.866L2.4 2.937a1.124 1.124 0 0 0-.866 1.334l1.403 6.602c.11.517.558.873 1.063.889zm1.5 6.75c0 .621.504 1.125 1.125 1.125h6.75c.621 0 1.125-.503 1.125-1.125v-6.75c0-.62-.504-1.125-1.125-1.125h-6.75c-.621 0-1.125.504-1.125 1.125zm10.5 0A2.625 2.625 0 0 1 13.375 16h-6.75A2.625 2.625 0 0 1 4 13.374v-.112a2.624 2.624 0 0 1-2.53-2.077L.065 4.582A2.626 2.626 0 0 1 2.09 1.47L8.69.066a2.626 2.626 0 0 1 3.114 2.022L12.211 4h1.164A2.625 2.625 0 0 1 16 6.624z\"\n />\n </svg>\n </span>\n );\n}\n"],
|
|
5
|
+
"mappings": ";AAAA,YAAY,WAAW;AAKhB,SAAS,cAAc;AAC5B,SACE,oCAAC,UAAK,eAAa,MAAM,eAAY,wBACnC,oCAAC,SAAI,MAAK,QAAO,SAAQ,eACvB;AAAA,IAAC;AAAA;AAAA,MACC,UAAS;AAAA,MACT,MAAK;AAAA,MACL,GAAE;AAAA;AAAA,EACJ,GACA;AAAA,IAAC;AAAA;AAAA,MACC,MAAK;AAAA,MACL,GAAE;AAAA;AAAA,EACJ,CACF,CACF;AAEJ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/dist/esm/icons/index.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import {
|
|
2
|
+
SvgXLogo
|
|
3
|
+
} from "./chunk-FVJZXPRX.js";
|
|
1
4
|
import {
|
|
2
5
|
SvgZapOutline
|
|
3
6
|
} from "./chunk-OOLVJGG2.js";
|
|
@@ -13,6 +16,9 @@ import {
|
|
|
13
16
|
import {
|
|
14
17
|
SvgZoomOut
|
|
15
18
|
} from "./chunk-M35LKLMJ.js";
|
|
19
|
+
import {
|
|
20
|
+
SvgWatchLaterRemove
|
|
21
|
+
} from "./chunk-VSKPW4OH.js";
|
|
16
22
|
import {
|
|
17
23
|
SvgWatchLater
|
|
18
24
|
} from "./chunk-GOYURRTO.js";
|
|
@@ -35,8 +41,8 @@ import {
|
|
|
35
41
|
SvgXCircle
|
|
36
42
|
} from "./chunk-QHLM45W4.js";
|
|
37
43
|
import {
|
|
38
|
-
|
|
39
|
-
} from "./chunk-
|
|
44
|
+
SvgVolumeOff
|
|
45
|
+
} from "./chunk-3XJSUGC2.js";
|
|
40
46
|
import {
|
|
41
47
|
SvgVolumeUp
|
|
42
48
|
} from "./chunk-T7EC24QS.js";
|
|
@@ -59,8 +65,8 @@ import {
|
|
|
59
65
|
SvgWatchLaterAdded
|
|
60
66
|
} from "./chunk-BFPFVG5V.js";
|
|
61
67
|
import {
|
|
62
|
-
|
|
63
|
-
} from "./chunk-
|
|
68
|
+
SvgVideoCam
|
|
69
|
+
} from "./chunk-3IFD2STQ.js";
|
|
64
70
|
import {
|
|
65
71
|
SvgVideoLibrary
|
|
66
72
|
} from "./chunk-VDARRVZ2.js";
|
|
@@ -83,8 +89,8 @@ import {
|
|
|
83
89
|
SvgVolumeMute
|
|
84
90
|
} from "./chunk-GO45IYL5.js";
|
|
85
91
|
import {
|
|
86
|
-
|
|
87
|
-
} from "./chunk-
|
|
92
|
+
SvgUndo
|
|
93
|
+
} from "./chunk-OSEHZ2FL.js";
|
|
88
94
|
import {
|
|
89
95
|
SvgUpload
|
|
90
96
|
} from "./chunk-2GNR5PZB.js";
|
|
@@ -107,8 +113,8 @@ import {
|
|
|
107
113
|
SvgVerticalAlignBottom
|
|
108
114
|
} from "./chunk-PZEGCHU3.js";
|
|
109
115
|
import {
|
|
110
|
-
|
|
111
|
-
} from "./chunk-
|
|
116
|
+
SvgTranscript
|
|
117
|
+
} from "./chunk-2JPBEH6W.js";
|
|
112
118
|
import {
|
|
113
119
|
SvgTrashForever
|
|
114
120
|
} from "./chunk-4PKG7WGQ.js";
|
|
@@ -131,8 +137,8 @@ import {
|
|
|
131
137
|
SvgUndoAlt
|
|
132
138
|
} from "./chunk-EIKAXIVU.js";
|
|
133
139
|
import {
|
|
134
|
-
|
|
135
|
-
} from "./chunk-
|
|
140
|
+
SvgTeamworkGraph
|
|
141
|
+
} from "./chunk-3VACO3JU.js";
|
|
136
142
|
import {
|
|
137
143
|
SvgTextRephrase
|
|
138
144
|
} from "./chunk-JPXEDTZQ.js";
|
|
@@ -155,8 +161,8 @@ import {
|
|
|
155
161
|
SvgTouchApp
|
|
156
162
|
} from "./chunk-27IFITZP.js";
|
|
157
163
|
import {
|
|
158
|
-
|
|
159
|
-
} from "./chunk-
|
|
164
|
+
SvgStar
|
|
165
|
+
} from "./chunk-7AB2BP5I.js";
|
|
160
166
|
import {
|
|
161
167
|
SvgStop
|
|
162
168
|
} from "./chunk-OLTO5ACV.js";
|
|
@@ -179,8 +185,8 @@ import {
|
|
|
179
185
|
SvgTeamworkAgentSmall
|
|
180
186
|
} from "./chunk-RXQPIML2.js";
|
|
181
187
|
import {
|
|
182
|
-
|
|
183
|
-
} from "./chunk-
|
|
188
|
+
SvgSpeedFast
|
|
189
|
+
} from "./chunk-2FKO2VHS.js";
|
|
184
190
|
import {
|
|
185
191
|
SvgSpeedMedium
|
|
186
192
|
} from "./chunk-VQTS3NUI.js";
|
|
@@ -203,8 +209,8 @@ import {
|
|
|
203
209
|
SvgStarOutline
|
|
204
210
|
} from "./chunk-DFYMBHZP.js";
|
|
205
211
|
import {
|
|
206
|
-
|
|
207
|
-
} from "./chunk-
|
|
212
|
+
SvgSilenceRemoval
|
|
213
|
+
} from "./chunk-UHAMA5YO.js";
|
|
208
214
|
import {
|
|
209
215
|
SvgSkipBack
|
|
210
216
|
} from "./chunk-4RZH26BD.js";
|
|
@@ -227,8 +233,8 @@ import {
|
|
|
227
233
|
SvgSparkle
|
|
228
234
|
} from "./chunk-HE25OX6G.js";
|
|
229
235
|
import {
|
|
230
|
-
|
|
231
|
-
} from "./chunk-
|
|
236
|
+
SvgScreenCam
|
|
237
|
+
} from "./chunk-WCXLT4Z4.js";
|
|
232
238
|
import {
|
|
233
239
|
SvgSearch
|
|
234
240
|
} from "./chunk-47EYZJ4Q.js";
|
|
@@ -251,8 +257,8 @@ import {
|
|
|
251
257
|
SvgShowChart
|
|
252
258
|
} from "./chunk-KXE7JBXF.js";
|
|
253
259
|
import {
|
|
254
|
-
|
|
255
|
-
} from "./chunk-
|
|
260
|
+
SvgRewind
|
|
261
|
+
} from "./chunk-TVTTMZZ4.js";
|
|
256
262
|
import {
|
|
257
263
|
SvgRotateLeft
|
|
258
264
|
} from "./chunk-B5XIBGIT.js";
|
|
@@ -275,8 +281,8 @@ import {
|
|
|
275
281
|
SvgScissors
|
|
276
282
|
} from "./chunk-NR4EYJPQ.js";
|
|
277
283
|
import {
|
|
278
|
-
|
|
279
|
-
} from "./chunk-
|
|
284
|
+
SvgRemoveCircleOutline
|
|
285
|
+
} from "./chunk-567QMDZW.js";
|
|
280
286
|
import {
|
|
281
287
|
SvgRemoveRedEye
|
|
282
288
|
} from "./chunk-XYX4BKNG.js";
|
|
@@ -299,8 +305,8 @@ import {
|
|
|
299
305
|
SvgReply
|
|
300
306
|
} from "./chunk-QL5ZBOCY.js";
|
|
301
307
|
import {
|
|
302
|
-
|
|
303
|
-
} from "./chunk-
|
|
308
|
+
SvgPublicOn
|
|
309
|
+
} from "./chunk-4FI6A6B7.js";
|
|
304
310
|
import {
|
|
305
311
|
SvgPublicon
|
|
306
312
|
} from "./chunk-FGIKZZ4P.js";
|
|
@@ -323,8 +329,8 @@ import {
|
|
|
323
329
|
SvgRefresh
|
|
324
330
|
} from "./chunk-VUTVG733.js";
|
|
325
331
|
import {
|
|
326
|
-
|
|
327
|
-
} from "./chunk-
|
|
332
|
+
SvgPlaylist
|
|
333
|
+
} from "./chunk-DNFVTET2.js";
|
|
328
334
|
import {
|
|
329
335
|
SvgPlusCircle
|
|
330
336
|
} from "./chunk-2WM7CTYF.js";
|
|
@@ -343,9 +349,6 @@ import {
|
|
|
343
349
|
import {
|
|
344
350
|
SvgPublicOff
|
|
345
351
|
} from "./chunk-WIDBKSIN.js";
|
|
346
|
-
import {
|
|
347
|
-
SvgPublicOn
|
|
348
|
-
} from "./chunk-4FI6A6B7.js";
|
|
349
352
|
import {
|
|
350
353
|
SvgPictureInPicture
|
|
351
354
|
} from "./chunk-GZUPKYEY.js";
|
|
@@ -1256,6 +1259,7 @@ export {
|
|
|
1256
1259
|
SvgPlayArrow,
|
|
1257
1260
|
SvgPlayCircle,
|
|
1258
1261
|
SvgPlayCircleFilled,
|
|
1262
|
+
SvgPlaylist,
|
|
1259
1263
|
SvgPlusCircle,
|
|
1260
1264
|
SvgPower,
|
|
1261
1265
|
SvgPresent,
|