@aristobyte-ui/presets 1.0.68 → 1.0.72
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/dist/index.js +85 -931
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +85 -931
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -14
- package/dist/index.css +0 -218
- package/dist/index.css.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import "./index.css";
|
|
3
2
|
"use strict";
|
|
4
3
|
var __create = Object.create;
|
|
5
4
|
var __defProp = Object.defineProperty;
|
|
@@ -106,1120 +105,460 @@ module.exports = __toCommonJS(index_exports);
|
|
|
106
105
|
|
|
107
106
|
// components/ActionButtons/index.tsx
|
|
108
107
|
var React = __toESM(require("react"));
|
|
109
|
-
|
|
110
|
-
// components/ActionButtons/ActionButtons.module.scss
|
|
111
|
-
var ActionButtons_module_default = {};
|
|
112
|
-
|
|
113
|
-
// components/ActionButtons/index.tsx
|
|
114
108
|
var import_react = require("react");
|
|
115
109
|
var ActionButtons = ({ ...props }) => {
|
|
116
110
|
const uniqId = React.useId();
|
|
117
|
-
return /* @__PURE__ */ (0, import_react.createElement)(
|
|
118
|
-
"div",
|
|
119
|
-
{
|
|
120
|
-
...props,
|
|
121
|
-
key: uniqId,
|
|
122
|
-
className: `action-buttons ${ActionButtons_module_default["action-buttons"]}`
|
|
123
|
-
}
|
|
124
|
-
);
|
|
111
|
+
return /* @__PURE__ */ (0, import_react.createElement)("div", { ...props, key: uniqId, className: "action-buttons" });
|
|
125
112
|
};
|
|
126
113
|
|
|
127
114
|
// components/ActivityFeed/index.tsx
|
|
128
115
|
var React2 = __toESM(require("react"));
|
|
129
|
-
|
|
130
|
-
// components/ActivityFeed/ActivityFeed.module.scss
|
|
131
|
-
var ActivityFeed_module_default = {};
|
|
132
|
-
|
|
133
|
-
// components/ActivityFeed/index.tsx
|
|
134
116
|
var import_react2 = require("react");
|
|
135
117
|
var ActivityFeed = ({ ...props }) => {
|
|
136
118
|
const uniqId = React2.useId();
|
|
137
|
-
return /* @__PURE__ */ (0, import_react2.createElement)(
|
|
138
|
-
"div",
|
|
139
|
-
{
|
|
140
|
-
...props,
|
|
141
|
-
key: uniqId,
|
|
142
|
-
className: `activity-feed ${ActivityFeed_module_default["activity-feed"]}`
|
|
143
|
-
}
|
|
144
|
-
);
|
|
119
|
+
return /* @__PURE__ */ (0, import_react2.createElement)("div", { ...props, key: uniqId, className: "activity-feed" });
|
|
145
120
|
};
|
|
146
121
|
|
|
147
122
|
// components/AIAssistant/index.tsx
|
|
148
123
|
var React3 = __toESM(require("react"));
|
|
149
|
-
|
|
150
|
-
// components/AIAssistant/AIAssistant.module.scss
|
|
151
|
-
var AIAssistant_module_default = {};
|
|
152
|
-
|
|
153
|
-
// components/AIAssistant/index.tsx
|
|
154
124
|
var import_react3 = require("react");
|
|
155
125
|
var AIAssistant = ({ ...props }) => {
|
|
156
126
|
const uniqId = React3.useId();
|
|
157
|
-
return /* @__PURE__ */ (0, import_react3.createElement)(
|
|
158
|
-
"div",
|
|
159
|
-
{
|
|
160
|
-
...props,
|
|
161
|
-
key: uniqId,
|
|
162
|
-
className: `ai-assistant ${AIAssistant_module_default["ai-assistant"]}`
|
|
163
|
-
}
|
|
164
|
-
);
|
|
127
|
+
return /* @__PURE__ */ (0, import_react3.createElement)("div", { ...props, key: uniqId, className: "ai-assistant" });
|
|
165
128
|
};
|
|
166
129
|
|
|
167
130
|
// components/AnalyticsDashboard/index.tsx
|
|
168
131
|
var React4 = __toESM(require("react"));
|
|
169
|
-
|
|
170
|
-
// components/AnalyticsDashboard/AnalyticsDashboard.module.scss
|
|
171
|
-
var AnalyticsDashboard_module_default = {};
|
|
172
|
-
|
|
173
|
-
// components/AnalyticsDashboard/index.tsx
|
|
174
132
|
var import_react4 = require("react");
|
|
175
133
|
var AnalyticsDashboard = ({
|
|
176
134
|
...props
|
|
177
135
|
}) => {
|
|
178
136
|
const uniqId = React4.useId();
|
|
179
|
-
return /* @__PURE__ */ (0, import_react4.createElement)(
|
|
180
|
-
"div",
|
|
181
|
-
{
|
|
182
|
-
...props,
|
|
183
|
-
key: uniqId,
|
|
184
|
-
className: `analytics-dashboard ${AnalyticsDashboard_module_default["analytics-dashboard"]}`
|
|
185
|
-
}
|
|
186
|
-
);
|
|
137
|
+
return /* @__PURE__ */ (0, import_react4.createElement)("div", { ...props, key: uniqId, className: "analytics-dashboard" });
|
|
187
138
|
};
|
|
188
139
|
|
|
189
140
|
// components/BudgetTracker/index.tsx
|
|
190
141
|
var React5 = __toESM(require("react"));
|
|
191
|
-
|
|
192
|
-
// components/BudgetTracker/BudgetTracker.module.scss
|
|
193
|
-
var BudgetTracker_module_default = {};
|
|
194
|
-
|
|
195
|
-
// components/BudgetTracker/index.tsx
|
|
196
142
|
var import_react5 = require("react");
|
|
197
143
|
var BudgetTracker = ({ ...props }) => {
|
|
198
144
|
const uniqId = React5.useId();
|
|
199
|
-
return /* @__PURE__ */ (0, import_react5.createElement)(
|
|
200
|
-
"div",
|
|
201
|
-
{
|
|
202
|
-
...props,
|
|
203
|
-
key: uniqId,
|
|
204
|
-
className: `budget-tracker ${BudgetTracker_module_default["budget-tracker"]}`
|
|
205
|
-
}
|
|
206
|
-
);
|
|
145
|
+
return /* @__PURE__ */ (0, import_react5.createElement)("div", { ...props, key: uniqId, className: "budget-tracker" });
|
|
207
146
|
};
|
|
208
147
|
|
|
209
148
|
// components/CalendarWidget/index.tsx
|
|
210
149
|
var React6 = __toESM(require("react"));
|
|
211
|
-
|
|
212
|
-
// components/CalendarWidget/CalendarWidget.module.scss
|
|
213
|
-
var CalendarWidget_module_default = {};
|
|
214
|
-
|
|
215
|
-
// components/CalendarWidget/index.tsx
|
|
216
150
|
var import_react6 = require("react");
|
|
217
151
|
var CalendarWidget = ({ ...props }) => {
|
|
218
152
|
const uniqId = React6.useId();
|
|
219
|
-
return /* @__PURE__ */ (0, import_react6.createElement)(
|
|
220
|
-
"div",
|
|
221
|
-
{
|
|
222
|
-
...props,
|
|
223
|
-
key: uniqId,
|
|
224
|
-
className: `calendar-widget ${CalendarWidget_module_default["calendar-widget"]}`
|
|
225
|
-
}
|
|
226
|
-
);
|
|
153
|
+
return /* @__PURE__ */ (0, import_react6.createElement)("div", { ...props, key: uniqId, className: "calendar-widget" });
|
|
227
154
|
};
|
|
228
155
|
|
|
229
156
|
// components/ChatMessages/index.tsx
|
|
230
157
|
var React7 = __toESM(require("react"));
|
|
231
|
-
|
|
232
|
-
// components/ChatMessages/ChatMessages.module.scss
|
|
233
|
-
var ChatMessages_module_default = {};
|
|
234
|
-
|
|
235
|
-
// components/ChatMessages/index.tsx
|
|
236
158
|
var import_react7 = require("react");
|
|
237
159
|
var ChatMessages = ({ ...props }) => {
|
|
238
160
|
const uniqId = React7.useId();
|
|
239
|
-
return /* @__PURE__ */ (0, import_react7.createElement)(
|
|
240
|
-
"div",
|
|
241
|
-
{
|
|
242
|
-
...props,
|
|
243
|
-
key: uniqId,
|
|
244
|
-
className: `chat-messages ${ChatMessages_module_default["chat-messages"]}`
|
|
245
|
-
}
|
|
246
|
-
);
|
|
161
|
+
return /* @__PURE__ */ (0, import_react7.createElement)("div", { ...props, key: uniqId, className: "chat-messages" });
|
|
247
162
|
};
|
|
248
163
|
|
|
249
164
|
// components/CloudStorage/index.tsx
|
|
250
165
|
var React8 = __toESM(require("react"));
|
|
251
|
-
|
|
252
|
-
// components/CloudStorage/CloudStorage.module.scss
|
|
253
|
-
var CloudStorage_module_default = {};
|
|
254
|
-
|
|
255
|
-
// components/CloudStorage/index.tsx
|
|
256
166
|
var import_react8 = require("react");
|
|
257
167
|
var CloudStorage = ({ ...props }) => {
|
|
258
168
|
const uniqId = React8.useId();
|
|
259
|
-
return /* @__PURE__ */ (0, import_react8.createElement)(
|
|
260
|
-
"div",
|
|
261
|
-
{
|
|
262
|
-
...props,
|
|
263
|
-
key: uniqId,
|
|
264
|
-
className: `cloud-storage ${CloudStorage_module_default["cloud-storage"]}`
|
|
265
|
-
}
|
|
266
|
-
);
|
|
169
|
+
return /* @__PURE__ */ (0, import_react8.createElement)("div", { ...props, key: uniqId, className: "cloud-storage" });
|
|
267
170
|
};
|
|
268
171
|
|
|
269
172
|
// components/CodeEditor/index.tsx
|
|
270
173
|
var React9 = __toESM(require("react"));
|
|
271
|
-
|
|
272
|
-
// components/CodeEditor/CodeEditor.module.scss
|
|
273
|
-
var CodeEditor_module_default = {};
|
|
274
|
-
|
|
275
|
-
// components/CodeEditor/index.tsx
|
|
276
174
|
var import_react9 = require("react");
|
|
277
175
|
var CodeEditor = ({ ...props }) => {
|
|
278
176
|
const uniqId = React9.useId();
|
|
279
|
-
return /* @__PURE__ */ (0, import_react9.createElement)(
|
|
280
|
-
"div",
|
|
281
|
-
{
|
|
282
|
-
...props,
|
|
283
|
-
key: uniqId,
|
|
284
|
-
className: `code-editor ${CodeEditor_module_default["code-editor"]}`
|
|
285
|
-
}
|
|
286
|
-
);
|
|
177
|
+
return /* @__PURE__ */ (0, import_react9.createElement)("div", { ...props, key: uniqId, className: "code-editor" });
|
|
287
178
|
};
|
|
288
179
|
|
|
289
180
|
// components/CodeStats/index.tsx
|
|
290
181
|
var React10 = __toESM(require("react"));
|
|
291
|
-
|
|
292
|
-
// components/CodeStats/CodeStats.module.scss
|
|
293
|
-
var CodeStats_module_default = {};
|
|
294
|
-
|
|
295
|
-
// components/CodeStats/index.tsx
|
|
296
182
|
var import_react10 = require("react");
|
|
297
183
|
var CodeStats = ({ ...props }) => {
|
|
298
184
|
const uniqId = React10.useId();
|
|
299
|
-
return /* @__PURE__ */ (0, import_react10.createElement)(
|
|
300
|
-
"div",
|
|
301
|
-
{
|
|
302
|
-
...props,
|
|
303
|
-
key: uniqId,
|
|
304
|
-
className: `code-stats ${CodeStats_module_default["code-stats"]}`
|
|
305
|
-
}
|
|
306
|
-
);
|
|
185
|
+
return /* @__PURE__ */ (0, import_react10.createElement)("div", { ...props, key: uniqId, className: "code-stats" });
|
|
307
186
|
};
|
|
308
187
|
|
|
309
188
|
// components/ColorPaletteWidget/index.tsx
|
|
310
189
|
var React11 = __toESM(require("react"));
|
|
311
|
-
|
|
312
|
-
// components/ColorPaletteWidget/ColorPaletteWidget.module.scss
|
|
313
|
-
var ColorPaletteWidget_module_default = {};
|
|
314
|
-
|
|
315
|
-
// components/ColorPaletteWidget/index.tsx
|
|
316
190
|
var import_react11 = require("react");
|
|
317
191
|
var ColorPaletteWidget = ({
|
|
318
192
|
...props
|
|
319
193
|
}) => {
|
|
320
194
|
const uniqId = React11.useId();
|
|
321
|
-
return /* @__PURE__ */ (0, import_react11.createElement)(
|
|
322
|
-
"div",
|
|
323
|
-
{
|
|
324
|
-
...props,
|
|
325
|
-
key: uniqId,
|
|
326
|
-
className: `color-palette-widget ${ColorPaletteWidget_module_default["color-palette-widget"]}`
|
|
327
|
-
}
|
|
328
|
-
);
|
|
195
|
+
return /* @__PURE__ */ (0, import_react11.createElement)("div", { ...props, key: uniqId, className: "color-palette-widget" });
|
|
329
196
|
};
|
|
330
197
|
|
|
331
198
|
// components/ContactCard/index.tsx
|
|
332
199
|
var React12 = __toESM(require("react"));
|
|
333
|
-
|
|
334
|
-
// components/ContactCard/ContactCard.module.scss
|
|
335
|
-
var ContactCard_module_default = {};
|
|
336
|
-
|
|
337
|
-
// components/ContactCard/index.tsx
|
|
338
200
|
var import_react12 = require("react");
|
|
339
201
|
var ContactCard = ({ ...props }) => {
|
|
340
202
|
const uniqId = React12.useId();
|
|
341
|
-
return /* @__PURE__ */ (0, import_react12.createElement)(
|
|
342
|
-
"div",
|
|
343
|
-
{
|
|
344
|
-
...props,
|
|
345
|
-
key: uniqId,
|
|
346
|
-
className: `contact-card ${ContactCard_module_default["contact-card"]}`
|
|
347
|
-
}
|
|
348
|
-
);
|
|
203
|
+
return /* @__PURE__ */ (0, import_react12.createElement)("div", { ...props, key: uniqId, className: "contact-card" });
|
|
349
204
|
};
|
|
350
205
|
|
|
351
206
|
// components/CryptocurrencyWidget/index.tsx
|
|
352
207
|
var React13 = __toESM(require("react"));
|
|
353
|
-
|
|
354
|
-
// components/CryptocurrencyWidget/CryptocurrencyWidget.module.scss
|
|
355
|
-
var CryptocurrencyWidget_module_default = {};
|
|
356
|
-
|
|
357
|
-
// components/CryptocurrencyWidget/index.tsx
|
|
358
208
|
var import_react13 = require("react");
|
|
359
209
|
var CryptocurrencyWidget = ({
|
|
360
210
|
...props
|
|
361
211
|
}) => {
|
|
362
212
|
const uniqId = React13.useId();
|
|
363
|
-
return /* @__PURE__ */ (0, import_react13.createElement)(
|
|
364
|
-
"div",
|
|
365
|
-
{
|
|
366
|
-
...props,
|
|
367
|
-
key: uniqId,
|
|
368
|
-
className: `cryptocurrency-widget ${CryptocurrencyWidget_module_default["cryptocurrency-widget"]}`
|
|
369
|
-
}
|
|
370
|
-
);
|
|
213
|
+
return /* @__PURE__ */ (0, import_react13.createElement)("div", { ...props, key: uniqId, className: "cryptocurrency-widget" });
|
|
371
214
|
};
|
|
372
215
|
|
|
373
216
|
// components/DatabaseWidget/index.tsx
|
|
374
217
|
var React14 = __toESM(require("react"));
|
|
375
|
-
|
|
376
|
-
// components/DatabaseWidget/DatabaseWidget.module.scss
|
|
377
|
-
var DatabaseWidget_module_default = {};
|
|
378
|
-
|
|
379
|
-
// components/DatabaseWidget/index.tsx
|
|
380
218
|
var import_react14 = require("react");
|
|
381
219
|
var DatabaseWidget = ({ ...props }) => {
|
|
382
220
|
const uniqId = React14.useId();
|
|
383
|
-
return /* @__PURE__ */ (0, import_react14.createElement)(
|
|
384
|
-
"div",
|
|
385
|
-
{
|
|
386
|
-
...props,
|
|
387
|
-
key: uniqId,
|
|
388
|
-
className: `database-widget ${DatabaseWidget_module_default["database-widget"]}`
|
|
389
|
-
}
|
|
390
|
-
);
|
|
221
|
+
return /* @__PURE__ */ (0, import_react14.createElement)("div", { ...props, key: uniqId, className: "database-widget" });
|
|
391
222
|
};
|
|
392
223
|
|
|
393
224
|
// components/DesignSystem/index.tsx
|
|
394
225
|
var React15 = __toESM(require("react"));
|
|
395
|
-
|
|
396
|
-
// components/DesignSystem/DesignSystem.module.scss
|
|
397
|
-
var DesignSystem_module_default = {};
|
|
398
|
-
|
|
399
|
-
// components/DesignSystem/index.tsx
|
|
400
226
|
var import_react15 = require("react");
|
|
401
227
|
var DesignSystem = ({ ...props }) => {
|
|
402
228
|
const uniqId = React15.useId();
|
|
403
|
-
return /* @__PURE__ */ (0, import_react15.createElement)(
|
|
404
|
-
"div",
|
|
405
|
-
{
|
|
406
|
-
...props,
|
|
407
|
-
key: uniqId,
|
|
408
|
-
className: `design-system ${DesignSystem_module_default["design-system"]}`
|
|
409
|
-
}
|
|
410
|
-
);
|
|
229
|
+
return /* @__PURE__ */ (0, import_react15.createElement)("div", { ...props, key: uniqId, className: "design-system" });
|
|
411
230
|
};
|
|
412
231
|
|
|
413
232
|
// components/DeviceStatus/index.tsx
|
|
414
233
|
var React16 = __toESM(require("react"));
|
|
415
|
-
|
|
416
|
-
// components/DeviceStatus/DeviceStatus.module.scss
|
|
417
|
-
var DeviceStatus_module_default = {};
|
|
418
|
-
|
|
419
|
-
// components/DeviceStatus/index.tsx
|
|
420
234
|
var import_react16 = require("react");
|
|
421
235
|
var DeviceStatus = ({ ...props }) => {
|
|
422
236
|
const uniqId = React16.useId();
|
|
423
|
-
return /* @__PURE__ */ (0, import_react16.createElement)(
|
|
424
|
-
"div",
|
|
425
|
-
{
|
|
426
|
-
...props,
|
|
427
|
-
key: uniqId,
|
|
428
|
-
className: `device-status ${DeviceStatus_module_default["device-status"]}`
|
|
429
|
-
}
|
|
430
|
-
);
|
|
237
|
+
return /* @__PURE__ */ (0, import_react16.createElement)("div", { ...props, key: uniqId, className: "device-status" });
|
|
431
238
|
};
|
|
432
239
|
|
|
433
240
|
// components/DocumentScanner/index.tsx
|
|
434
241
|
var React17 = __toESM(require("react"));
|
|
435
|
-
|
|
436
|
-
// components/DocumentScanner/DocumentScanner.module.scss
|
|
437
|
-
var DocumentScanner_module_default = {};
|
|
438
|
-
|
|
439
|
-
// components/DocumentScanner/index.tsx
|
|
440
242
|
var import_react17 = require("react");
|
|
441
243
|
var DocumentScanner = ({ ...props }) => {
|
|
442
244
|
const uniqId = React17.useId();
|
|
443
|
-
return /* @__PURE__ */ (0, import_react17.createElement)(
|
|
444
|
-
"div",
|
|
445
|
-
{
|
|
446
|
-
...props,
|
|
447
|
-
key: uniqId,
|
|
448
|
-
className: `document-scanner ${DocumentScanner_module_default["document-scanner"]}`
|
|
449
|
-
}
|
|
450
|
-
);
|
|
245
|
+
return /* @__PURE__ */ (0, import_react17.createElement)("div", { ...props, key: uniqId, className: "document-scanner" });
|
|
451
246
|
};
|
|
452
247
|
|
|
453
248
|
// components/EmailDashboard/index.tsx
|
|
454
249
|
var React18 = __toESM(require("react"));
|
|
455
|
-
|
|
456
|
-
// components/EmailDashboard/EmailDashboard.module.scss
|
|
457
|
-
var EmailDashboard_module_default = {};
|
|
458
|
-
|
|
459
|
-
// components/EmailDashboard/index.tsx
|
|
460
250
|
var import_react18 = require("react");
|
|
461
251
|
var EmailDashboard = ({ ...props }) => {
|
|
462
252
|
const uniqId = React18.useId();
|
|
463
|
-
return /* @__PURE__ */ (0, import_react18.createElement)(
|
|
464
|
-
"div",
|
|
465
|
-
{
|
|
466
|
-
...props,
|
|
467
|
-
key: uniqId,
|
|
468
|
-
className: `email-dashboard ${EmailDashboard_module_default["email-dashboard"]}`
|
|
469
|
-
}
|
|
470
|
-
);
|
|
253
|
+
return /* @__PURE__ */ (0, import_react18.createElement)("div", { ...props, key: uniqId, className: "email-dashboard" });
|
|
471
254
|
};
|
|
472
255
|
|
|
473
256
|
// components/EnergyMeter/index.tsx
|
|
474
257
|
var React19 = __toESM(require("react"));
|
|
475
|
-
|
|
476
|
-
// components/EnergyMeter/EnergyMeter.module.scss
|
|
477
|
-
var EnergyMeter_module_default = {};
|
|
478
|
-
|
|
479
|
-
// components/EnergyMeter/index.tsx
|
|
480
258
|
var import_react19 = require("react");
|
|
481
259
|
var EnergyMeter = ({ ...props }) => {
|
|
482
260
|
const uniqId = React19.useId();
|
|
483
|
-
return /* @__PURE__ */ (0, import_react19.createElement)(
|
|
484
|
-
"div",
|
|
485
|
-
{
|
|
486
|
-
...props,
|
|
487
|
-
key: uniqId,
|
|
488
|
-
className: `energy-meter ${EnergyMeter_module_default["energy-meter"]}`
|
|
489
|
-
}
|
|
490
|
-
);
|
|
261
|
+
return /* @__PURE__ */ (0, import_react19.createElement)("div", { ...props, key: uniqId, className: "energy-meter" });
|
|
491
262
|
};
|
|
492
263
|
|
|
493
264
|
// components/FileManager/index.tsx
|
|
494
265
|
var React20 = __toESM(require("react"));
|
|
495
|
-
|
|
496
|
-
// components/FileManager/FileManager.module.scss
|
|
497
|
-
var FileManager_module_default = {};
|
|
498
|
-
|
|
499
|
-
// components/FileManager/index.tsx
|
|
500
266
|
var import_react20 = require("react");
|
|
501
267
|
var FileManager = ({ ...props }) => {
|
|
502
268
|
const uniqId = React20.useId();
|
|
503
|
-
return /* @__PURE__ */ (0, import_react20.createElement)(
|
|
504
|
-
"div",
|
|
505
|
-
{
|
|
506
|
-
...props,
|
|
507
|
-
key: uniqId,
|
|
508
|
-
className: `file-manager ${FileManager_module_default["file-manager"]}`
|
|
509
|
-
}
|
|
510
|
-
);
|
|
269
|
+
return /* @__PURE__ */ (0, import_react20.createElement)("div", { ...props, key: uniqId, className: "file-manager" });
|
|
511
270
|
};
|
|
512
271
|
|
|
513
272
|
// components/FileUploadArea/index.tsx
|
|
514
273
|
var React21 = __toESM(require("react"));
|
|
515
|
-
|
|
516
|
-
// components/FileUploadArea/FileUploadArea.module.scss
|
|
517
|
-
var FileUploadArea_module_default = {};
|
|
518
|
-
|
|
519
|
-
// components/FileUploadArea/index.tsx
|
|
520
274
|
var import_react21 = require("react");
|
|
521
275
|
var FileUploadArea = ({ ...props }) => {
|
|
522
276
|
const uniqId = React21.useId();
|
|
523
|
-
return /* @__PURE__ */ (0, import_react21.createElement)(
|
|
524
|
-
"div",
|
|
525
|
-
{
|
|
526
|
-
...props,
|
|
527
|
-
key: uniqId,
|
|
528
|
-
className: `file-upload-area ${FileUploadArea_module_default["file-upload-area"]}`
|
|
529
|
-
}
|
|
530
|
-
);
|
|
277
|
+
return /* @__PURE__ */ (0, import_react21.createElement)("div", { ...props, key: uniqId, className: "file-upload-area" });
|
|
531
278
|
};
|
|
532
279
|
|
|
533
280
|
// components/FitnessTracker/index.tsx
|
|
534
281
|
var React22 = __toESM(require("react"));
|
|
535
|
-
|
|
536
|
-
// components/FitnessTracker/FitnessTracker.module.scss
|
|
537
|
-
var FitnessTracker_module_default = {};
|
|
538
|
-
|
|
539
|
-
// components/FitnessTracker/index.tsx
|
|
540
282
|
var import_react22 = require("react");
|
|
541
283
|
var FitnessTracker = ({ ...props }) => {
|
|
542
284
|
const uniqId = React22.useId();
|
|
543
|
-
return /* @__PURE__ */ (0, import_react22.createElement)(
|
|
544
|
-
"div",
|
|
545
|
-
{
|
|
546
|
-
...props,
|
|
547
|
-
key: uniqId,
|
|
548
|
-
className: `fitness-tracker ${FitnessTracker_module_default["fitness-tracker"]}`
|
|
549
|
-
}
|
|
550
|
-
);
|
|
285
|
+
return /* @__PURE__ */ (0, import_react22.createElement)("div", { ...props, key: uniqId, className: "fitness-tracker" });
|
|
551
286
|
};
|
|
552
287
|
|
|
553
288
|
// components/GamingControllerWidget/index.tsx
|
|
554
289
|
var React23 = __toESM(require("react"));
|
|
555
|
-
|
|
556
|
-
// components/GamingControllerWidget/GamingControllerWidget.module.scss
|
|
557
|
-
var GamingControllerWidget_module_default = {};
|
|
558
|
-
|
|
559
|
-
// components/GamingControllerWidget/index.tsx
|
|
560
290
|
var import_react23 = require("react");
|
|
561
291
|
var GamingControllerWidget = ({
|
|
562
292
|
...props
|
|
563
293
|
}) => {
|
|
564
294
|
const uniqId = React23.useId();
|
|
565
|
-
return /* @__PURE__ */ (0, import_react23.createElement)(
|
|
566
|
-
"div",
|
|
567
|
-
{
|
|
568
|
-
...props,
|
|
569
|
-
key: uniqId,
|
|
570
|
-
className: `gaming-controller-widget ${GamingControllerWidget_module_default["gaming-controller-widget"]}`
|
|
571
|
-
}
|
|
572
|
-
);
|
|
295
|
+
return /* @__PURE__ */ (0, import_react23.createElement)("div", { ...props, key: uniqId, className: "gaming-controller-widget" });
|
|
573
296
|
};
|
|
574
297
|
|
|
575
298
|
// components/HabitTracker/index.tsx
|
|
576
299
|
var React24 = __toESM(require("react"));
|
|
577
|
-
|
|
578
|
-
// components/HabitTracker/HabitTracker.module.scss
|
|
579
|
-
var HabitTracker_module_default = {};
|
|
580
|
-
|
|
581
|
-
// components/HabitTracker/index.tsx
|
|
582
300
|
var import_react24 = require("react");
|
|
583
301
|
var HabitTracker = ({ ...props }) => {
|
|
584
302
|
const uniqId = React24.useId();
|
|
585
|
-
return /* @__PURE__ */ (0, import_react24.createElement)(
|
|
586
|
-
"div",
|
|
587
|
-
{
|
|
588
|
-
...props,
|
|
589
|
-
key: uniqId,
|
|
590
|
-
className: `habit-tracker ${HabitTracker_module_default["habit-tracker"]}`
|
|
591
|
-
}
|
|
592
|
-
);
|
|
303
|
+
return /* @__PURE__ */ (0, import_react24.createElement)("div", { ...props, key: uniqId, className: "habit-tracker" });
|
|
593
304
|
};
|
|
594
305
|
|
|
595
306
|
// components/HealthMonitor/index.tsx
|
|
596
307
|
var React25 = __toESM(require("react"));
|
|
597
|
-
|
|
598
|
-
// components/HealthMonitor/HealthMonitor.module.scss
|
|
599
|
-
var HealthMonitor_module_default = {};
|
|
600
|
-
|
|
601
|
-
// components/HealthMonitor/index.tsx
|
|
602
308
|
var import_react25 = require("react");
|
|
603
309
|
var HealthMonitor = ({ ...props }) => {
|
|
604
310
|
const uniqId = React25.useId();
|
|
605
|
-
return /* @__PURE__ */ (0, import_react25.createElement)(
|
|
606
|
-
"div",
|
|
607
|
-
{
|
|
608
|
-
...props,
|
|
609
|
-
key: uniqId,
|
|
610
|
-
className: `health-monitor ${HealthMonitor_module_default["health-monitor"]}`
|
|
611
|
-
}
|
|
612
|
-
);
|
|
311
|
+
return /* @__PURE__ */ (0, import_react25.createElement)("div", { ...props, key: uniqId, className: "health-monitor" });
|
|
613
312
|
};
|
|
614
313
|
|
|
615
314
|
// components/IdeaBulbWidget/index.tsx
|
|
616
315
|
var React26 = __toESM(require("react"));
|
|
617
|
-
|
|
618
|
-
// components/IdeaBulbWidget/IdeaBulbWidget.module.scss
|
|
619
|
-
var IdeaBulbWidget_module_default = {};
|
|
620
|
-
|
|
621
|
-
// components/IdeaBulbWidget/index.tsx
|
|
622
316
|
var import_react26 = require("react");
|
|
623
317
|
var IdeaBulbWidget = ({ ...props }) => {
|
|
624
318
|
const uniqId = React26.useId();
|
|
625
|
-
return /* @__PURE__ */ (0, import_react26.createElement)(
|
|
626
|
-
"div",
|
|
627
|
-
{
|
|
628
|
-
...props,
|
|
629
|
-
key: uniqId,
|
|
630
|
-
className: `idea-bulb-widget ${IdeaBulbWidget_module_default["idea-bulb-widget"]}`
|
|
631
|
-
}
|
|
632
|
-
);
|
|
319
|
+
return /* @__PURE__ */ (0, import_react26.createElement)("div", { ...props, key: uniqId, className: "idea-bulb-widget" });
|
|
633
320
|
};
|
|
634
321
|
|
|
635
322
|
// components/InspirationWidget/index.tsx
|
|
636
323
|
var React27 = __toESM(require("react"));
|
|
637
|
-
|
|
638
|
-
// components/InspirationWidget/InspirationWidget.module.scss
|
|
639
|
-
var InspirationWidget_module_default = {};
|
|
640
|
-
|
|
641
|
-
// components/InspirationWidget/index.tsx
|
|
642
324
|
var import_react27 = require("react");
|
|
643
325
|
var InspirationWidget = ({
|
|
644
326
|
...props
|
|
645
327
|
}) => {
|
|
646
328
|
const uniqId = React27.useId();
|
|
647
|
-
return /* @__PURE__ */ (0, import_react27.createElement)(
|
|
648
|
-
"div",
|
|
649
|
-
{
|
|
650
|
-
...props,
|
|
651
|
-
key: uniqId,
|
|
652
|
-
className: `inspiration-widget ${InspirationWidget_module_default["inspiration-widget"]}`
|
|
653
|
-
}
|
|
654
|
-
);
|
|
329
|
+
return /* @__PURE__ */ (0, import_react27.createElement)("div", { ...props, key: uniqId, className: "inspiration-widget" });
|
|
655
330
|
};
|
|
656
331
|
|
|
657
332
|
// components/LanguageLearning/index.tsx
|
|
658
333
|
var React28 = __toESM(require("react"));
|
|
659
|
-
|
|
660
|
-
// components/LanguageLearning/LanguageLearning.module.scss
|
|
661
|
-
var LanguageLearning_module_default = {};
|
|
662
|
-
|
|
663
|
-
// components/LanguageLearning/index.tsx
|
|
664
334
|
var import_react28 = require("react");
|
|
665
335
|
var LanguageLearning = ({ ...props }) => {
|
|
666
336
|
const uniqId = React28.useId();
|
|
667
|
-
return /* @__PURE__ */ (0, import_react28.createElement)(
|
|
668
|
-
"div",
|
|
669
|
-
{
|
|
670
|
-
...props,
|
|
671
|
-
key: uniqId,
|
|
672
|
-
className: `language-learning ${LanguageLearning_module_default["language-learning"]}`
|
|
673
|
-
}
|
|
674
|
-
);
|
|
337
|
+
return /* @__PURE__ */ (0, import_react28.createElement)("div", { ...props, key: uniqId, className: "language-learning" });
|
|
675
338
|
};
|
|
676
339
|
|
|
677
340
|
// components/LayerStackWidget/index.tsx
|
|
678
341
|
var React29 = __toESM(require("react"));
|
|
679
|
-
|
|
680
|
-
// components/LayerStackWidget/LayerStackWidget.module.scss
|
|
681
|
-
var LayerStackWidget_module_default = {};
|
|
682
|
-
|
|
683
|
-
// components/LayerStackWidget/index.tsx
|
|
684
342
|
var import_react29 = require("react");
|
|
685
343
|
var LayerStackWidget = ({ ...props }) => {
|
|
686
344
|
const uniqId = React29.useId();
|
|
687
|
-
return /* @__PURE__ */ (0, import_react29.createElement)(
|
|
688
|
-
"div",
|
|
689
|
-
{
|
|
690
|
-
...props,
|
|
691
|
-
key: uniqId,
|
|
692
|
-
className: `layer-stack-widget ${LayerStackWidget_module_default["layer-stack-widget"]}`
|
|
693
|
-
}
|
|
694
|
-
);
|
|
345
|
+
return /* @__PURE__ */ (0, import_react29.createElement)("div", { ...props, key: uniqId, className: "layer-stack-widget" });
|
|
695
346
|
};
|
|
696
347
|
|
|
697
348
|
// components/MediaControls/index.tsx
|
|
698
349
|
var React30 = __toESM(require("react"));
|
|
699
|
-
|
|
700
|
-
// components/MediaControls/MediaControls.module.scss
|
|
701
|
-
var MediaControls_module_default = {};
|
|
702
|
-
|
|
703
|
-
// components/MediaControls/index.tsx
|
|
704
350
|
var import_react30 = require("react");
|
|
705
351
|
var MediaControls = ({ ...props }) => {
|
|
706
352
|
const uniqId = React30.useId();
|
|
707
|
-
return /* @__PURE__ */ (0, import_react30.createElement)(
|
|
708
|
-
"div",
|
|
709
|
-
{
|
|
710
|
-
...props,
|
|
711
|
-
key: uniqId,
|
|
712
|
-
className: `media-controls ${MediaControls_module_default["media-controls"]}`
|
|
713
|
-
}
|
|
714
|
-
);
|
|
353
|
+
return /* @__PURE__ */ (0, import_react30.createElement)("div", { ...props, key: uniqId, className: "media-controls" });
|
|
715
354
|
};
|
|
716
355
|
|
|
717
356
|
// components/MiniMenu/index.tsx
|
|
718
357
|
var React31 = __toESM(require("react"));
|
|
719
|
-
|
|
720
|
-
// components/MiniMenu/MiniMenu.module.scss
|
|
721
|
-
var MiniMenu_module_default = {};
|
|
722
|
-
|
|
723
|
-
// components/MiniMenu/index.tsx
|
|
724
358
|
var import_react31 = require("react");
|
|
725
359
|
var MiniMenu = ({ ...props }) => {
|
|
726
360
|
const uniqId = React31.useId();
|
|
727
|
-
return /* @__PURE__ */ (0, import_react31.createElement)(
|
|
728
|
-
"div",
|
|
729
|
-
{
|
|
730
|
-
...props,
|
|
731
|
-
key: uniqId,
|
|
732
|
-
className: `mini-menu ${MiniMenu_module_default["mini-menu"]}`
|
|
733
|
-
}
|
|
734
|
-
);
|
|
361
|
+
return /* @__PURE__ */ (0, import_react31.createElement)("div", { ...props, key: uniqId, className: "mini-menu" });
|
|
735
362
|
};
|
|
736
363
|
|
|
737
364
|
// components/MouseTracker/index.tsx
|
|
738
365
|
var React32 = __toESM(require("react"));
|
|
739
|
-
|
|
740
|
-
// components/MouseTracker/MouseTracker.module.scss
|
|
741
|
-
var MouseTracker_module_default = {};
|
|
742
|
-
|
|
743
|
-
// components/MouseTracker/index.tsx
|
|
744
366
|
var import_react32 = require("react");
|
|
745
367
|
var MouseTracker = ({ ...props }) => {
|
|
746
368
|
const uniqId = React32.useId();
|
|
747
|
-
return /* @__PURE__ */ (0, import_react32.createElement)(
|
|
748
|
-
"div",
|
|
749
|
-
{
|
|
750
|
-
...props,
|
|
751
|
-
key: uniqId,
|
|
752
|
-
className: `mouse-tracker ${MouseTracker_module_default["mouse-tracker"]}`
|
|
753
|
-
}
|
|
754
|
-
);
|
|
369
|
+
return /* @__PURE__ */ (0, import_react32.createElement)("div", { ...props, key: uniqId, className: "mouse-tracker" });
|
|
755
370
|
};
|
|
756
371
|
|
|
757
372
|
// components/MusicPlayer/index.tsx
|
|
758
373
|
var React33 = __toESM(require("react"));
|
|
759
|
-
|
|
760
|
-
// components/MusicPlayer/MusicPlayer.module.scss
|
|
761
|
-
var MusicPlayer_module_default = {};
|
|
762
|
-
|
|
763
|
-
// components/MusicPlayer/index.tsx
|
|
764
374
|
var import_react33 = require("react");
|
|
765
375
|
var MusicPlayer = ({ ...props }) => {
|
|
766
376
|
const uniqId = React33.useId();
|
|
767
|
-
return /* @__PURE__ */ (0, import_react33.createElement)(
|
|
768
|
-
"div",
|
|
769
|
-
{
|
|
770
|
-
...props,
|
|
771
|
-
key: uniqId,
|
|
772
|
-
className: `music-player ${MusicPlayer_module_default["music-player"]}`
|
|
773
|
-
}
|
|
774
|
-
);
|
|
377
|
+
return /* @__PURE__ */ (0, import_react33.createElement)("div", { ...props, key: uniqId, className: "music-player" });
|
|
775
378
|
};
|
|
776
379
|
|
|
777
380
|
// components/MusicProduction/index.tsx
|
|
778
381
|
var React34 = __toESM(require("react"));
|
|
779
|
-
|
|
780
|
-
// components/MusicProduction/MusicProduction.module.scss
|
|
781
|
-
var MusicProduction_module_default = {};
|
|
782
|
-
|
|
783
|
-
// components/MusicProduction/index.tsx
|
|
784
382
|
var import_react34 = require("react");
|
|
785
383
|
var MusicProduction = ({ ...props }) => {
|
|
786
384
|
const uniqId = React34.useId();
|
|
787
|
-
return /* @__PURE__ */ (0, import_react34.createElement)(
|
|
788
|
-
"div",
|
|
789
|
-
{
|
|
790
|
-
...props,
|
|
791
|
-
key: uniqId,
|
|
792
|
-
className: `music-production ${MusicProduction_module_default["music-production"]}`
|
|
793
|
-
}
|
|
794
|
-
);
|
|
385
|
+
return /* @__PURE__ */ (0, import_react34.createElement)("div", { ...props, key: uniqId, className: "music-production" });
|
|
795
386
|
};
|
|
796
387
|
|
|
797
388
|
// components/NatureWidget/index.tsx
|
|
798
389
|
var React35 = __toESM(require("react"));
|
|
799
|
-
|
|
800
|
-
// components/NatureWidget/NatureWidget.module.scss
|
|
801
|
-
var NatureWidget_module_default = {};
|
|
802
|
-
|
|
803
|
-
// components/NatureWidget/index.tsx
|
|
804
390
|
var import_react35 = require("react");
|
|
805
391
|
var NatureWidget = ({ ...props }) => {
|
|
806
392
|
const uniqId = React35.useId();
|
|
807
|
-
return /* @__PURE__ */ (0, import_react35.createElement)(
|
|
808
|
-
"div",
|
|
809
|
-
{
|
|
810
|
-
...props,
|
|
811
|
-
key: uniqId,
|
|
812
|
-
className: `nature-widget ${NatureWidget_module_default["nature-widget"]}`
|
|
813
|
-
}
|
|
814
|
-
);
|
|
393
|
+
return /* @__PURE__ */ (0, import_react35.createElement)("div", { ...props, key: uniqId, className: "nature-widget" });
|
|
815
394
|
};
|
|
816
395
|
|
|
817
396
|
// components/NavigationPills/index.tsx
|
|
818
397
|
var React36 = __toESM(require("react"));
|
|
819
|
-
|
|
820
|
-
// components/NavigationPills/NavigationPills.module.scss
|
|
821
|
-
var NavigationPills_module_default = {};
|
|
822
|
-
|
|
823
|
-
// components/NavigationPills/index.tsx
|
|
824
398
|
var import_react36 = require("react");
|
|
825
399
|
var NavigationPills = ({ ...props }) => {
|
|
826
400
|
const uniqId = React36.useId();
|
|
827
|
-
return /* @__PURE__ */ (0, import_react36.createElement)(
|
|
828
|
-
"div",
|
|
829
|
-
{
|
|
830
|
-
...props,
|
|
831
|
-
key: uniqId,
|
|
832
|
-
className: `navigation-pills ${NavigationPills_module_default["navigation-pills"]}`
|
|
833
|
-
}
|
|
834
|
-
);
|
|
401
|
+
return /* @__PURE__ */ (0, import_react36.createElement)("div", { ...props, key: uniqId, className: "navigation-pills" });
|
|
835
402
|
};
|
|
836
403
|
|
|
837
404
|
// components/NetworkStatus/index.tsx
|
|
838
405
|
var React37 = __toESM(require("react"));
|
|
839
|
-
|
|
840
|
-
// components/NetworkStatus/NetworkStatus.module.scss
|
|
841
|
-
var NetworkStatus_module_default = {};
|
|
842
|
-
|
|
843
|
-
// components/NetworkStatus/index.tsx
|
|
844
406
|
var import_react37 = require("react");
|
|
845
407
|
var NetworkStatus = ({ ...props }) => {
|
|
846
408
|
const uniqId = React37.useId();
|
|
847
|
-
return /* @__PURE__ */ (0, import_react37.createElement)(
|
|
848
|
-
"div",
|
|
849
|
-
{
|
|
850
|
-
...props,
|
|
851
|
-
key: uniqId,
|
|
852
|
-
className: `network-status ${NetworkStatus_module_default["network-status"]}`
|
|
853
|
-
}
|
|
854
|
-
);
|
|
409
|
+
return /* @__PURE__ */ (0, import_react37.createElement)("div", { ...props, key: uniqId, className: "network-status" });
|
|
855
410
|
};
|
|
856
411
|
|
|
857
412
|
// components/NotificationBadges/index.tsx
|
|
858
413
|
var React38 = __toESM(require("react"));
|
|
859
|
-
|
|
860
|
-
// components/NotificationBadges/NotificationBadges.module.scss
|
|
861
|
-
var NotificationBadges_module_default = {};
|
|
862
|
-
|
|
863
|
-
// components/NotificationBadges/index.tsx
|
|
864
414
|
var import_react38 = require("react");
|
|
865
415
|
var NotificationBadges = ({
|
|
866
416
|
...props
|
|
867
417
|
}) => {
|
|
868
418
|
const uniqId = React38.useId();
|
|
869
|
-
return /* @__PURE__ */ (0, import_react38.createElement)(
|
|
870
|
-
"div",
|
|
871
|
-
{
|
|
872
|
-
...props,
|
|
873
|
-
key: uniqId,
|
|
874
|
-
className: `notification-badges ${NotificationBadges_module_default["notification-badges"]}`
|
|
875
|
-
}
|
|
876
|
-
);
|
|
419
|
+
return /* @__PURE__ */ (0, import_react38.createElement)("div", { ...props, key: uniqId, className: "notification-badges" });
|
|
877
420
|
};
|
|
878
421
|
|
|
879
422
|
// components/NotificationCards/index.tsx
|
|
880
423
|
var React39 = __toESM(require("react"));
|
|
881
|
-
|
|
882
|
-
// components/NotificationCards/NotificationCards.module.scss
|
|
883
|
-
var NotificationCards_module_default = {};
|
|
884
|
-
|
|
885
|
-
// components/NotificationCards/index.tsx
|
|
886
424
|
var import_react39 = require("react");
|
|
887
425
|
var NotificationCards = ({
|
|
888
426
|
...props
|
|
889
427
|
}) => {
|
|
890
428
|
const uniqId = React39.useId();
|
|
891
|
-
return /* @__PURE__ */ (0, import_react39.createElement)(
|
|
892
|
-
"div",
|
|
893
|
-
{
|
|
894
|
-
...props,
|
|
895
|
-
key: uniqId,
|
|
896
|
-
className: `notification-cards ${NotificationCards_module_default["notification-cards"]}`
|
|
897
|
-
}
|
|
898
|
-
);
|
|
429
|
+
return /* @__PURE__ */ (0, import_react39.createElement)("div", { ...props, key: uniqId, className: "notification-cards" });
|
|
899
430
|
};
|
|
900
431
|
|
|
901
432
|
// components/OfficeBuildingWidget/index.tsx
|
|
902
433
|
var React40 = __toESM(require("react"));
|
|
903
|
-
|
|
904
|
-
// components/OfficeBuildingWidget/OfficeBuildingWidget.module.scss
|
|
905
|
-
var OfficeBuildingWidget_module_default = {};
|
|
906
|
-
|
|
907
|
-
// components/OfficeBuildingWidget/index.tsx
|
|
908
434
|
var import_react40 = require("react");
|
|
909
435
|
var OfficeBuildingWidget = ({
|
|
910
436
|
...props
|
|
911
437
|
}) => {
|
|
912
438
|
const uniqId = React40.useId();
|
|
913
|
-
return /* @__PURE__ */ (0, import_react40.createElement)(
|
|
914
|
-
"div",
|
|
915
|
-
{
|
|
916
|
-
...props,
|
|
917
|
-
key: uniqId,
|
|
918
|
-
className: `office-building-widget ${OfficeBuildingWidget_module_default["office-building-widget"]}`
|
|
919
|
-
}
|
|
920
|
-
);
|
|
439
|
+
return /* @__PURE__ */ (0, import_react40.createElement)("div", { ...props, key: uniqId, className: "office-building-widget" });
|
|
921
440
|
};
|
|
922
441
|
|
|
923
442
|
// components/PasswordManager/index.tsx
|
|
924
443
|
var React41 = __toESM(require("react"));
|
|
925
|
-
|
|
926
|
-
// components/PasswordManager/PasswordManager.module.scss
|
|
927
|
-
var PasswordManager_module_default = {};
|
|
928
|
-
|
|
929
|
-
// components/PasswordManager/index.tsx
|
|
930
444
|
var import_react41 = require("react");
|
|
931
445
|
var PasswordManager = ({ ...props }) => {
|
|
932
446
|
const uniqId = React41.useId();
|
|
933
|
-
return /* @__PURE__ */ (0, import_react41.createElement)(
|
|
934
|
-
"div",
|
|
935
|
-
{
|
|
936
|
-
...props,
|
|
937
|
-
key: uniqId,
|
|
938
|
-
className: `password-manager ${PasswordManager_module_default["password-manager"]}`
|
|
939
|
-
}
|
|
940
|
-
);
|
|
447
|
+
return /* @__PURE__ */ (0, import_react41.createElement)("div", { ...props, key: uniqId, className: "password-manager" });
|
|
941
448
|
};
|
|
942
449
|
|
|
943
450
|
// components/PhotoEditor/index.tsx
|
|
944
451
|
var React42 = __toESM(require("react"));
|
|
945
|
-
|
|
946
|
-
// components/PhotoEditor/PhotoEditor.module.scss
|
|
947
|
-
var PhotoEditor_module_default = {};
|
|
948
|
-
|
|
949
|
-
// components/PhotoEditor/index.tsx
|
|
950
452
|
var import_react42 = require("react");
|
|
951
453
|
var PhotoEditor = ({ ...props }) => {
|
|
952
454
|
const uniqId = React42.useId();
|
|
953
|
-
return /* @__PURE__ */ (0, import_react42.createElement)(
|
|
954
|
-
"div",
|
|
955
|
-
{
|
|
956
|
-
...props,
|
|
957
|
-
key: uniqId,
|
|
958
|
-
className: `photo-editor ${PhotoEditor_module_default["photo-editor"]}`
|
|
959
|
-
}
|
|
960
|
-
);
|
|
455
|
+
return /* @__PURE__ */ (0, import_react42.createElement)("div", { ...props, key: uniqId, className: "photo-editor" });
|
|
961
456
|
};
|
|
962
457
|
|
|
963
458
|
// components/PomodoroTimer/index.tsx
|
|
964
459
|
var React43 = __toESM(require("react"));
|
|
965
|
-
|
|
966
|
-
// components/PomodoroTimer/PomodoroTimer.module.scss
|
|
967
|
-
var PomodoroTimer_module_default = {};
|
|
968
|
-
|
|
969
|
-
// components/PomodoroTimer/index.tsx
|
|
970
460
|
var import_react43 = require("react");
|
|
971
461
|
var PomodoroTimer = ({ ...props }) => {
|
|
972
462
|
const uniqId = React43.useId();
|
|
973
|
-
return /* @__PURE__ */ (0, import_react43.createElement)(
|
|
974
|
-
"div",
|
|
975
|
-
{
|
|
976
|
-
...props,
|
|
977
|
-
key: uniqId,
|
|
978
|
-
className: `pomodoro-timer ${PomodoroTimer_module_default["pomodoro-timer"]}`
|
|
979
|
-
}
|
|
980
|
-
);
|
|
463
|
+
return /* @__PURE__ */ (0, import_react43.createElement)("div", { ...props, key: uniqId, className: "pomodoro-timer" });
|
|
981
464
|
};
|
|
982
465
|
|
|
983
466
|
// components/PricingCard/index.tsx
|
|
984
467
|
var React44 = __toESM(require("react"));
|
|
985
|
-
|
|
986
|
-
// components/PricingCard/PricingCard.module.scss
|
|
987
|
-
var PricingCard_module_default = {};
|
|
988
|
-
|
|
989
|
-
// components/PricingCard/index.tsx
|
|
990
468
|
var import_react44 = require("react");
|
|
991
469
|
var PricingCard = ({ ...props }) => {
|
|
992
470
|
const uniqId = React44.useId();
|
|
993
|
-
return /* @__PURE__ */ (0, import_react44.createElement)(
|
|
994
|
-
"div",
|
|
995
|
-
{
|
|
996
|
-
...props,
|
|
997
|
-
key: uniqId,
|
|
998
|
-
className: `pricing-card ${PricingCard_module_default["pricing-card"]}`
|
|
999
|
-
}
|
|
1000
|
-
);
|
|
471
|
+
return /* @__PURE__ */ (0, import_react44.createElement)("div", { ...props, key: uniqId, className: "pricing-card" });
|
|
1001
472
|
};
|
|
1002
473
|
|
|
1003
474
|
// components/ProfileBadge/index.tsx
|
|
1004
475
|
var React45 = __toESM(require("react"));
|
|
1005
|
-
|
|
1006
|
-
// components/ProfileBadge/ProfileBadge.module.scss
|
|
1007
|
-
var ProfileBadge_module_default = {};
|
|
1008
|
-
|
|
1009
|
-
// components/ProfileBadge/index.tsx
|
|
1010
476
|
var import_react45 = require("react");
|
|
1011
477
|
var ProfileBadge = ({ ...props }) => {
|
|
1012
478
|
const uniqId = React45.useId();
|
|
1013
|
-
return /* @__PURE__ */ (0, import_react45.createElement)(
|
|
1014
|
-
"div",
|
|
1015
|
-
{
|
|
1016
|
-
...props,
|
|
1017
|
-
key: uniqId,
|
|
1018
|
-
className: `profile-badge ${ProfileBadge_module_default["profile-badge"]}`
|
|
1019
|
-
}
|
|
1020
|
-
);
|
|
479
|
+
return /* @__PURE__ */ (0, import_react45.createElement)("div", { ...props, key: uniqId, className: "profile-badge" });
|
|
1021
480
|
};
|
|
1022
481
|
|
|
1023
482
|
// components/ProgressTracker/index.tsx
|
|
1024
483
|
var React46 = __toESM(require("react"));
|
|
1025
|
-
|
|
1026
|
-
// components/ProgressTracker/ProgressTracker.module.scss
|
|
1027
|
-
var ProgressTracker_module_default = {};
|
|
1028
|
-
|
|
1029
|
-
// components/ProgressTracker/index.tsx
|
|
1030
484
|
var import_react46 = require("react");
|
|
1031
485
|
var ProgressTracker = ({ ...props }) => {
|
|
1032
486
|
const uniqId = React46.useId();
|
|
1033
|
-
return /* @__PURE__ */ (0, import_react46.createElement)(
|
|
1034
|
-
"div",
|
|
1035
|
-
{
|
|
1036
|
-
...props,
|
|
1037
|
-
key: uniqId,
|
|
1038
|
-
className: `progress-tracker ${ProgressTracker_module_default["progress-tracker"]}`
|
|
1039
|
-
}
|
|
1040
|
-
);
|
|
487
|
+
return /* @__PURE__ */ (0, import_react46.createElement)("div", { ...props, key: uniqId, className: "progress-tracker" });
|
|
1041
488
|
};
|
|
1042
489
|
|
|
1043
490
|
// components/QuickActions/index.tsx
|
|
1044
491
|
var React47 = __toESM(require("react"));
|
|
1045
|
-
|
|
1046
|
-
// components/QuickActions/QuickActions.module.scss
|
|
1047
|
-
var QuickActions_module_default = {};
|
|
1048
|
-
|
|
1049
|
-
// components/QuickActions/index.tsx
|
|
1050
492
|
var import_react47 = require("react");
|
|
1051
493
|
var QuickActions = ({ ...props }) => {
|
|
1052
494
|
const uniqId = React47.useId();
|
|
1053
|
-
return /* @__PURE__ */ (0, import_react47.createElement)(
|
|
1054
|
-
"div",
|
|
1055
|
-
{
|
|
1056
|
-
...props,
|
|
1057
|
-
key: uniqId,
|
|
1058
|
-
className: `quick-actions ${QuickActions_module_default["quick-actions"]}`
|
|
1059
|
-
}
|
|
1060
|
-
);
|
|
495
|
+
return /* @__PURE__ */ (0, import_react47.createElement)("div", { ...props, key: uniqId, className: "quick-actions" });
|
|
1061
496
|
};
|
|
1062
497
|
|
|
1063
498
|
// components/QuickStats/index.tsx
|
|
1064
499
|
var React48 = __toESM(require("react"));
|
|
1065
|
-
|
|
1066
|
-
// components/QuickStats/QuickStats.module.scss
|
|
1067
|
-
var QuickStats_module_default = {};
|
|
1068
|
-
|
|
1069
|
-
// components/QuickStats/index.tsx
|
|
1070
500
|
var import_react48 = require("react");
|
|
1071
501
|
var QuickStats = ({ ...props }) => {
|
|
1072
502
|
const uniqId = React48.useId();
|
|
1073
|
-
return /* @__PURE__ */ (0, import_react48.createElement)(
|
|
1074
|
-
"div",
|
|
1075
|
-
{
|
|
1076
|
-
...props,
|
|
1077
|
-
key: uniqId,
|
|
1078
|
-
className: `quick-stats ${QuickStats_module_default["quick-stats"]}`
|
|
1079
|
-
}
|
|
1080
|
-
);
|
|
503
|
+
return /* @__PURE__ */ (0, import_react48.createElement)("div", { ...props, key: uniqId, className: "quick-stats" });
|
|
1081
504
|
};
|
|
1082
505
|
|
|
1083
506
|
// components/ReadingProgress/index.tsx
|
|
1084
507
|
var React49 = __toESM(require("react"));
|
|
1085
|
-
|
|
1086
|
-
// components/ReadingProgress/ReadingProgress.module.scss
|
|
1087
|
-
var ReadingProgress_module_default = {};
|
|
1088
|
-
|
|
1089
|
-
// components/ReadingProgress/index.tsx
|
|
1090
508
|
var import_react49 = require("react");
|
|
1091
509
|
var ReadingProgress = ({ ...props }) => {
|
|
1092
510
|
const uniqId = React49.useId();
|
|
1093
|
-
return /* @__PURE__ */ (0, import_react49.createElement)(
|
|
1094
|
-
"div",
|
|
1095
|
-
{
|
|
1096
|
-
...props,
|
|
1097
|
-
key: uniqId,
|
|
1098
|
-
className: `reading-progress ${ReadingProgress_module_default["reading-progress"]}`
|
|
1099
|
-
}
|
|
1100
|
-
);
|
|
511
|
+
return /* @__PURE__ */ (0, import_react49.createElement)("div", { ...props, key: uniqId, className: "reading-progress" });
|
|
1101
512
|
};
|
|
1102
513
|
|
|
1103
514
|
// components/RecipeFinder/index.tsx
|
|
1104
515
|
var React50 = __toESM(require("react"));
|
|
1105
|
-
|
|
1106
|
-
// components/RecipeFinder/RecipeFinder.module.scss
|
|
1107
|
-
var RecipeFinder_module_default = {};
|
|
1108
|
-
|
|
1109
|
-
// components/RecipeFinder/index.tsx
|
|
1110
516
|
var import_react50 = require("react");
|
|
1111
517
|
var RecipeFinder = ({ ...props }) => {
|
|
1112
518
|
const uniqId = React50.useId();
|
|
1113
|
-
return /* @__PURE__ */ (0, import_react50.createElement)(
|
|
1114
|
-
"div",
|
|
1115
|
-
{
|
|
1116
|
-
...props,
|
|
1117
|
-
key: uniqId,
|
|
1118
|
-
className: `recipe-finder ${RecipeFinder_module_default["recipe-finder"]}`
|
|
1119
|
-
}
|
|
1120
|
-
);
|
|
519
|
+
return /* @__PURE__ */ (0, import_react50.createElement)("div", { ...props, key: uniqId, className: "recipe-finder" });
|
|
1121
520
|
};
|
|
1122
521
|
|
|
1123
522
|
// components/RocketLaunchWidget/index.tsx
|
|
1124
523
|
var React51 = __toESM(require("react"));
|
|
1125
|
-
|
|
1126
|
-
// components/RocketLaunchWidget/RocketLaunchWidget.module.scss
|
|
1127
|
-
var RocketLaunchWidget_module_default = {};
|
|
1128
|
-
|
|
1129
|
-
// components/RocketLaunchWidget/index.tsx
|
|
1130
524
|
var import_react51 = require("react");
|
|
1131
525
|
var RocketLaunchWidget = ({
|
|
1132
526
|
...props
|
|
1133
527
|
}) => {
|
|
1134
528
|
const uniqId = React51.useId();
|
|
1135
|
-
return /* @__PURE__ */ (0, import_react51.createElement)(
|
|
1136
|
-
"div",
|
|
1137
|
-
{
|
|
1138
|
-
...props,
|
|
1139
|
-
key: uniqId,
|
|
1140
|
-
className: `rocket-launch-widget ${RocketLaunchWidget_module_default["rocket-launch-widget"]}`
|
|
1141
|
-
}
|
|
1142
|
-
);
|
|
529
|
+
return /* @__PURE__ */ (0, import_react51.createElement)("div", { ...props, key: uniqId, className: "rocket-launch-widget" });
|
|
1143
530
|
};
|
|
1144
531
|
|
|
1145
532
|
// components/SettingsPanel/index.tsx
|
|
1146
533
|
var React52 = __toESM(require("react"));
|
|
1147
|
-
|
|
1148
|
-
// components/SettingsPanel/SettingsPanel.module.scss
|
|
1149
|
-
var SettingsPanel_module_default = {};
|
|
1150
|
-
|
|
1151
|
-
// components/SettingsPanel/index.tsx
|
|
1152
534
|
var import_react52 = require("react");
|
|
1153
535
|
var SettingsPanel = ({ ...props }) => {
|
|
1154
536
|
const uniqId = React52.useId();
|
|
1155
|
-
return /* @__PURE__ */ (0, import_react52.createElement)(
|
|
1156
|
-
"div",
|
|
1157
|
-
{
|
|
1158
|
-
...props,
|
|
1159
|
-
key: uniqId,
|
|
1160
|
-
className: `settings-panel ${SettingsPanel_module_default["settings-panel"]}`
|
|
1161
|
-
}
|
|
1162
|
-
);
|
|
537
|
+
return /* @__PURE__ */ (0, import_react52.createElement)("div", { ...props, key: uniqId, className: "settings-panel" });
|
|
1163
538
|
};
|
|
1164
539
|
|
|
1165
540
|
// components/ShoppingCart/index.tsx
|
|
1166
541
|
var React53 = __toESM(require("react"));
|
|
1167
|
-
|
|
1168
|
-
// components/ShoppingCart/ShoppingCart.module.scss
|
|
1169
|
-
var ShoppingCart_module_default = {};
|
|
1170
|
-
|
|
1171
|
-
// components/ShoppingCart/index.tsx
|
|
1172
542
|
var import_react53 = require("react");
|
|
1173
543
|
var ShoppingCart = ({ ...props }) => {
|
|
1174
544
|
const uniqId = React53.useId();
|
|
1175
|
-
return /* @__PURE__ */ (0, import_react53.createElement)(
|
|
1176
|
-
"div",
|
|
1177
|
-
{
|
|
1178
|
-
...props,
|
|
1179
|
-
key: uniqId,
|
|
1180
|
-
className: `shopping-cart ${ShoppingCart_module_default["shopping-cart"]}`
|
|
1181
|
-
}
|
|
1182
|
-
);
|
|
545
|
+
return /* @__PURE__ */ (0, import_react53.createElement)("div", { ...props, key: uniqId, className: "shopping-cart" });
|
|
1183
546
|
};
|
|
1184
547
|
|
|
1185
548
|
// components/ShoppingList/index.tsx
|
|
1186
549
|
var React54 = __toESM(require("react"));
|
|
1187
|
-
|
|
1188
|
-
// components/ShoppingList/ShoppingList.module.scss
|
|
1189
|
-
var ShoppingList_module_default = {};
|
|
1190
|
-
|
|
1191
|
-
// components/ShoppingList/index.tsx
|
|
1192
550
|
var import_react54 = require("react");
|
|
1193
551
|
var ShoppingList = ({ ...props }) => {
|
|
1194
552
|
const uniqId = React54.useId();
|
|
1195
|
-
return /* @__PURE__ */ (0, import_react54.createElement)(
|
|
1196
|
-
"div",
|
|
1197
|
-
{
|
|
1198
|
-
...props,
|
|
1199
|
-
key: uniqId,
|
|
1200
|
-
className: `shopping-list ${ShoppingList_module_default["shopping-list"]}`
|
|
1201
|
-
}
|
|
1202
|
-
);
|
|
553
|
+
return /* @__PURE__ */ (0, import_react54.createElement)("div", { ...props, key: uniqId, className: "shopping-list" });
|
|
1203
554
|
};
|
|
1204
555
|
|
|
1205
556
|
// components/SocialEngagement/index.tsx
|
|
1206
557
|
var React55 = __toESM(require("react"));
|
|
1207
|
-
|
|
1208
|
-
// components/SocialEngagement/SocialEngagement.module.scss
|
|
1209
|
-
var SocialEngagement_module_default = {};
|
|
1210
|
-
|
|
1211
|
-
// components/SocialEngagement/index.tsx
|
|
1212
558
|
var import_react55 = require("react");
|
|
1213
559
|
var SocialEngagement = ({ ...props }) => {
|
|
1214
560
|
const uniqId = React55.useId();
|
|
1215
|
-
return /* @__PURE__ */ (0, import_react55.createElement)(
|
|
1216
|
-
"div",
|
|
1217
|
-
{
|
|
1218
|
-
...props,
|
|
1219
|
-
key: uniqId,
|
|
1220
|
-
className: `social-engagement ${SocialEngagement_module_default["social-engagement"]}`
|
|
1221
|
-
}
|
|
1222
|
-
);
|
|
561
|
+
return /* @__PURE__ */ (0, import_react55.createElement)("div", { ...props, key: uniqId, className: "social-engagement" });
|
|
1223
562
|
};
|
|
1224
563
|
|
|
1225
564
|
// components/SocialMediaCard/index.tsx
|
|
@@ -1227,48 +566,19 @@ var React56 = __toESM(require("react"));
|
|
|
1227
566
|
var import_anchor = require("@aristobyte-ui/anchor");
|
|
1228
567
|
var import_button = require("@aristobyte-ui/button");
|
|
1229
568
|
var import_utils = require("@aristobyte-ui/utils");
|
|
1230
|
-
|
|
1231
|
-
// components/SocialMediaCard/SocialMediaCard.module.scss
|
|
1232
|
-
var SocialMediaCard_module_default = {
|
|
1233
|
-
"social-media-card": "SocialMediaCard_module_social-media-card",
|
|
1234
|
-
"social-media-card-radius--none": "SocialMediaCard_module_social-media-card-radius--none",
|
|
1235
|
-
"social-media-card-radius--sm": "SocialMediaCard_module_social-media-card-radius--sm",
|
|
1236
|
-
"social-media-card-radius--md": "SocialMediaCard_module_social-media-card-radius--md",
|
|
1237
|
-
"social-media-card-radius--lg": "SocialMediaCard_module_social-media-card-radius--lg",
|
|
1238
|
-
"social-media-card-radius--full": "SocialMediaCard_module_social-media-card-radius--full",
|
|
1239
|
-
"social-media-card__header": "SocialMediaCard_module_social-media-card__header",
|
|
1240
|
-
"social-media-card__avatar": "SocialMediaCard_module_social-media-card__avatar",
|
|
1241
|
-
"social-media-card__avatar-icon": "SocialMediaCard_module_social-media-card__avatar-icon",
|
|
1242
|
-
"social-media-card__avatar-img": "SocialMediaCard_module_social-media-card__avatar-img",
|
|
1243
|
-
"social-media-card__text": "SocialMediaCard_module_social-media-card__text",
|
|
1244
|
-
"social-media-card__title": "SocialMediaCard_module_social-media-card__title",
|
|
1245
|
-
"social-media-card__subtitle": "SocialMediaCard_module_social-media-card__subtitle",
|
|
1246
|
-
"social-media-card__content": "SocialMediaCard_module_social-media-card__content",
|
|
1247
|
-
"social-media-card__metrics": "SocialMediaCard_module_social-media-card__metrics",
|
|
1248
|
-
"social-media-card__metric": "SocialMediaCard_module_social-media-card__metric",
|
|
1249
|
-
"social-media-card__metric-par": "SocialMediaCard_module_social-media-card__metric-par",
|
|
1250
|
-
"social-media-card__metric-text": "SocialMediaCard_module_social-media-card__metric-text",
|
|
1251
|
-
"social-media-card__metric-icon": "SocialMediaCard_module_social-media-card__metric-icon",
|
|
1252
|
-
"social-media-card__metric-value": "SocialMediaCard_module_social-media-card__metric-value",
|
|
1253
|
-
"social-media-card__tags": "SocialMediaCard_module_social-media-card__tags",
|
|
1254
|
-
"social-media-card__tag": "SocialMediaCard_module_social-media-card__tag",
|
|
1255
|
-
"social-media-card__tag-anchor": "SocialMediaCard_module_social-media-card__tag-anchor"
|
|
1256
|
-
};
|
|
1257
|
-
|
|
1258
|
-
// components/SocialMediaCard/index.tsx
|
|
1259
569
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
1260
570
|
var renderAvatar = (avatar) => {
|
|
1261
571
|
if (avatar == null ? void 0 : avatar.image) {
|
|
1262
572
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
1263
573
|
"img",
|
|
1264
574
|
{
|
|
1265
|
-
className:
|
|
575
|
+
className: "social-media-card__avatar-img",
|
|
1266
576
|
src: avatar.image,
|
|
1267
577
|
alt: avatar.imageAltText
|
|
1268
578
|
}
|
|
1269
579
|
);
|
|
1270
580
|
}
|
|
1271
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className:
|
|
581
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "social-media-card__avatar-icon", children: ((avatar == null ? void 0 : avatar.icon) || import_utils.Icons.User)({ size: 24 }) });
|
|
1272
582
|
};
|
|
1273
583
|
var SocialMediaCard = ({
|
|
1274
584
|
variant = "default",
|
|
@@ -1286,22 +596,22 @@ var SocialMediaCard = ({
|
|
|
1286
596
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
1287
597
|
"div",
|
|
1288
598
|
{
|
|
1289
|
-
className: `social-media-card
|
|
599
|
+
className: `social-media-card social-media-card-radius--${radius} social-media-radius-variant--${variant} social-media-card ${className}`,
|
|
1290
600
|
children: [
|
|
1291
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className:
|
|
601
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "social-media-card__header", children: [
|
|
1292
602
|
avatar && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
1293
603
|
import_button.Button,
|
|
1294
604
|
{
|
|
1295
|
-
className:
|
|
605
|
+
className: "social-media-card__avatar",
|
|
1296
606
|
style: { background: avatar == null ? void 0 : avatar.background },
|
|
1297
607
|
href: avatar == null ? void 0 : avatar.href,
|
|
1298
608
|
target: avatar == null ? void 0 : avatar.target,
|
|
1299
609
|
children: renderAvatar(avatar)
|
|
1300
610
|
}
|
|
1301
611
|
),
|
|
1302
|
-
title && subtitle && /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className:
|
|
1303
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("h3", { className:
|
|
1304
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("h4", { className:
|
|
612
|
+
title && subtitle && /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "social-media-card__text", children: [
|
|
613
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("h3", { className: "social-media-card__title", children: title }),
|
|
614
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("h4", { className: "social-media-card__subtitle", children: subtitle })
|
|
1305
615
|
] }),
|
|
1306
616
|
button && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
1307
617
|
import_button.Button,
|
|
@@ -1309,25 +619,25 @@ var SocialMediaCard = ({
|
|
|
1309
619
|
...button,
|
|
1310
620
|
variant: (button == null ? void 0 : button.variant) || "primary",
|
|
1311
621
|
radius: (button == null ? void 0 : button.radius) || "full",
|
|
1312
|
-
className:
|
|
622
|
+
className: "social-media-card__button"
|
|
1313
623
|
}
|
|
1314
624
|
)
|
|
1315
625
|
] }),
|
|
1316
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className:
|
|
1317
|
-
tags && tags.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("ul", { className:
|
|
626
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "social-media-card__content", children: content }),
|
|
627
|
+
tags && tags.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("ul", { className: "social-media-card__tags", children: tags.map(({ variant: tagVariant, ...rest }, i) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("li", { className: "social-media-card__tag", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
1318
628
|
import_anchor.Anchor,
|
|
1319
629
|
{
|
|
1320
630
|
...rest,
|
|
1321
|
-
className:
|
|
631
|
+
className: "social-media-card__tag-anchor",
|
|
1322
632
|
variant: tagVariant || "white"
|
|
1323
633
|
}
|
|
1324
634
|
) }, i)) }),
|
|
1325
|
-
metrics && metrics.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("ul", { className:
|
|
1326
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("p", { className:
|
|
1327
|
-
icon && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className:
|
|
1328
|
-
value && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className:
|
|
635
|
+
metrics && metrics.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("ul", { className: "social-media-card__metrics", children: metrics.map(({ icon, label, value, ...rest }, i) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("li", { className: "social-media-card__metric", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_button.Button, { ...rest, transparent: true, children: [
|
|
636
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("p", { className: "social-media-card__metric-par", children: [
|
|
637
|
+
icon && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "social-media-card__metric-icon", children: icon({ size: 22 }) }),
|
|
638
|
+
value && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "social-media-card__metric-value", children: value })
|
|
1329
639
|
] }),
|
|
1330
|
-
label && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("p", { className:
|
|
640
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("p", { className: "social-media-card__metrics-label", children: label })
|
|
1331
641
|
] }) }, i)) })
|
|
1332
642
|
]
|
|
1333
643
|
},
|
|
@@ -1337,266 +647,110 @@ var SocialMediaCard = ({
|
|
|
1337
647
|
|
|
1338
648
|
// components/StatisticsCards/index.tsx
|
|
1339
649
|
var React57 = __toESM(require("react"));
|
|
1340
|
-
|
|
1341
|
-
// components/StatisticsCards/StatisticsCards.module.scss
|
|
1342
|
-
var StatisticsCards_module_default = {};
|
|
1343
|
-
|
|
1344
|
-
// components/StatisticsCards/index.tsx
|
|
1345
650
|
var import_react56 = require("react");
|
|
1346
651
|
var StatisticsCards = ({ ...props }) => {
|
|
1347
652
|
const uniqId = React57.useId();
|
|
1348
|
-
return /* @__PURE__ */ (0, import_react56.createElement)(
|
|
1349
|
-
"div",
|
|
1350
|
-
{
|
|
1351
|
-
...props,
|
|
1352
|
-
key: uniqId,
|
|
1353
|
-
className: `statistics-cards ${StatisticsCards_module_default["statistics-cards"]}`
|
|
1354
|
-
}
|
|
1355
|
-
);
|
|
653
|
+
return /* @__PURE__ */ (0, import_react56.createElement)("div", { ...props, key: uniqId, className: "statistics-cards" });
|
|
1356
654
|
};
|
|
1357
655
|
|
|
1358
656
|
// components/StatusIndicators/index.tsx
|
|
1359
657
|
var React58 = __toESM(require("react"));
|
|
1360
|
-
|
|
1361
|
-
// components/StatusIndicators/StatusIndicators.module.scss
|
|
1362
|
-
var StatusIndicators_module_default = {};
|
|
1363
|
-
|
|
1364
|
-
// components/StatusIndicators/index.tsx
|
|
1365
658
|
var import_react57 = require("react");
|
|
1366
659
|
var StatusIndicators = ({ ...props }) => {
|
|
1367
660
|
const uniqId = React58.useId();
|
|
1368
|
-
return /* @__PURE__ */ (0, import_react57.createElement)(
|
|
1369
|
-
"div",
|
|
1370
|
-
{
|
|
1371
|
-
...props,
|
|
1372
|
-
key: uniqId,
|
|
1373
|
-
className: `status-indicators ${StatusIndicators_module_default["status-indicators"]}`
|
|
1374
|
-
}
|
|
1375
|
-
);
|
|
661
|
+
return /* @__PURE__ */ (0, import_react57.createElement)("div", { ...props, key: uniqId, className: "status-indicators" });
|
|
1376
662
|
};
|
|
1377
663
|
|
|
1378
664
|
// components/StockMarket/index.tsx
|
|
1379
665
|
var React59 = __toESM(require("react"));
|
|
1380
|
-
|
|
1381
|
-
// components/StockMarket/StockMarket.module.scss
|
|
1382
|
-
var StockMarket_module_default = {};
|
|
1383
|
-
|
|
1384
|
-
// components/StockMarket/index.tsx
|
|
1385
666
|
var import_react58 = require("react");
|
|
1386
667
|
var StockMarket = ({ ...props }) => {
|
|
1387
668
|
const uniqId = React59.useId();
|
|
1388
|
-
return /* @__PURE__ */ (0, import_react58.createElement)(
|
|
1389
|
-
"div",
|
|
1390
|
-
{
|
|
1391
|
-
...props,
|
|
1392
|
-
key: uniqId,
|
|
1393
|
-
className: `stock-market ${StockMarket_module_default["stock-market"]}`
|
|
1394
|
-
}
|
|
1395
|
-
);
|
|
669
|
+
return /* @__PURE__ */ (0, import_react58.createElement)("div", { ...props, key: uniqId, className: "stock-market" });
|
|
1396
670
|
};
|
|
1397
671
|
|
|
1398
672
|
// components/StreakCounter/index.tsx
|
|
1399
673
|
var React60 = __toESM(require("react"));
|
|
1400
|
-
|
|
1401
|
-
// components/StreakCounter/StreakCounter.module.scss
|
|
1402
|
-
var StreakCounter_module_default = {};
|
|
1403
|
-
|
|
1404
|
-
// components/StreakCounter/index.tsx
|
|
1405
674
|
var import_react59 = require("react");
|
|
1406
675
|
var StreakCounter = ({ ...props }) => {
|
|
1407
676
|
const uniqId = React60.useId();
|
|
1408
|
-
return /* @__PURE__ */ (0, import_react59.createElement)(
|
|
1409
|
-
"div",
|
|
1410
|
-
{
|
|
1411
|
-
...props,
|
|
1412
|
-
key: uniqId,
|
|
1413
|
-
className: `streak-counter ${StreakCounter_module_default["streak-counter"]}`
|
|
1414
|
-
}
|
|
1415
|
-
);
|
|
677
|
+
return /* @__PURE__ */ (0, import_react59.createElement)("div", { ...props, key: uniqId, className: "streak-counter" });
|
|
1416
678
|
};
|
|
1417
679
|
|
|
1418
680
|
// components/SystemStatus/index.tsx
|
|
1419
681
|
var React61 = __toESM(require("react"));
|
|
1420
|
-
|
|
1421
|
-
// components/SystemStatus/SystemStatus.module.scss
|
|
1422
|
-
var SystemStatus_module_default = {};
|
|
1423
|
-
|
|
1424
|
-
// components/SystemStatus/index.tsx
|
|
1425
682
|
var import_react60 = require("react");
|
|
1426
683
|
var SystemStatus = ({ ...props }) => {
|
|
1427
684
|
const uniqId = React61.useId();
|
|
1428
|
-
return /* @__PURE__ */ (0, import_react60.createElement)(
|
|
1429
|
-
"div",
|
|
1430
|
-
{
|
|
1431
|
-
...props,
|
|
1432
|
-
key: uniqId,
|
|
1433
|
-
className: `system-status ${SystemStatus_module_default["system-status"]}`
|
|
1434
|
-
}
|
|
1435
|
-
);
|
|
685
|
+
return /* @__PURE__ */ (0, import_react60.createElement)("div", { ...props, key: uniqId, className: "system-status" });
|
|
1436
686
|
};
|
|
1437
687
|
|
|
1438
688
|
// components/TaskManager/index.tsx
|
|
1439
689
|
var React62 = __toESM(require("react"));
|
|
1440
|
-
|
|
1441
|
-
// components/TaskManager/TaskManager.module.scss
|
|
1442
|
-
var TaskManager_module_default = {};
|
|
1443
|
-
|
|
1444
|
-
// components/TaskManager/index.tsx
|
|
1445
690
|
var import_react61 = require("react");
|
|
1446
691
|
var TaskManager = ({ ...props }) => {
|
|
1447
692
|
const uniqId = React62.useId();
|
|
1448
|
-
return /* @__PURE__ */ (0, import_react61.createElement)(
|
|
1449
|
-
"div",
|
|
1450
|
-
{
|
|
1451
|
-
...props,
|
|
1452
|
-
key: uniqId,
|
|
1453
|
-
className: `task-manager ${TaskManager_module_default["task-manager"]}`
|
|
1454
|
-
}
|
|
1455
|
-
);
|
|
693
|
+
return /* @__PURE__ */ (0, import_react61.createElement)("div", { ...props, key: uniqId, className: "task-manager" });
|
|
1456
694
|
};
|
|
1457
695
|
|
|
1458
696
|
// components/TeamCollaborationWidget/index.tsx
|
|
1459
697
|
var React63 = __toESM(require("react"));
|
|
1460
|
-
|
|
1461
|
-
// components/TeamCollaborationWidget/TeamCollaborationWidget.module.scss
|
|
1462
|
-
var TeamCollaborationWidget_module_default = {};
|
|
1463
|
-
|
|
1464
|
-
// components/TeamCollaborationWidget/index.tsx
|
|
1465
698
|
var import_react62 = require("react");
|
|
1466
699
|
var TeamCollaborationWidget = ({
|
|
1467
700
|
...props
|
|
1468
701
|
}) => {
|
|
1469
702
|
const uniqId = React63.useId();
|
|
1470
|
-
return /* @__PURE__ */ (0, import_react62.createElement)(
|
|
1471
|
-
"div",
|
|
1472
|
-
{
|
|
1473
|
-
...props,
|
|
1474
|
-
key: uniqId,
|
|
1475
|
-
className: `team-collaboration-widget ${TeamCollaborationWidget_module_default["team-collaboration-widget"]}`
|
|
1476
|
-
}
|
|
1477
|
-
);
|
|
703
|
+
return /* @__PURE__ */ (0, import_react62.createElement)("div", { ...props, key: uniqId, className: "team-collaboration-widget" });
|
|
1478
704
|
};
|
|
1479
705
|
|
|
1480
706
|
// components/TimeLocationWidget/index.tsx
|
|
1481
707
|
var React64 = __toESM(require("react"));
|
|
1482
|
-
|
|
1483
|
-
// components/TimeLocationWidget/TimeLocationWidget.module.scss
|
|
1484
|
-
var TimeLocationWidget_module_default = {};
|
|
1485
|
-
|
|
1486
|
-
// components/TimeLocationWidget/index.tsx
|
|
1487
708
|
var import_react63 = require("react");
|
|
1488
709
|
var TimeLocationWidget = ({
|
|
1489
710
|
...props
|
|
1490
711
|
}) => {
|
|
1491
712
|
const uniqId = React64.useId();
|
|
1492
|
-
return /* @__PURE__ */ (0, import_react63.createElement)(
|
|
1493
|
-
"div",
|
|
1494
|
-
{
|
|
1495
|
-
...props,
|
|
1496
|
-
key: uniqId,
|
|
1497
|
-
className: `time-location-widget ${TimeLocationWidget_module_default["time-location-widget"]}`
|
|
1498
|
-
}
|
|
1499
|
-
);
|
|
713
|
+
return /* @__PURE__ */ (0, import_react63.createElement)("div", { ...props, key: uniqId, className: "time-location-widget" });
|
|
1500
714
|
};
|
|
1501
715
|
|
|
1502
716
|
// components/TodoList/index.tsx
|
|
1503
717
|
var React65 = __toESM(require("react"));
|
|
1504
|
-
|
|
1505
|
-
// components/TodoList/TodoList.module.scss
|
|
1506
|
-
var TodoList_module_default = {};
|
|
1507
|
-
|
|
1508
|
-
// components/TodoList/index.tsx
|
|
1509
718
|
var import_react64 = require("react");
|
|
1510
719
|
var TodoList = ({ ...props }) => {
|
|
1511
720
|
const uniqId = React65.useId();
|
|
1512
|
-
return /* @__PURE__ */ (0, import_react64.createElement)(
|
|
1513
|
-
"div",
|
|
1514
|
-
{
|
|
1515
|
-
...props,
|
|
1516
|
-
key: uniqId,
|
|
1517
|
-
className: `todo-list ${TodoList_module_default["todo-list"]}`
|
|
1518
|
-
}
|
|
1519
|
-
);
|
|
721
|
+
return /* @__PURE__ */ (0, import_react64.createElement)("div", { ...props, key: uniqId, className: "todo-list" });
|
|
1520
722
|
};
|
|
1521
723
|
|
|
1522
724
|
// components/ToolWidget/index.tsx
|
|
1523
725
|
var React66 = __toESM(require("react"));
|
|
1524
|
-
|
|
1525
|
-
// components/ToolWidget/ToolWidget.module.scss
|
|
1526
|
-
var ToolWidget_module_default = {};
|
|
1527
|
-
|
|
1528
|
-
// components/ToolWidget/index.tsx
|
|
1529
726
|
var import_react65 = require("react");
|
|
1530
727
|
var ToolWidget = ({ ...props }) => {
|
|
1531
728
|
const uniqId = React66.useId();
|
|
1532
|
-
return /* @__PURE__ */ (0, import_react65.createElement)(
|
|
1533
|
-
"div",
|
|
1534
|
-
{
|
|
1535
|
-
...props,
|
|
1536
|
-
key: uniqId,
|
|
1537
|
-
className: `tool-widget ${ToolWidget_module_default["tool-widget"]}`
|
|
1538
|
-
}
|
|
1539
|
-
);
|
|
729
|
+
return /* @__PURE__ */ (0, import_react65.createElement)("div", { ...props, key: uniqId, className: "tool-widget" });
|
|
1540
730
|
};
|
|
1541
731
|
|
|
1542
732
|
// components/TravelPlanner/index.tsx
|
|
1543
733
|
var React67 = __toESM(require("react"));
|
|
1544
|
-
|
|
1545
|
-
// components/TravelPlanner/TravelPlanner.module.scss
|
|
1546
|
-
var TravelPlanner_module_default = {};
|
|
1547
|
-
|
|
1548
|
-
// components/TravelPlanner/index.tsx
|
|
1549
734
|
var import_react66 = require("react");
|
|
1550
735
|
var TravelPlanner = ({ ...props }) => {
|
|
1551
736
|
const uniqId = React67.useId();
|
|
1552
|
-
return /* @__PURE__ */ (0, import_react66.createElement)(
|
|
1553
|
-
"div",
|
|
1554
|
-
{
|
|
1555
|
-
...props,
|
|
1556
|
-
key: uniqId,
|
|
1557
|
-
className: `travel-planner ${TravelPlanner_module_default["travel-planner"]}`
|
|
1558
|
-
}
|
|
1559
|
-
);
|
|
737
|
+
return /* @__PURE__ */ (0, import_react66.createElement)("div", { ...props, key: uniqId, className: "travel-planner" });
|
|
1560
738
|
};
|
|
1561
739
|
|
|
1562
740
|
// components/VideoCallWidget/index.tsx
|
|
1563
741
|
var React68 = __toESM(require("react"));
|
|
1564
|
-
|
|
1565
|
-
// components/VideoCallWidget/VideoCallWidget.module.scss
|
|
1566
|
-
var VideoCallWidget_module_default = {};
|
|
1567
|
-
|
|
1568
|
-
// components/VideoCallWidget/index.tsx
|
|
1569
742
|
var import_react67 = require("react");
|
|
1570
743
|
var VideoCallWidget = ({ ...props }) => {
|
|
1571
744
|
const uniqId = React68.useId();
|
|
1572
|
-
return /* @__PURE__ */ (0, import_react67.createElement)(
|
|
1573
|
-
"div",
|
|
1574
|
-
{
|
|
1575
|
-
...props,
|
|
1576
|
-
key: uniqId,
|
|
1577
|
-
className: `video-call-widget ${VideoCallWidget_module_default["video-call-widget"]}`
|
|
1578
|
-
}
|
|
1579
|
-
);
|
|
745
|
+
return /* @__PURE__ */ (0, import_react67.createElement)("div", { ...props, key: uniqId, className: "video-call-widget" });
|
|
1580
746
|
};
|
|
1581
747
|
|
|
1582
748
|
// components/WeatherWidget/index.tsx
|
|
1583
749
|
var React69 = __toESM(require("react"));
|
|
1584
|
-
|
|
1585
|
-
// components/WeatherWidget/WeatherWidget.module.scss
|
|
1586
|
-
var WeatherWidget_module_default = {};
|
|
1587
|
-
|
|
1588
|
-
// components/WeatherWidget/index.tsx
|
|
1589
750
|
var import_react68 = require("react");
|
|
1590
751
|
var WeatherWidget = ({ ...props }) => {
|
|
1591
752
|
const uniqId = React69.useId();
|
|
1592
|
-
return /* @__PURE__ */ (0, import_react68.createElement)(
|
|
1593
|
-
"div",
|
|
1594
|
-
{
|
|
1595
|
-
...props,
|
|
1596
|
-
key: uniqId,
|
|
1597
|
-
className: `weather-widget ${WeatherWidget_module_default["weather-widget"]}`
|
|
1598
|
-
}
|
|
1599
|
-
);
|
|
753
|
+
return /* @__PURE__ */ (0, import_react68.createElement)("div", { ...props, key: uniqId, className: "weather-widget" });
|
|
1600
754
|
};
|
|
1601
755
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1602
756
|
0 && (module.exports = {
|