@seeqdev/qomponents 0.0.208 → 0.0.214

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.
Binary file
Binary file
package/dist/index.esm.js CHANGED
@@ -14587,8 +14587,8 @@ const CSS_TRANSITION_DURATION = process.env.NODE_ENV === 'test' ? 0 : 300; // Di
14587
14587
  const Dialog = Root$4;
14588
14588
  const DialogPortal = Portal$1;
14589
14589
  const DialogClose = Close;
14590
- const DialogContent = React__default.forwardRef(({ className = '', 'aria-describedby': ariaDescribedBy, children, ...props }, ref) => (jsx$1(DialogPortal, { children: jsx$1("div", { className: "tw:fixed tw:inset-0 tw:z-[1010] tw:flex tw:justify-center tw:items-start tw:overflow-y-auto tw:px-4 tw:py-6\n tw:pointer-events-none tw:before:content-[''] tw:before:absolute tw:before:inset-0 tw:before:bg-sq-dark-background\n tw:before:opacity-50 tw:before:select-none", children: jsxs(Content$2, { ref: ref, "aria-describedby": ariaDescribedBy, className: `tw:grid tw:gap-4 tw:border tw:bg-sq-white tw:dark:bg-sq-dark-background tw:shadow-lg tw:duration-${CSS_TRANSITION_DURATION}
14591
- tw:rounded-lg tw:w-full tw:pointer-events-auto tw:relative tw:z-[1] ${className}`, ...props, children: [jsx$1(DialogTitle$1, { className: "tw:hidden" }), children] }) }) })));
14590
+ const DialogContent = React__default.forwardRef(({ className = '', 'aria-describedby': ariaDescribedBy, children, ...props }, ref) => (jsx$1(DialogPortal, { children: jsxs("div", { className: "tw:fixed tw:inset-0 tw:z-[1010] tw:overflow-y-auto", children: [jsx$1("div", { className: "tw:select-none tw:absolute tw:w-full tw:h-full tw:opacity-50 tw:inset-0 tw:bg-sq-dark-background" }), jsxs(Content$2, { ref: ref, "aria-describedby": ariaDescribedBy, className: `tw:grid tw:gap-4 tw:border tw:bg-sq-white tw:dark:bg-sq-dark-background tw:shadow-lg tw:duration-${CSS_TRANSITION_DURATION}
14591
+ tw:rounded-lg tw:fixed tw:left-[50%] tw:top-0 tw:my-6 tw:translate-x-[-50%] tw:z-[1] ${className}`, ...props, children: [jsx$1(DialogTitle$1, { className: "tw:hidden" }), children] })] }) })));
14592
14592
  DialogContent.displayName = Content$2.displayName;
14593
14593
  const DialogHeader = (props) => (jsx$1("div", { className: "tw:w-full tw:justify-between", children: jsx$1("div", { ...props }) }));
14594
14594
  DialogHeader.displayName = 'DialogHeader';
package/dist/index.js CHANGED
@@ -14607,8 +14607,8 @@ const CSS_TRANSITION_DURATION = process.env.NODE_ENV === 'test' ? 0 : 300; // Di
14607
14607
  const Dialog = Root$4;
14608
14608
  const DialogPortal = Portal$1;
14609
14609
  const DialogClose = Close;
14610
- const DialogContent = React.forwardRef(({ className = '', 'aria-describedby': ariaDescribedBy, children, ...props }, ref) => (jsxRuntime.jsx(DialogPortal, { children: jsxRuntime.jsx("div", { className: "tw:fixed tw:inset-0 tw:z-[1010] tw:flex tw:justify-center tw:items-start tw:overflow-y-auto tw:px-4 tw:py-6\n tw:pointer-events-none tw:before:content-[''] tw:before:absolute tw:before:inset-0 tw:before:bg-sq-dark-background\n tw:before:opacity-50 tw:before:select-none", children: jsxRuntime.jsxs(Content$2, { ref: ref, "aria-describedby": ariaDescribedBy, className: `tw:grid tw:gap-4 tw:border tw:bg-sq-white tw:dark:bg-sq-dark-background tw:shadow-lg tw:duration-${CSS_TRANSITION_DURATION}
14611
- tw:rounded-lg tw:w-full tw:pointer-events-auto tw:relative tw:z-[1] ${className}`, ...props, children: [jsxRuntime.jsx(DialogTitle$1, { className: "tw:hidden" }), children] }) }) })));
14610
+ const DialogContent = React.forwardRef(({ className = '', 'aria-describedby': ariaDescribedBy, children, ...props }, ref) => (jsxRuntime.jsx(DialogPortal, { children: jsxRuntime.jsxs("div", { className: "tw:fixed tw:inset-0 tw:z-[1010] tw:overflow-y-auto", children: [jsxRuntime.jsx("div", { className: "tw:select-none tw:absolute tw:w-full tw:h-full tw:opacity-50 tw:inset-0 tw:bg-sq-dark-background" }), jsxRuntime.jsxs(Content$2, { ref: ref, "aria-describedby": ariaDescribedBy, className: `tw:grid tw:gap-4 tw:border tw:bg-sq-white tw:dark:bg-sq-dark-background tw:shadow-lg tw:duration-${CSS_TRANSITION_DURATION}
14611
+ tw:rounded-lg tw:fixed tw:left-[50%] tw:top-0 tw:my-6 tw:translate-x-[-50%] tw:z-[1] ${className}`, ...props, children: [jsxRuntime.jsx(DialogTitle$1, { className: "tw:hidden" }), children] })] }) })));
14612
14612
  DialogContent.displayName = Content$2.displayName;
