@remotion/design 4.0.405 → 4.0.407
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/InlineCode.d.ts +3 -0
- package/dist/InlineCode.js +4 -0
- package/dist/Link.d.ts +2 -0
- package/dist/Link.js +5 -0
- package/dist/Tabs.d.ts +7 -0
- package/dist/Tabs.js +12 -0
- package/dist/esm/index.mjs +1323 -100
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/tailwind.css +66 -0
- package/package.json +7 -6
package/dist/index.d.ts
CHANGED
|
@@ -2,9 +2,12 @@ export { Button } from './Button';
|
|
|
2
2
|
export { Card } from './Card';
|
|
3
3
|
export { CheckIcon } from './CheckIcon';
|
|
4
4
|
export { Counter } from './Counter';
|
|
5
|
+
export { InlineCode } from './InlineCode';
|
|
5
6
|
export { Input } from './Input';
|
|
7
|
+
export { Link } from './Link';
|
|
6
8
|
export { PlanePaperIcon } from './PaperPlaneIcon';
|
|
7
9
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, } from './Select';
|
|
8
10
|
export { Switch } from './Switch';
|
|
11
|
+
export { Tabs, TabsContent, TabsList, TabsTrigger } from './Tabs';
|
|
9
12
|
export { Textarea } from './Textarea';
|
|
10
13
|
export { Triangle } from './Triangle';
|
package/dist/index.js
CHANGED
|
@@ -2,9 +2,12 @@ export { Button } from './Button';
|
|
|
2
2
|
export { Card } from './Card';
|
|
3
3
|
export { CheckIcon } from './CheckIcon';
|
|
4
4
|
export { Counter } from './Counter';
|
|
5
|
+
export { InlineCode } from './InlineCode';
|
|
5
6
|
export { Input } from './Input';
|
|
7
|
+
export { Link } from './Link';
|
|
6
8
|
export { PlanePaperIcon } from './PaperPlaneIcon';
|
|
7
9
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, } from './Select';
|
|
8
10
|
export { Switch } from './Switch';
|
|
11
|
+
export { Tabs, TabsContent, TabsList, TabsTrigger } from './Tabs';
|
|
9
12
|
export { Textarea } from './Textarea';
|
|
10
13
|
export { Triangle } from './Triangle';
|
package/dist/tailwind.css
CHANGED
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
44
44
|
"Courier New", monospace;
|
|
45
45
|
--color-slate-200: oklch(92.9% 0.013 255.508);
|
|
46
|
+
--color-gray-100: oklch(96.7% 0.003 264.542);
|
|
46
47
|
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
47
48
|
--color-black: #000;
|
|
48
49
|
--color-white: #fff;
|
|
@@ -261,6 +262,9 @@
|
|
|
261
262
|
.my-1 {
|
|
262
263
|
margin-block: calc(var(--spacing) * 1);
|
|
263
264
|
}
|
|
265
|
+
.mt-2 {
|
|
266
|
+
margin-top: calc(var(--spacing) * 2);
|
|
267
|
+
}
|
|
264
268
|
.box-border {
|
|
265
269
|
box-sizing: border-box;
|
|
266
270
|
}
|
|
@@ -393,6 +397,10 @@
|
|
|
393
397
|
border-bottom-style: var(--tw-border-style);
|
|
394
398
|
border-bottom-width: 4px;
|
|
395
399
|
}
|
|
400
|
+
.border-none {
|
|
401
|
+
--tw-border-style: none;
|
|
402
|
+
border-style: none;
|
|
403
|
+
}
|
|
396
404
|
.border-solid {
|
|
397
405
|
--tw-border-style: solid;
|
|
398
406
|
border-style: solid;
|
|
@@ -499,6 +507,12 @@
|
|
|
499
507
|
--tw-font-weight: var(--font-weight-semibold);
|
|
500
508
|
font-weight: var(--font-weight-semibold);
|
|
501
509
|
}
|
|
510
|
+
.whitespace-nowrap {
|
|
511
|
+
white-space: nowrap;
|
|
512
|
+
}
|
|
513
|
+
.text-brand {
|
|
514
|
+
color: #0b84f3;
|
|
515
|
+
}
|
|
502
516
|
.text-inherit {
|
|
503
517
|
color: inherit;
|
|
504
518
|
}
|
|
@@ -509,6 +523,12 @@
|
|
|
509
523
|
--tw-numeric-spacing: tabular-nums;
|
|
510
524
|
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
511
525
|
}
|
|
526
|
+
.underline {
|
|
527
|
+
text-decoration-line: underline;
|
|
528
|
+
}
|
|
529
|
+
.underline-offset-4 {
|
|
530
|
+
text-underline-offset: 4px;
|
|
531
|
+
}
|
|
512
532
|
.opacity-50 {
|
|
513
533
|
opacity: 50%;
|
|
514
534
|
}
|
|
@@ -568,6 +588,33 @@
|
|
|
568
588
|
}
|
|
569
589
|
}
|
|
570
590
|
}
|
|
591
|
+
.focus-visible\:ring-2 {
|
|
592
|
+
&:focus-visible {
|
|
593
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
594
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
.focus-visible\:ring-offset-2 {
|
|
598
|
+
&:focus-visible {
|
|
599
|
+
--tw-ring-offset-width: 2px;
|
|
600
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
.focus-visible\:outline-hidden {
|
|
604
|
+
&:focus-visible {
|
|
605
|
+
--tw-outline-style: none;
|
|
606
|
+
outline-style: none;
|
|
607
|
+
@media (forced-colors: active) {
|
|
608
|
+
outline: 2px solid transparent;
|
|
609
|
+
outline-offset: 2px;
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
.disabled\:pointer-events-none {
|
|
614
|
+
&:disabled {
|
|
615
|
+
pointer-events: none;
|
|
616
|
+
}
|
|
617
|
+
}
|
|
571
618
|
.disabled\:cursor-default {
|
|
572
619
|
&:disabled {
|
|
573
620
|
cursor: default;
|
|
@@ -627,6 +674,25 @@
|
|
|
627
674
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
628
675
|
}
|
|
629
676
|
}
|
|
677
|
+
.data-\[state\=active\]\:bg-brand {
|
|
678
|
+
&[data-state="active"] {
|
|
679
|
+
background-color: #0b84f3;
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
.data-\[state\=active\]\:text-white {
|
|
683
|
+
&[data-state="active"] {
|
|
684
|
+
color: var(--color-white);
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
.data-\[state\=inactive\]\:hover\:bg-gray-100 {
|
|
688
|
+
&[data-state="inactive"] {
|
|
689
|
+
&:hover {
|
|
690
|
+
@media (hover: hover) {
|
|
691
|
+
background-color: var(--color-gray-100);
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
}
|
|
630
696
|
.dark\:bg-\[\#121212\] {
|
|
631
697
|
@media (prefers-color-scheme: dark) {
|
|
632
698
|
background-color: #121212;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/design",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.407",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"module": "dist/esm/index.mjs",
|
|
@@ -19,12 +19,13 @@
|
|
|
19
19
|
"make": "tsc -d && bun --env-file=../.env.bundle bundle.ts"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@remotion/paths": "4.0.
|
|
23
|
-
"@remotion/shapes": "4.0.
|
|
24
|
-
"@remotion/svg-3d-engine": "4.0.
|
|
22
|
+
"@remotion/paths": "4.0.407",
|
|
23
|
+
"@remotion/shapes": "4.0.407",
|
|
24
|
+
"@remotion/svg-3d-engine": "4.0.407",
|
|
25
25
|
"clsx": "^2.1.1",
|
|
26
|
-
"remotion": "4.0.
|
|
26
|
+
"remotion": "4.0.407",
|
|
27
27
|
"@radix-ui/react-select": "2.1.1",
|
|
28
|
+
"@radix-ui/react-tabs": "^1.1.0",
|
|
28
29
|
"lucide-react": "0.439.0"
|
|
29
30
|
},
|
|
30
31
|
"peerDependencies": {
|
|
@@ -32,7 +33,7 @@
|
|
|
32
33
|
"react-dom": ">=16.8.0"
|
|
33
34
|
},
|
|
34
35
|
"devDependencies": {
|
|
35
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
36
|
+
"@remotion/eslint-config-internal": "4.0.407",
|
|
36
37
|
"eslint": "9.19.0",
|
|
37
38
|
"react": "19.2.3",
|
|
38
39
|
"react-dom": "19.2.3",
|