intlayer-editor 7.4.0 → 7.5.0-canary.1
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/client/dist/assets/{CodeBlockShiki-DfLGl0YI.js → CodeBlockShiki-BZrNB-hp.js} +4 -3
- package/client/dist/assets/{bundle-web-BMQ8vt1M.js → bundle-web-XVNhfIcT.js} +1 -1
- package/client/dist/assets/{index-DhX2a-YJ.js → index-BCw8xSvk.js} +937 -695
- package/client/dist/assets/{index-B6iFg1jy.css → index-C9tdC4Xg.css} +276 -39
- package/client/dist/index.html +2 -2
- package/package.json +23 -23
- package/server/dist/controllers/configuration.controller.cjs +1 -1
- package/server/dist/controllers/configuration.controller.d.ts +1 -1
- package/server/dist/controllers/configuration.controller.mjs +1 -1
- package/server/dist/controllers/dictionary.controller.cjs +1 -1
- package/server/dist/controllers/dictionary.controller.d.ts +1 -1
- package/server/dist/controllers/dictionary.controller.mjs +1 -1
- package/server/dist/index.cjs +1 -1
- package/server/dist/index.mjs +1 -1
- package/server/dist/routes/config.routes.cjs +1 -1
- package/server/dist/routes/config.routes.d.ts +1 -1
- package/server/dist/routes/config.routes.mjs +1 -1
- package/server/dist/routes/dictionary.routes.cjs +1 -1
- package/server/dist/routes/dictionary.routes.d.ts +1 -1
- package/server/dist/routes/dictionary.routes.mjs +1 -1
- package/server/dist/types/Routes.d.ts +1 -1
- package/server/dist/utils/checkPortAvailability.cjs +1 -1
- package/server/dist/utils/checkPortAvailability.d.ts +1 -1
- package/server/dist/utils/checkPortAvailability.mjs +1 -1
- package/server/dist/utils/httpStatusCodes.cjs +1 -1
- package/server/dist/utils/httpStatusCodes.d.ts +1 -1
- package/server/dist/utils/httpStatusCodes.mjs +1 -1
- package/server/dist/utils/responseData.cjs +1 -1
- package/server/dist/utils/responseData.d.ts +1 -1
- package/server/dist/utils/responseData.mjs +1 -1
|
@@ -254,7 +254,12 @@
|
|
|
254
254
|
--color-text-light: #121212;
|
|
255
255
|
--color-card: #e7e7e7;
|
|
256
256
|
--color-primary: #cbeb40;
|
|
257
|
+
--color-primary-100: #eef8ba;
|
|
258
|
+
--color-primary-300: #d7ef69;
|
|
257
259
|
--color-primary-500: #b6d339;
|
|
260
|
+
--color-primary-600: #99b130;
|
|
261
|
+
--color-primary-700: #748625;
|
|
262
|
+
--color-primary-900: #434d15;
|
|
258
263
|
--color-secondary: #ffe66d;
|
|
259
264
|
--color-secondary-300: #ffd845;
|
|
260
265
|
--color-secondary-500: #eca806;
|
|
@@ -723,10 +728,6 @@
|
|
|
723
728
|
z-index: -1;
|
|
724
729
|
}
|
|
725
730
|
|
|
726
|
-
.z-\[1000\] {
|
|
727
|
-
z-index: 1000;
|
|
728
|
-
}
|
|
729
|
-
|
|
730
731
|
.\!container {
|
|
731
732
|
width: 100% !important;
|
|
732
733
|
}
|
|
@@ -1068,6 +1069,11 @@
|
|
|
1068
1069
|
height: calc(var(--spacing) * 6);
|
|
1069
1070
|
}
|
|
1070
1071
|
|
|
1072
|
+
.size-7 {
|
|
1073
|
+
width: calc(var(--spacing) * 7);
|
|
1074
|
+
height: calc(var(--spacing) * 7);
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1071
1077
|
.size-8 {
|
|
1072
1078
|
width: calc(var(--spacing) * 8);
|
|
1073
1079
|
height: calc(var(--spacing) * 8);
|
|
@@ -1422,6 +1428,10 @@
|
|
|
1422
1428
|
width: calc(var(--spacing) * 32);
|
|
1423
1429
|
}
|
|
1424
1430
|
|
|
1431
|
+
.w-40 {
|
|
1432
|
+
width: calc(var(--spacing) * 40);
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1425
1435
|
.w-48 {
|
|
1426
1436
|
width: calc(var(--spacing) * 48);
|
|
1427
1437
|
}
|
|
@@ -1728,6 +1738,13 @@
|
|
|
1728
1738
|
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1729
1739
|
}
|
|
1730
1740
|
|
|
1741
|
+
.scale-120 {
|
|
1742
|
+
--tw-scale-x: 120%;
|
|
1743
|
+
--tw-scale-y: 120%;
|
|
1744
|
+
--tw-scale-z: 120%;
|
|
1745
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1731
1748
|
.-rotate-180 {
|
|
1732
1749
|
rotate: -180deg;
|
|
1733
1750
|
}
|
|
@@ -2138,6 +2155,22 @@
|
|
|
2138
2155
|
border-radius: var(--radius-3xl);
|
|
2139
2156
|
}
|
|
2140
2157
|
|
|
2158
|
+
.rounded-4xl {
|
|
2159
|
+
border-radius: var(--radius-4xl);
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
.rounded-\[2\.5rem\] {
|
|
2163
|
+
border-radius: 2.5rem;
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2166
|
+
.rounded-\[3rem\] {
|
|
2167
|
+
border-radius: 3rem;
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
.rounded-\[4rem\] {
|
|
2171
|
+
border-radius: 4rem;
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2141
2174
|
.rounded-full {
|
|
2142
2175
|
border-radius: 3.40282e38px;
|
|
2143
2176
|
}
|
|
@@ -2210,6 +2243,11 @@
|
|
|
2210
2243
|
border-width: 0;
|
|
2211
2244
|
}
|
|
2212
2245
|
|
|
2246
|
+
.border-1 {
|
|
2247
|
+
border-style: var(--tw-border-style);
|
|
2248
|
+
border-width: 1px;
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2213
2251
|
.border-2 {
|
|
2214
2252
|
border-style: var(--tw-border-style);
|
|
2215
2253
|
border-width: 2px;
|
|
@@ -2225,9 +2263,14 @@
|
|
|
2225
2263
|
border-width: 1.2px;
|
|
2226
2264
|
}
|
|
2227
2265
|
|
|
2228
|
-
.border-\[1\.
|
|
2266
|
+
.border-\[1\.3px\] {
|
|
2229
2267
|
border-style: var(--tw-border-style);
|
|
2230
|
-
border-width: 1.
|
|
2268
|
+
border-width: 1.3px;
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2271
|
+
.border-\[1px\] {
|
|
2272
|
+
border-style: var(--tw-border-style);
|
|
2273
|
+
border-width: 1px;
|
|
2231
2274
|
}
|
|
2232
2275
|
|
|
2233
2276
|
.border-x-2 {
|
|
@@ -2441,6 +2484,10 @@
|
|
|
2441
2484
|
border-color: var(--color-primary);
|
|
2442
2485
|
}
|
|
2443
2486
|
|
|
2487
|
+
.border-primary-300 {
|
|
2488
|
+
border-color: var(--color-primary-300);
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2444
2491
|
.border-primary\/20 {
|
|
2445
2492
|
border-color: #cbeb4033;
|
|
2446
2493
|
}
|
|
@@ -2691,13 +2738,13 @@
|
|
|
2691
2738
|
}
|
|
2692
2739
|
}
|
|
2693
2740
|
|
|
2694
|
-
.bg-current\/
|
|
2741
|
+
.bg-current\/20 {
|
|
2695
2742
|
background-color: currentColor;
|
|
2696
2743
|
}
|
|
2697
2744
|
|
|
2698
2745
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2699
|
-
.bg-current\/
|
|
2700
|
-
background-color: color-mix(in oklab, currentcolor
|
|
2746
|
+
.bg-current\/20 {
|
|
2747
|
+
background-color: color-mix(in oklab, currentcolor 20%, transparent);
|
|
2701
2748
|
}
|
|
2702
2749
|
}
|
|
2703
2750
|
|
|
@@ -2919,6 +2966,10 @@
|
|
|
2919
2966
|
background-color: var(--color-primary);
|
|
2920
2967
|
}
|
|
2921
2968
|
|
|
2969
|
+
.bg-primary-100 {
|
|
2970
|
+
background-color: var(--color-primary-100);
|
|
2971
|
+
}
|
|
2972
|
+
|
|
2922
2973
|
.bg-primary\/5 {
|
|
2923
2974
|
background-color: #cbeb400d;
|
|
2924
2975
|
}
|
|
@@ -3563,6 +3614,14 @@
|
|
|
3563
3614
|
padding: 1.5px;
|
|
3564
3615
|
}
|
|
3565
3616
|
|
|
3617
|
+
.p-\[1px\] {
|
|
3618
|
+
padding: 1px;
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3621
|
+
.px-0\.5 {
|
|
3622
|
+
padding-inline: calc(var(--spacing) * .5);
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3566
3625
|
.px-1 {
|
|
3567
3626
|
padding-inline: calc(var(--spacing) * 1);
|
|
3568
3627
|
}
|
|
@@ -3779,6 +3838,10 @@
|
|
|
3779
3838
|
font-family: var(--font-mono);
|
|
3780
3839
|
}
|
|
3781
3840
|
|
|
3841
|
+
.font-sans {
|
|
3842
|
+
font-family: var(--font-sans);
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3782
3845
|
.font-serif {
|
|
3783
3846
|
font-family: var(--font-serif);
|
|
3784
3847
|
}
|
|
@@ -4109,6 +4172,16 @@
|
|
|
4109
4172
|
color: var(--color-neutral-900);
|
|
4110
4173
|
}
|
|
4111
4174
|
|
|
4175
|
+
.text-neutral\/50 {
|
|
4176
|
+
color: #5d5d5d80;
|
|
4177
|
+
}
|
|
4178
|
+
|
|
4179
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4180
|
+
.text-neutral\/50 {
|
|
4181
|
+
color: color-mix(in oklab, var(--color-neutral) 50%, transparent);
|
|
4182
|
+
}
|
|
4183
|
+
}
|
|
4184
|
+
|
|
4112
4185
|
.text-neutral\/70 {
|
|
4113
4186
|
color: #5d5d5db3;
|
|
4114
4187
|
}
|
|
@@ -4151,6 +4224,14 @@
|
|
|
4151
4224
|
color: var(--color-primary);
|
|
4152
4225
|
}
|
|
4153
4226
|
|
|
4227
|
+
.text-primary-600 {
|
|
4228
|
+
color: var(--color-primary-600);
|
|
4229
|
+
}
|
|
4230
|
+
|
|
4231
|
+
.text-primary-900 {
|
|
4232
|
+
color: var(--color-primary-900);
|
|
4233
|
+
}
|
|
4234
|
+
|
|
4154
4235
|
.text-purple-200 {
|
|
4155
4236
|
color: var(--color-purple-200);
|
|
4156
4237
|
}
|
|
@@ -4462,6 +4543,16 @@
|
|
|
4462
4543
|
--tw-ring-color: var(--color-blue-300);
|
|
4463
4544
|
}
|
|
4464
4545
|
|
|
4546
|
+
.ring-current\/10 {
|
|
4547
|
+
--tw-ring-color: currentcolor;
|
|
4548
|
+
}
|
|
4549
|
+
|
|
4550
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4551
|
+
.ring-current\/10 {
|
|
4552
|
+
--tw-ring-color: color-mix(in oklab, currentcolor 10%, transparent);
|
|
4553
|
+
}
|
|
4554
|
+
}
|
|
4555
|
+
|
|
4465
4556
|
.ring-current\/20 {
|
|
4466
4557
|
--tw-ring-color: currentcolor;
|
|
4467
4558
|
}
|
|
@@ -4482,6 +4573,16 @@
|
|
|
4482
4573
|
}
|
|
4483
4574
|
}
|
|
4484
4575
|
|
|
4576
|
+
.ring-destructive\/20 {
|
|
4577
|
+
--tw-ring-color: #fb7d3c33;
|
|
4578
|
+
}
|
|
4579
|
+
|
|
4580
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4581
|
+
.ring-destructive\/20 {
|
|
4582
|
+
--tw-ring-color: color-mix(in oklab, var(--color-destructive) 20%, transparent);
|
|
4583
|
+
}
|
|
4584
|
+
}
|
|
4585
|
+
|
|
4485
4586
|
.ring-error\/20 {
|
|
4486
4587
|
--tw-ring-color: #b5180d33;
|
|
4487
4588
|
}
|
|
@@ -4510,13 +4611,23 @@
|
|
|
4510
4611
|
}
|
|
4511
4612
|
}
|
|
4512
4613
|
|
|
4513
|
-
.ring-neutral-800\/
|
|
4514
|
-
--tw-ring-color: #
|
|
4614
|
+
.ring-neutral-800\/20 {
|
|
4615
|
+
--tw-ring-color: #45454533;
|
|
4515
4616
|
}
|
|
4516
4617
|
|
|
4517
4618
|
@supports (color: color-mix(in lab, red, red)) {
|
|
4518
|
-
.ring-neutral-800\/
|
|
4519
|
-
--tw-ring-color: color-mix(in oklab, var(--color-neutral-800)
|
|
4619
|
+
.ring-neutral-800\/20 {
|
|
4620
|
+
--tw-ring-color: color-mix(in oklab, var(--color-neutral-800) 20%, transparent);
|
|
4621
|
+
}
|
|
4622
|
+
}
|
|
4623
|
+
|
|
4624
|
+
.ring-neutral\/20 {
|
|
4625
|
+
--tw-ring-color: #5d5d5d33;
|
|
4626
|
+
}
|
|
4627
|
+
|
|
4628
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4629
|
+
.ring-neutral\/20 {
|
|
4630
|
+
--tw-ring-color: color-mix(in oklab, var(--color-neutral) 20%, transparent);
|
|
4520
4631
|
}
|
|
4521
4632
|
}
|
|
4522
4633
|
|
|
@@ -4530,6 +4641,16 @@
|
|
|
4530
4641
|
}
|
|
4531
4642
|
}
|
|
4532
4643
|
|
|
4644
|
+
.ring-primary\/20 {
|
|
4645
|
+
--tw-ring-color: #cbeb4033;
|
|
4646
|
+
}
|
|
4647
|
+
|
|
4648
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4649
|
+
.ring-primary\/20 {
|
|
4650
|
+
--tw-ring-color: color-mix(in oklab, var(--color-primary) 20%, transparent);
|
|
4651
|
+
}
|
|
4652
|
+
}
|
|
4653
|
+
|
|
4533
4654
|
.ring-secondary-500\/20 {
|
|
4534
4655
|
--tw-ring-color: #eca80633;
|
|
4535
4656
|
}
|
|
@@ -4540,6 +4661,16 @@
|
|
|
4540
4661
|
}
|
|
4541
4662
|
}
|
|
4542
4663
|
|
|
4664
|
+
.ring-secondary\/20 {
|
|
4665
|
+
--tw-ring-color: #ffe66d33;
|
|
4666
|
+
}
|
|
4667
|
+
|
|
4668
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4669
|
+
.ring-secondary\/20 {
|
|
4670
|
+
--tw-ring-color: color-mix(in oklab, var(--color-secondary) 20%, transparent);
|
|
4671
|
+
}
|
|
4672
|
+
}
|
|
4673
|
+
|
|
4543
4674
|
.ring-success\/20 {
|
|
4544
4675
|
--tw-ring-color: #0c63;
|
|
4545
4676
|
}
|
|
@@ -4550,6 +4681,36 @@
|
|
|
4550
4681
|
}
|
|
4551
4682
|
}
|
|
4552
4683
|
|
|
4684
|
+
.ring-text-light\/50 {
|
|
4685
|
+
--tw-ring-color: #12121280;
|
|
4686
|
+
}
|
|
4687
|
+
|
|
4688
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4689
|
+
.ring-text-light\/50 {
|
|
4690
|
+
--tw-ring-color: color-mix(in oklab, var(--color-text-light) 50%, transparent);
|
|
4691
|
+
}
|
|
4692
|
+
}
|
|
4693
|
+
|
|
4694
|
+
.ring-text-opposite\/20 {
|
|
4695
|
+
--tw-ring-color: #fff3;
|
|
4696
|
+
}
|
|
4697
|
+
|
|
4698
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4699
|
+
.ring-text-opposite\/20 {
|
|
4700
|
+
--tw-ring-color: color-mix(in oklab, var(--color-text-opposite) 20%, transparent);
|
|
4701
|
+
}
|
|
4702
|
+
}
|
|
4703
|
+
|
|
4704
|
+
.ring-text\/10 {
|
|
4705
|
+
--tw-ring-color: #1212121a;
|
|
4706
|
+
}
|
|
4707
|
+
|
|
4708
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4709
|
+
.ring-text\/10 {
|
|
4710
|
+
--tw-ring-color: color-mix(in oklab, var(--color-text) 10%, transparent);
|
|
4711
|
+
}
|
|
4712
|
+
}
|
|
4713
|
+
|
|
4553
4714
|
.ring-text\/20 {
|
|
4554
4715
|
--tw-ring-color: #12121233;
|
|
4555
4716
|
}
|
|
@@ -4757,6 +4918,10 @@
|
|
|
4757
4918
|
user-select: text;
|
|
4758
4919
|
}
|
|
4759
4920
|
|
|
4921
|
+
.\[-ms-overflow-style\:none\] {
|
|
4922
|
+
-ms-overflow-style: none;
|
|
4923
|
+
}
|
|
4924
|
+
|
|
4760
4925
|
.\[-webkit-clip-path\:inset\(0\)\] {
|
|
4761
4926
|
-webkit-clip-path: inset(0);
|
|
4762
4927
|
}
|
|
@@ -4797,6 +4962,21 @@
|
|
|
4797
4962
|
grid-template-rows: 1fr;
|
|
4798
4963
|
}
|
|
4799
4964
|
|
|
4965
|
+
.group-focus-within\/dropdown\:bg-current\/20:is(:where(.group\/dropdown):focus-within *) {
|
|
4966
|
+
background-color: currentColor;
|
|
4967
|
+
}
|
|
4968
|
+
|
|
4969
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4970
|
+
.group-focus-within\/dropdown\:bg-current\/20:is(:where(.group\/dropdown):focus-within *) {
|
|
4971
|
+
background-color: color-mix(in oklab, currentcolor 20%, transparent);
|
|
4972
|
+
}
|
|
4973
|
+
}
|
|
4974
|
+
|
|
4975
|
+
.group-focus-within\/dropdown\:ring-4:is(:where(.group\/dropdown):focus-within *) {
|
|
4976
|
+
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
4977
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4978
|
+
}
|
|
4979
|
+
|
|
4800
4980
|
.group-focus-within\/popover\:visible:is(:where(.group\/popover):focus-within *) {
|
|
4801
4981
|
visibility: visible;
|
|
4802
4982
|
}
|
|
@@ -5348,16 +5528,6 @@
|
|
|
5348
5528
|
}
|
|
5349
5529
|
}
|
|
5350
5530
|
|
|
5351
|
-
.hover\:bg-current\/30:hover {
|
|
5352
|
-
background-color: currentColor;
|
|
5353
|
-
}
|
|
5354
|
-
|
|
5355
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
5356
|
-
.hover\:bg-current\/30:hover {
|
|
5357
|
-
background-color: color-mix(in oklab, currentcolor 30%, transparent);
|
|
5358
|
-
}
|
|
5359
|
-
}
|
|
5360
|
-
|
|
5361
5531
|
.hover\:bg-current\/90:hover {
|
|
5362
5532
|
background-color: currentColor;
|
|
5363
5533
|
}
|
|
@@ -5418,6 +5588,10 @@
|
|
|
5418
5588
|
background-color: var(--color-indigo-600);
|
|
5419
5589
|
}
|
|
5420
5590
|
|
|
5591
|
+
.hover\:bg-neutral-50:hover {
|
|
5592
|
+
background-color: var(--color-neutral-50);
|
|
5593
|
+
}
|
|
5594
|
+
|
|
5421
5595
|
.hover\:bg-neutral-100:hover {
|
|
5422
5596
|
background-color: var(--color-neutral-100);
|
|
5423
5597
|
}
|
|
@@ -5625,8 +5799,8 @@
|
|
|
5625
5799
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5626
5800
|
}
|
|
5627
5801
|
|
|
5628
|
-
.hover\:ring-
|
|
5629
|
-
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(
|
|
5802
|
+
.hover\:ring-5:hover {
|
|
5803
|
+
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(5px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
5630
5804
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5631
5805
|
}
|
|
5632
5806
|
|
|
@@ -5825,6 +5999,16 @@
|
|
|
5825
5999
|
--tw-ring-offset-color: var(--color-red-600);
|
|
5826
6000
|
}
|
|
5827
6001
|
|
|
6002
|
+
.focus-visible\:bg-current\/20:focus-visible {
|
|
6003
|
+
background-color: currentColor;
|
|
6004
|
+
}
|
|
6005
|
+
|
|
6006
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
6007
|
+
.focus-visible\:bg-current\/20:focus-visible {
|
|
6008
|
+
background-color: color-mix(in oklab, currentcolor 20%, transparent);
|
|
6009
|
+
}
|
|
6010
|
+
}
|
|
6011
|
+
|
|
5828
6012
|
.focus-visible\:ring-2:focus-visible {
|
|
5829
6013
|
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
5830
6014
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -5840,6 +6024,11 @@
|
|
|
5840
6024
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5841
6025
|
}
|
|
5842
6026
|
|
|
6027
|
+
.focus-visible\:ring-5:focus-visible {
|
|
6028
|
+
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(5px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
6029
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6030
|
+
}
|
|
6031
|
+
|
|
5843
6032
|
.focus-visible\:ring-6:focus-visible {
|
|
5844
6033
|
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(6px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
5845
6034
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -5858,18 +6047,6 @@
|
|
|
5858
6047
|
--tw-ring-offset-color: var(--color-white);
|
|
5859
6048
|
}
|
|
5860
6049
|
|
|
5861
|
-
.focus-visible\:outline-hidden:focus-visible {
|
|
5862
|
-
--tw-outline-style: none;
|
|
5863
|
-
outline-style: none;
|
|
5864
|
-
}
|
|
5865
|
-
|
|
5866
|
-
@media (forced-colors: active) {
|
|
5867
|
-
.focus-visible\:outline-hidden:focus-visible {
|
|
5868
|
-
outline-offset: 2px;
|
|
5869
|
-
outline: 2px solid #0000;
|
|
5870
|
-
}
|
|
5871
|
-
}
|
|
5872
|
-
|
|
5873
6050
|
.focus-visible\:outline-none:focus-visible {
|
|
5874
6051
|
--tw-outline-style: none;
|
|
5875
6052
|
outline-style: none;
|
|
@@ -5958,8 +6135,8 @@
|
|
|
5958
6135
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5959
6136
|
}
|
|
5960
6137
|
|
|
5961
|
-
.aria-selected\:ring-
|
|
5962
|
-
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(
|
|
6138
|
+
.aria-selected\:ring-5[aria-selected="true"] {
|
|
6139
|
+
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(5px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
5963
6140
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5964
6141
|
}
|
|
5965
6142
|
|
|
@@ -6063,6 +6240,22 @@
|
|
|
6063
6240
|
border-radius: var(--radius-4xl);
|
|
6064
6241
|
}
|
|
6065
6242
|
|
|
6243
|
+
.supports-\[corner-shape\:squircle\]\:rounded-\[2\.5rem\] {
|
|
6244
|
+
border-radius: 2.5rem;
|
|
6245
|
+
}
|
|
6246
|
+
|
|
6247
|
+
.supports-\[corner-shape\:squircle\]\:rounded-\[3rem\] {
|
|
6248
|
+
border-radius: 3rem;
|
|
6249
|
+
}
|
|
6250
|
+
|
|
6251
|
+
.supports-\[corner-shape\:squircle\]\:rounded-\[4rem\] {
|
|
6252
|
+
border-radius: 4rem;
|
|
6253
|
+
}
|
|
6254
|
+
|
|
6255
|
+
.supports-\[corner-shape\:squircle\]\:rounded-\[5rem\] {
|
|
6256
|
+
border-radius: 5rem;
|
|
6257
|
+
}
|
|
6258
|
+
|
|
6066
6259
|
.supports-\[corner-shape\:squircle\]\:rounded-full {
|
|
6067
6260
|
border-radius: 3.40282e38px;
|
|
6068
6261
|
}
|
|
@@ -6288,6 +6481,10 @@
|
|
|
6288
6481
|
border-color: var(--color-gray-700);
|
|
6289
6482
|
}
|
|
6290
6483
|
|
|
6484
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:border-neutral-700 {
|
|
6485
|
+
border-color: var(--color-neutral-700);
|
|
6486
|
+
}
|
|
6487
|
+
|
|
6291
6488
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:border-neutral-800 {
|
|
6292
6489
|
border-color: var(--color-neutral-800);
|
|
6293
6490
|
}
|
|
@@ -6296,6 +6493,10 @@
|
|
|
6296
6493
|
border-color: var(--color-neutral-950);
|
|
6297
6494
|
}
|
|
6298
6495
|
|
|
6496
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:border-primary-700 {
|
|
6497
|
+
border-color: var(--color-primary-700);
|
|
6498
|
+
}
|
|
6499
|
+
|
|
6299
6500
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:bg-blue-700 {
|
|
6300
6501
|
background-color: var(--color-blue-700);
|
|
6301
6502
|
}
|
|
@@ -6364,10 +6565,18 @@
|
|
|
6364
6565
|
background-color: var(--color-neutral-800);
|
|
6365
6566
|
}
|
|
6366
6567
|
|
|
6568
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:bg-neutral-900 {
|
|
6569
|
+
background-color: var(--color-neutral-900);
|
|
6570
|
+
}
|
|
6571
|
+
|
|
6367
6572
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:bg-neutral-950 {
|
|
6368
6573
|
background-color: var(--color-neutral-950);
|
|
6369
6574
|
}
|
|
6370
6575
|
|
|
6576
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:bg-primary-900 {
|
|
6577
|
+
background-color: var(--color-primary-900);
|
|
6578
|
+
}
|
|
6579
|
+
|
|
6371
6580
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:bg-red-900\/30 {
|
|
6372
6581
|
background-color: #82181a4d;
|
|
6373
6582
|
}
|
|
@@ -6440,6 +6649,14 @@
|
|
|
6440
6649
|
color: var(--color-neutral-400);
|
|
6441
6650
|
}
|
|
6442
6651
|
|
|
6652
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:text-neutral-500 {
|
|
6653
|
+
color: var(--color-neutral-500);
|
|
6654
|
+
}
|
|
6655
|
+
|
|
6656
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:text-neutral-600 {
|
|
6657
|
+
color: var(--color-neutral-600);
|
|
6658
|
+
}
|
|
6659
|
+
|
|
6443
6660
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:text-orange-300 {
|
|
6444
6661
|
color: var(--color-orange-300);
|
|
6445
6662
|
}
|
|
@@ -6448,6 +6665,10 @@
|
|
|
6448
6665
|
color: var(--color-pink-300);
|
|
6449
6666
|
}
|
|
6450
6667
|
|
|
6668
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:text-primary-100 {
|
|
6669
|
+
color: var(--color-primary-100);
|
|
6670
|
+
}
|
|
6671
|
+
|
|
6451
6672
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:text-purple-300 {
|
|
6452
6673
|
color: var(--color-purple-300);
|
|
6453
6674
|
}
|
|
@@ -6494,6 +6715,10 @@
|
|
|
6494
6715
|
background-color: var(--color-neutral-600);
|
|
6495
6716
|
}
|
|
6496
6717
|
|
|
6718
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:hover\:bg-neutral-800:hover {
|
|
6719
|
+
background-color: var(--color-neutral-800);
|
|
6720
|
+
}
|
|
6721
|
+
|
|
6497
6722
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:hover\:bg-neutral-900:hover {
|
|
6498
6723
|
background-color: var(--color-neutral-900);
|
|
6499
6724
|
}
|
|
@@ -6560,6 +6785,18 @@
|
|
|
6560
6785
|
height: calc(var(--spacing) * 5);
|
|
6561
6786
|
}
|
|
6562
6787
|
|
|
6788
|
+
.\[\&_pre\]\:\[-ms-overflow-style\:none\] pre {
|
|
6789
|
+
-ms-overflow-style: none;
|
|
6790
|
+
}
|
|
6791
|
+
|
|
6792
|
+
.\[\&_pre\]\:\[scrollbar-width\:none\] pre {
|
|
6793
|
+
scrollbar-width: none;
|
|
6794
|
+
}
|
|
6795
|
+
|
|
6796
|
+
.\[\&_pre\:\:-webkit-scrollbar\]\:hidden pre::-webkit-scrollbar {
|
|
6797
|
+
display: none;
|
|
6798
|
+
}
|
|
6799
|
+
|
|
6563
6800
|
.\[\&\+div\]\:text-xs + div {
|
|
6564
6801
|
font-size: var(--text-xs);
|
|
6565
6802
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
package/client/dist/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Intlayer Editor</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-BCw8xSvk.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-C9tdC4Xg.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intlayer-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.0-canary.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Integrate the Intlayer visual editor into your Intlayer projects, enabling CMS-like content management with multilingual support.",
|
|
6
6
|
"keywords": [
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"build:client": "bun build:client:ci",
|
|
67
67
|
"build:client:ci": "vite build --config ./client/vite.config.ts",
|
|
68
68
|
"build:server": "bun build:server:ci",
|
|
69
|
-
"build:server:ci": "tsdown
|
|
69
|
+
"build:server:ci": "tsdown --config ./server/tsdown.config.ts --tsconfig ./server/tsconfig.json",
|
|
70
70
|
"dev:client": "vite dev --config ./client/vite.config.ts",
|
|
71
71
|
"dev:server": "bun --watch --hot ./server/src/index.ts",
|
|
72
72
|
"format": "biome format . --check",
|
|
@@ -85,28 +85,28 @@
|
|
|
85
85
|
"typecheck": "tsc --project ./server/tsconfig.types.json --noEmit"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@intlayer/chokidar": "7.
|
|
89
|
-
"@intlayer/config": "7.
|
|
90
|
-
"@intlayer/unmerged-dictionaries-entry": "7.
|
|
88
|
+
"@intlayer/chokidar": "7.5.0-canary.1",
|
|
89
|
+
"@intlayer/config": "7.5.0-canary.1",
|
|
90
|
+
"@intlayer/unmerged-dictionaries-entry": "7.5.0-canary.1",
|
|
91
91
|
"compression": "1.8.1",
|
|
92
92
|
"cookie-parser": "1.4.7",
|
|
93
93
|
"cors": "2.8.5",
|
|
94
|
-
"express": "5.1
|
|
95
|
-
"express-intlayer": "7.
|
|
94
|
+
"express": "5.2.1",
|
|
95
|
+
"express-intlayer": "7.5.0-canary.1",
|
|
96
96
|
"helmet": "8.1.0",
|
|
97
97
|
"mime": "4.1.0"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@intlayer/design-system": "7.
|
|
101
|
-
"@intlayer/editor-react": "7.
|
|
102
|
-
"@intlayer/types": "7.
|
|
100
|
+
"@intlayer/design-system": "7.5.0-canary.1",
|
|
101
|
+
"@intlayer/editor-react": "7.5.0-canary.1",
|
|
102
|
+
"@intlayer/types": "7.5.0-canary.1",
|
|
103
103
|
"@tailwindcss/vite": "4.1.16",
|
|
104
104
|
"@tanstack/react-query": "5.90.12",
|
|
105
105
|
"@types/compression": "1.8.1",
|
|
106
106
|
"@types/cookie-parser": "1.4.10",
|
|
107
107
|
"@types/cors": "2.8.19",
|
|
108
|
-
"@types/express": "5.0.
|
|
109
|
-
"@types/node": "
|
|
108
|
+
"@types/express": "5.0.6",
|
|
109
|
+
"@types/node": "25.0.2",
|
|
110
110
|
"@types/react": "19.2.7",
|
|
111
111
|
"@types/react-dom": "19.2.3",
|
|
112
112
|
"@utils/ts-config": "1.0.4",
|
|
@@ -114,22 +114,22 @@
|
|
|
114
114
|
"autoprefixer": "10.4.21",
|
|
115
115
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
116
116
|
"clsx": "2.1.1",
|
|
117
|
-
"framer-motion": "12.23.
|
|
117
|
+
"framer-motion": "12.23.26",
|
|
118
118
|
"fuse.js": "7.1.0",
|
|
119
119
|
"globals": "16.5.0",
|
|
120
|
-
"intlayer": "7.
|
|
121
|
-
"lucide-react": "0.
|
|
122
|
-
"react": "19.2.
|
|
123
|
-
"react-dom": "19.2.
|
|
124
|
-
"react-intlayer": "7.
|
|
120
|
+
"intlayer": "7.5.0-canary.1",
|
|
121
|
+
"lucide-react": "0.561.0",
|
|
122
|
+
"react": "19.2.3",
|
|
123
|
+
"react-dom": "19.2.3",
|
|
124
|
+
"react-intlayer": "7.5.0-canary.1",
|
|
125
125
|
"react-router-dom": "7.9.5",
|
|
126
126
|
"tailwind-merge": "3.4.0",
|
|
127
|
-
"tailwindcss": "4.1.
|
|
128
|
-
"tsdown": "0.
|
|
127
|
+
"tailwindcss": "4.1.18",
|
|
128
|
+
"tsdown": "0.18.0",
|
|
129
129
|
"typescript": "5.9.3",
|
|
130
|
-
"vite": "7.
|
|
131
|
-
"vite-intlayer": "7.
|
|
132
|
-
"vitest": "4.0.
|
|
130
|
+
"vite": "7.3.0",
|
|
131
|
+
"vite-intlayer": "7.5.0-canary.1",
|
|
132
|
+
"vitest": "4.0.16"
|
|
133
133
|
},
|
|
134
134
|
"engines": {
|
|
135
135
|
"node": ">=14.18"
|
|
@@ -2,7 +2,7 @@ const require_rolldown_runtime = require('../_virtual/rolldown_runtime.cjs');
|
|
|
2
2
|
const require_utils_responseData = require('../utils/responseData.cjs');
|
|
3
3
|
let __intlayer_config = require("@intlayer/config");
|
|
4
4
|
|
|
5
|
-
//#region
|
|
5
|
+
//#region src/controllers/configuration.controller.ts
|
|
6
6
|
/**
|
|
7
7
|
* Get the Intlayer configuration
|
|
8
8
|
*/
|
|
@@ -2,7 +2,7 @@ import { ResponseData } from "../utils/responseData.js";
|
|
|
2
2
|
import { IntlayerConfig } from "@intlayer/types";
|
|
3
3
|
import { NextFunction, Request, Response } from "express";
|
|
4
4
|
|
|
5
|
-
//#region
|
|
5
|
+
//#region src/controllers/configuration.controller.d.ts
|
|
6
6
|
type GetConfigurationResult = ResponseData<IntlayerConfig>;
|
|
7
7
|
/**
|
|
8
8
|
* Get the Intlayer configuration
|