14613
14613
  const DialogHeader = (props) => (jsxRuntime.jsx("div", { className: "tw:w-full tw:justify-between", children: jsxRuntime.jsx("div", { ...props }) }));
14614
14614
  DialogHeader.displayName = 'DialogHeader';
@@ -0,0 +1 @@
1
+ export default undefined;
package/dist/styles.css CHANGED
@@ -208,9 +208,6 @@
208
208
  }
209
209
  }
210
210
  @layer utilities {
211
- .tw\:pointer-events-auto {
212
- pointer-events: auto;
213
- }
214
211
  .tw\:pointer-events-auto\! {
215
212
  pointer-events: auto !important;
216
213
  }
@@ -238,6 +235,9 @@
238
235
  .tw\:-top-2 {
239
236
  top: calc(var(--tw-spacing) * -2);
240
237
  }
238
+ .tw\:top-0 {
239
+ top: calc(var(--tw-spacing) * 0);
240
+ }
241
241
  .tw\:top-1\/2 {
242
242
  top: calc(1/2 * 100%);
243
243
  }
@@ -262,6 +262,9 @@
262
262
  .tw\:left-1\/2 {
263
263
  left: calc(1/2 * 100%);
264
264
  }
265
+ .tw\:left-\[50\%\] {
266
+ left: 50%;
267
+ }
265
268
  .tw\:z-50 {
266
269
  z-index: 50;
267
270
  }
@@ -307,6 +310,9 @@
307
310
  .tw\:my-2 {
308
311
  margin-block: calc(var(--tw-spacing) * 2);
309
312
  }
313
+ .tw\:my-6 {
314
+ margin-block: calc(var(--tw-spacing) * 6);
315
+ }
310
316
  .tw\:-mt-0\.5 {
311
317
  margin-top: calc(var(--tw-spacing) * -0.5);
312
318
  }
@@ -570,6 +576,10 @@
570
576
  --tw-translate-x: -100%;
571
577
  translate: var(--tw-translate-x) var(--tw-translate-y);
572
578
  }
579
+ .tw\:translate-x-\[-50\%\] {
580
+ --tw-translate-x: -50%;
581
+ translate: var(--tw-translate-x) var(--tw-translate-y);
582
+ }
573
583
  .tw\:translate-x-full {
574
584
  --tw-translate-x: 100%;
575
585
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -622,8 +632,8 @@
622
632
  .tw\:grid-cols-2 {
623
633
  grid-template-columns: repeat(2, minmax(0, 1fr));
624
634
  }
625
- .tw\:grid-cols-4 {
626
- grid-template-columns: repeat(4, minmax(0, 1fr));
635
+ .tw\:grid-cols-5 {
636
+ grid-template-columns: repeat(5, minmax(0, 1fr));
627
637
  }
628
638
  .tw\:flex-col {
629
639
  flex-direction: column;
@@ -640,9 +650,6 @@
640
650
  .tw\:items-end {
641
651
  align-items: flex-end;
642
652
  }
643
- .tw\:items-start {
644
- align-items: flex-start;
645
- }
646
653
  .tw\:justify-between {
647
654
  justify-content: space-between;
648
655
  }
@@ -1218,12 +1225,6 @@
1218
1225
  position: absolute;
1219
1226
  }
1220
1227
  }
1221
- .tw\:before\:inset-0 {
1222
- &::before {
1223
- content: var(--tw-content);
1224
- inset: calc(var(--tw-spacing) * 0);
1225
- }
1226
- }
1227
1228
  .tw\:before\:-top-4 {
1228
1229
  &::before {
1229
1230
  content: var(--tw-content);
@@ -1335,31 +1336,12 @@
1335
1336
  border-left-color: transparent;
1336
1337
  }
1337
1338
  }
1338
- .tw\:before\:bg-sq-dark-background {
1339
- &::before {
1340
- content: var(--tw-content);
1341
- background-color: #0d1117;
1342
- }
1343
- }
1344
- .tw\:before\:opacity-50 {
1345
- &::before {
1346
- content: var(--tw-content);
1347
- opacity: 50%;
1348
- }
1349
- }
1350
1339
  .tw\:before\:content-\[\'\'\] {
1351
1340
  &::before {
1352
1341
  --tw-content: '';
1353
1342
  content: var(--tw-content);
1354
1343
  }
1355
1344
  }
1356
- .tw\:before\:select-none {
1357
- &::before {
1358
- content: var(--tw-content);
1359
- -webkit-user-select: none;
1360
- user-select: none;
1361
- }
1362
- }
1363
1345
  .tw\:first\:ml-0 {
1364
1346
  &:first-child {
1365
1347
  margin-left: calc(var(--tw-spacing) * 0);
@@ -2406,6 +2388,9 @@
2406
2388
  text-align: center;
2407
2389
  width: 1.25em;
2408
2390
  }
2391
+ .fc-models:before {
2392
+ content: '\e9c6' !important;
2393
+ }
2409
2394
  .fc-ancestor:before {
2410
2395
  content: '\e9bf' !important;
2411
2396
  }
@@ -3264,6 +3249,12 @@
3264
3249
  --sq-vantage-icon: #ac77e1;
3265
3250
  --sq-vantage-highlight: #af95c9ff;
3266
3251
  --sq-vantage-light: #d0bce5;
3252
+ --sq-insights-darker: #0096ff;
3253
+ --sq-insights-dark: #0076d1;
3254
+ --sq-insights-link: #0076d1;
3255
+ --sq-insights-icon: #0086e8;
3256
+ --sq-insights-highlight: #0086e8;
3257
+ --sq-insights-light: #cce7ff;
3267
3258
  .color_topic, .color_topic_dark {
3268
3259
  --theme-darker: var(--sq-topic-darker);
3269
3260
  --theme-dark: var(--sq-topic-dark);
@@ -3312,6 +3303,17 @@
3312
3303
  --theme-footer-text: var(--sq-vantage-dark);
3313
3304
  --theme-highlight-background: var(--sq-vantage-light);
3314
3305
  }
3306
+ .color_insights, .color_insights_dark {
3307
+ --theme-darker: var(--sq-insights-darker);
3308
+ --theme-dark: var(--sq-insights-dark);
3309
+ --theme-link: var(--sq-insights-link);
3310
+ --theme-icon: var(--sq-insights-icon);
3311
+ --theme-highlight: var(--sq-insights-highlight);
3312
+ --theme-light: var(--sq-insights-light);
3313
+ --theme-header: var(--sq-insights-dark);
3314
+ --theme-footer-text: var(--sq-insights-dark);
3315
+ --theme-highlight-background: var(--sq-insights-light);
3316
+ }
3315
3317
  --height-inputs: 34px;
3316
3318
  --height-30: 30px;
3317
3319
  --font-size-xxxsm: 0.5625rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seeqdev/qomponents",
3
- "version": "0.0.208",
3
+ "version": "0.0.214",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "source": "src/index.ts",
@@ -47,9 +47,9 @@
47
47
  "@types/tinycolor2": "1.4.2",
48
48
  "@typescript/native-preview": "7.0.0-dev.20260102.1",
49
49
  "@vitejs/plugin-react-swc": "4.2.3",
50
- "@vitest/browser": "4.0.18",
51
- "@vitest/browser-playwright": "4.0.18",
52
- "@vitest/coverage-v8": "4.0.18",
50
+ "@vitest/browser": "4.1.2",
51
+ "@vitest/browser-playwright": "4.1.2",
52
+ "@vitest/coverage-v8": "4.1.2",
53
53
  "autoprefixer": "10.4.17",
54
54
  "color": "4.2.3",
55
55
  "cross-env": "10.0.0",
@@ -68,7 +68,7 @@
68
68
  "ts-node": "10.9.2",
69
69
  "typescript": "5.9.3",
70
70
  "vite": "7.3.1",
71
- "vitest": "4.0.18",
71
+ "vitest": "4.1.2",
72
72
  "vitest-fail-on-console": "0.10.1"
73
73
  },
74
74
  "dependencies": {