intlayer-editor 7.5.0-canary.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-75Nt4Gwt.js → CodeBlockShiki-BZrNB-hp.js} +3 -3
- package/client/dist/assets/{bundle-web-BBNmn0_H.js → bundle-web-XVNhfIcT.js} +1 -1
- package/client/dist/assets/{index-Br4JAuU5.js → index-BCw8xSvk.js} +815 -692
- package/client/dist/assets/{index-BzVHXaHc.css → index-C9tdC4Xg.css} +187 -20
- 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
|
}
|
|
@@ -2146,6 +2163,14 @@
|
|
|
2146
2163
|
border-radius: 2.5rem;
|
|
2147
2164
|
}
|
|
2148
2165
|
|
|
2166
|
+
.rounded-\[3rem\] {
|
|
2167
|
+
border-radius: 3rem;
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
.rounded-\[4rem\] {
|
|
2171
|
+
border-radius: 4rem;
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2149
2174
|
.rounded-full {
|
|
2150
2175
|
border-radius: 3.40282e38px;
|
|
2151
2176
|
}
|
|
@@ -2218,6 +2243,11 @@
|
|
|
2218
2243
|
border-width: 0;
|
|
2219
2244
|
}
|
|
2220
2245
|
|
|
2246
|
+
.border-1 {
|
|
2247
|
+
border-style: var(--tw-border-style);
|
|
2248
|
+
border-width: 1px;
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2221
2251
|
.border-2 {
|
|
2222
2252
|
border-style: var(--tw-border-style);
|
|
2223
2253
|
border-width: 2px;
|
|
@@ -2233,9 +2263,14 @@
|
|
|
2233
2263
|
border-width: 1.2px;
|
|
2234
2264
|
}
|
|
2235
2265
|
|
|
2236
|
-
.border-\[1\.
|
|
2266
|
+
.border-\[1\.3px\] {
|
|
2267
|
+
border-style: var(--tw-border-style);
|
|
2268
|
+
border-width: 1.3px;
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2271
|
+
.border-\[1px\] {
|
|
2237
2272
|
border-style: var(--tw-border-style);
|
|
2238
|
-
border-width:
|
|
2273
|
+
border-width: 1px;
|
|
2239
2274
|
}
|
|
2240
2275
|
|
|
2241
2276
|
.border-x-2 {
|
|
@@ -2449,6 +2484,10 @@
|
|
|
2449
2484
|
border-color: var(--color-primary);
|
|
2450
2485
|
}
|
|
2451
2486
|
|
|
2487
|
+
.border-primary-300 {
|
|
2488
|
+
border-color: var(--color-primary-300);
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2452
2491
|
.border-primary\/20 {
|
|
2453
2492
|
border-color: #cbeb4033;
|
|
2454
2493
|
}
|
|
@@ -2927,6 +2966,10 @@
|
|
|
2927
2966
|
background-color: var(--color-primary);
|
|
2928
2967
|
}
|
|
2929
2968
|
|
|
2969
|
+
.bg-primary-100 {
|
|
2970
|
+
background-color: var(--color-primary-100);
|
|
2971
|
+
}
|
|
2972
|
+
|
|
2930
2973
|
.bg-primary\/5 {
|
|
2931
2974
|
background-color: #cbeb400d;
|
|
2932
2975
|
}
|
|
@@ -3571,6 +3614,14 @@
|
|
|
3571
3614
|
padding: 1.5px;
|
|
3572
3615
|
}
|
|
3573
3616
|
|
|
3617
|
+
.p-\[1px\] {
|
|
3618
|
+
padding: 1px;
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3621
|
+
.px-0\.5 {
|
|
3622
|
+
padding-inline: calc(var(--spacing) * .5);
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3574
3625
|
.px-1 {
|
|
3575
3626
|
padding-inline: calc(var(--spacing) * 1);
|
|
3576
3627
|
}
|
|
@@ -3787,6 +3838,10 @@
|
|
|
3787
3838
|
font-family: var(--font-mono);
|
|
3788
3839
|
}
|
|
3789
3840
|
|
|
3841
|
+
.font-sans {
|
|
3842
|
+
font-family: var(--font-sans);
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3790
3845
|
.font-serif {
|
|
3791
3846
|
font-family: var(--font-serif);
|
|
3792
3847
|
}
|
|
@@ -4117,6 +4172,16 @@
|
|
|
4117
4172
|
color: var(--color-neutral-900);
|
|
4118
4173
|
}
|
|
4119
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
|
+
|
|
4120
4185
|
.text-neutral\/70 {
|
|
4121
4186
|
color: #5d5d5db3;
|
|
4122
4187
|
}
|
|
@@ -4159,6 +4224,14 @@
|
|
|
4159
4224
|
color: var(--color-primary);
|
|
4160
4225
|
}
|
|
4161
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
|
+
|
|
4162
4235
|
.text-purple-200 {
|
|
4163
4236
|
color: var(--color-purple-200);
|
|
4164
4237
|
}
|
|
@@ -4470,6 +4543,16 @@
|
|
|
4470
4543
|
--tw-ring-color: var(--color-blue-300);
|
|
4471
4544
|
}
|
|
4472
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
|
+
|
|
4473
4556
|
.ring-current\/20 {
|
|
4474
4557
|
--tw-ring-color: currentcolor;
|
|
4475
4558
|
}
|
|
@@ -4538,16 +4621,6 @@
|
|
|
4538
4621
|
}
|
|
4539
4622
|
}
|
|
4540
4623
|
|
|
4541
|
-
.ring-neutral-800\/50 {
|
|
4542
|
-
--tw-ring-color: #45454580;
|
|
4543
|
-
}
|
|
4544
|
-
|
|
4545
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4546
|
-
.ring-neutral-800\/50 {
|
|
4547
|
-
--tw-ring-color: color-mix(in oklab, var(--color-neutral-800) 50%, transparent);
|
|
4548
|
-
}
|
|
4549
|
-
}
|
|
4550
|
-
|
|
4551
4624
|
.ring-neutral\/20 {
|
|
4552
4625
|
--tw-ring-color: #5d5d5d33;
|
|
4553
4626
|
}
|
|
@@ -4608,6 +4681,16 @@
|
|
|
4608
4681
|
}
|
|
4609
4682
|
}
|
|
4610
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
|
+
|
|
4611
4694
|
.ring-text-opposite\/20 {
|
|
4612
4695
|
--tw-ring-color: #fff3;
|
|
4613
4696
|
}
|
|
@@ -4618,6 +4701,16 @@
|
|
|
4618
4701
|
}
|
|
4619
4702
|
}
|
|
4620
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
|
+
|
|
4621
4714
|
.ring-text\/20 {
|
|
4622
4715
|
--tw-ring-color: #12121233;
|
|
4623
4716
|
}
|
|
@@ -4869,6 +4962,21 @@
|
|
|
4869
4962
|
grid-template-rows: 1fr;
|
|
4870
4963
|
}
|
|
4871
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
|
+
|
|
4872
4980
|
.group-focus-within\/popover\:visible:is(:where(.group\/popover):focus-within *) {
|
|
4873
4981
|
visibility: visible;
|
|
4874
4982
|
}
|
|
@@ -5480,6 +5588,10 @@
|
|
|
5480
5588
|
background-color: var(--color-indigo-600);
|
|
5481
5589
|
}
|
|
5482
5590
|
|
|
5591
|
+
.hover\:bg-neutral-50:hover {
|
|
5592
|
+
background-color: var(--color-neutral-50);
|
|
5593
|
+
}
|
|
5594
|
+
|
|
5483
5595
|
.hover\:bg-neutral-100:hover {
|
|
5484
5596
|
background-color: var(--color-neutral-100);
|
|
5485
5597
|
}
|
|
@@ -5687,8 +5799,8 @@
|
|
|
5687
5799
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5688
5800
|
}
|
|
5689
5801
|
|
|
5690
|
-
.hover\:ring-
|
|
5691
|
-
--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);
|
|
5692
5804
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5693
5805
|
}
|
|
5694
5806
|
|
|
@@ -5887,6 +5999,16 @@
|
|
|
5887
5999
|
--tw-ring-offset-color: var(--color-red-600);
|
|
5888
6000
|
}
|
|
5889
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
|
+
|
|
5890
6012
|
.focus-visible\:ring-2:focus-visible {
|
|
5891
6013
|
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
5892
6014
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -5902,6 +6024,11 @@
|
|
|
5902
6024
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
5903
6025
|
}
|
|
5904
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
|
+
|
|
5905
6032
|
.focus-visible\:ring-6:focus-visible {
|
|
5906
6033
|
--tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(6px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
5907
6034
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -6008,8 +6135,8 @@
|
|
|
6008
6135
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6009
6136
|
}
|
|
6010
6137
|
|
|
6011
|
-
.aria-selected\:ring-
|
|
6012
|
-
--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);
|
|
6013
6140
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
6014
6141
|
}
|
|
6015
6142
|
|
|
@@ -6121,6 +6248,14 @@
|
|
|
6121
6248
|
border-radius: 3rem;
|
|
6122
6249
|
}
|
|
6123
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
|
+
|
|
6124
6259
|
.supports-\[corner-shape\:squircle\]\:rounded-full {
|
|
6125
6260
|
border-radius: 3.40282e38px;
|
|
6126
6261
|
}
|
|
@@ -6346,6 +6481,10 @@
|
|
|
6346
6481
|
border-color: var(--color-gray-700);
|
|
6347
6482
|
}
|
|
6348
6483
|
|
|
6484
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:border-neutral-700 {
|
|
6485
|
+
border-color: var(--color-neutral-700);
|
|
6486
|
+
}
|
|
6487
|
+
|
|
6349
6488
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:border-neutral-800 {
|
|
6350
6489
|
border-color: var(--color-neutral-800);
|
|
6351
6490
|
}
|
|
@@ -6354,6 +6493,10 @@
|
|
|
6354
6493
|
border-color: var(--color-neutral-950);
|
|
6355
6494
|
}
|
|
6356
6495
|
|
|
6496
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:border-primary-700 {
|
|
6497
|
+
border-color: var(--color-primary-700);
|
|
6498
|
+
}
|
|
6499
|
+
|
|
6357
6500
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:bg-blue-700 {
|
|
6358
6501
|
background-color: var(--color-blue-700);
|
|
6359
6502
|
}
|
|
@@ -6422,10 +6565,18 @@
|
|
|
6422
6565
|
background-color: var(--color-neutral-800);
|
|
6423
6566
|
}
|
|
6424
6567
|
|
|
6568
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:bg-neutral-900 {
|
|
6569
|
+
background-color: var(--color-neutral-900);
|
|
6570
|
+
}
|
|
6571
|
+
|
|
6425
6572
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:bg-neutral-950 {
|
|
6426
6573
|
background-color: var(--color-neutral-950);
|
|
6427
6574
|
}
|
|
6428
6575
|
|
|
6576
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:bg-primary-900 {
|
|
6577
|
+
background-color: var(--color-primary-900);
|
|
6578
|
+
}
|
|
6579
|
+
|
|
6429
6580
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:bg-red-900\/30 {
|
|
6430
6581
|
background-color: #82181a4d;
|
|
6431
6582
|
}
|
|
@@ -6498,6 +6649,14 @@
|
|
|
6498
6649
|
color: var(--color-neutral-400);
|
|
6499
6650
|
}
|
|
6500
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
|
+
|
|
6501
6660
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:text-orange-300 {
|
|
6502
6661
|
color: var(--color-orange-300);
|
|
6503
6662
|
}
|
|
@@ -6506,6 +6665,10 @@
|
|
|
6506
6665
|
color: var(--color-pink-300);
|
|
6507
6666
|
}
|
|
6508
6667
|
|
|
6668
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:text-primary-100 {
|
|
6669
|
+
color: var(--color-primary-100);
|
|
6670
|
+
}
|
|
6671
|
+
|
|
6509
6672
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:text-purple-300 {
|
|
6510
6673
|
color: var(--color-purple-300);
|
|
6511
6674
|
}
|
|
@@ -6552,6 +6715,10 @@
|
|
|
6552
6715
|
background-color: var(--color-neutral-600);
|
|
6553
6716
|
}
|
|
6554
6717
|
|
|
6718
|
+
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:hover\:bg-neutral-800:hover {
|
|
6719
|
+
background-color: var(--color-neutral-800);
|
|
6720
|
+
}
|
|
6721
|
+
|
|
6555
6722
|
:where([data-theme="dark"], [data-theme="dark"] *) .dark\:hover\:bg-neutral-900:hover {
|
|
6556
6723
|
background-color: var(--color-neutral-900);
|
|
6557
6724
|
}
|
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.5.0-canary.
|
|
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.5.0-canary.
|
|
89
|
-
"@intlayer/config": "7.5.0-canary.
|
|
90
|
-
"@intlayer/unmerged-dictionaries-entry": "7.5.0-canary.
|
|
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.5.0-canary.
|
|
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.5.0-canary.
|
|
101
|
-
"@intlayer/editor-react": "7.5.0-canary.
|
|
102
|
-
"@intlayer/types": "7.5.0-canary.
|
|
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.5.0-canary.
|
|
121
|
-
"lucide-react": "0.
|
|
122
|
-
"react": "19.2.
|
|
123
|
-
"react-dom": "19.2.
|
|
124
|
-
"react-intlayer": "7.5.0-canary.
|
|
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.5.0-canary.
|
|
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
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { formatResponse } from "../utils/responseData.mjs";
|
|
2
2
|
import { getConfiguration as getConfiguration$1 } from "@intlayer/config";
|
|
3
3
|
|
|
4
|
-
//#region
|
|
4
|
+
//#region src/controllers/configuration.controller.ts
|
|
5
5
|
/**
|
|
6
6
|
* Get the Intlayer configuration
|
|
7
7
|
*/
|
|
@@ -5,7 +5,7 @@ let __intlayer_chokidar = require("@intlayer/chokidar");
|
|
|
5
5
|
let __intlayer_unmerged_dictionaries_entry = require("@intlayer/unmerged-dictionaries-entry");
|
|
6
6
|
let express_intlayer = require("express-intlayer");
|
|
7
7
|
|
|
8
|
-
//#region
|
|
8
|
+
//#region src/controllers/dictionary.controller.ts
|
|
9
9
|
/**
|
|
10
10
|
* Get the Intlayer configuration
|
|
11
11
|
*/
|
|
@@ -4,7 +4,7 @@ import { NextFunction, Request, Response } from "express";
|
|
|
4
4
|
import { DictionaryStatus } from "@intlayer/chokidar";
|
|
5
5
|
import { UnmergedDictionaries } from "@intlayer/unmerged-dictionaries-entry";
|
|
6
6
|
|
|
7
|
-
//#region
|
|
7
|
+
//#region src/controllers/dictionary.controller.d.ts
|
|
8
8
|
type GetDictionariesResult = ResponseData<UnmergedDictionaries>;
|
|
9
9
|
/**
|
|
10
10
|
* Get the Intlayer configuration
|
|
@@ -4,7 +4,7 @@ import { writeContentDeclaration as writeContentDeclaration$1 } from "@intlayer/
|
|
|
4
4
|
import { getUnmergedDictionaries } from "@intlayer/unmerged-dictionaries-entry";
|
|
5
5
|
import { t } from "express-intlayer";
|
|
6
6
|
|
|
7
|
-
//#region
|
|
7
|
+
//#region src/controllers/dictionary.controller.ts
|
|
8
8
|
/**
|
|
9
9
|
* Get the Intlayer configuration
|
|
10
10
|
*/
|
package/server/dist/index.cjs
CHANGED
|
@@ -20,7 +20,7 @@ helmet = require_rolldown_runtime.__toESM(helmet);
|
|
|
20
20
|
let mime = require("mime");
|
|
21
21
|
mime = require_rolldown_runtime.__toESM(mime);
|
|
22
22
|
|
|
23
|
-
//#region
|
|
23
|
+
//#region src/index.ts
|
|
24
24
|
const __dirname$1 = (0, node_path.dirname)((0, node_url.fileURLToPath)(require("url").pathToFileURL(__filename).href));
|
|
25
25
|
const envFileOptions = {
|
|
26
26
|
env: process.env.NODE_ENV,
|
package/server/dist/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@ const require_controllers_configuration_controller = require('../controllers/con
|
|
|
3
3
|
let __intlayer_config = require("@intlayer/config");
|
|
4
4
|
let express = require("express");
|
|
5
5
|
|
|
6
|
-
//#region
|
|
6
|
+
//#region src/routes/config.routes.ts
|
|
7
7
|
const configurationRouter = (0, express.Router)();
|
|
8
8
|
const { editor } = (0, __intlayer_config.getConfiguration)();
|
|
9
9
|
const getBaseURL = () => `${editor.editorURL}/api/dictionary`;
|
|
@@ -2,7 +2,7 @@ import { getConfiguration as getConfiguration$1 } from "../controllers/configura
|
|
|
2
2
|
import { getConfiguration } from "@intlayer/config";
|
|
3
3
|
import { Router } from "express";
|
|
4
4
|
|
|
5
|
-
//#region
|
|
5
|
+
//#region src/routes/config.routes.ts
|
|
6
6
|
const configurationRouter = Router();
|
|
7
7
|
const { editor } = getConfiguration();
|
|
8
8
|
const getBaseURL = () => `${editor.editorURL}/api/dictionary`;
|
|
@@ -3,7 +3,7 @@ const require_controllers_dictionary_controller = require('../controllers/dictio
|
|
|
3
3
|
let __intlayer_config = require("@intlayer/config");
|
|
4
4
|
let express = require("express");
|
|
5
5
|
|
|
6
|
-
//#region
|
|
6
|
+
//#region src/routes/dictionary.routes.ts
|
|
7
7
|
const dictionaryRouter = (0, express.Router)();
|
|
8
8
|
const { editor } = (0, __intlayer_config.getConfiguration)();
|
|
9
9
|
const getBaseURL = () => `${editor.editorURL}/api/dictionary`;
|
|
@@ -2,7 +2,7 @@ import { getDictionaries, writeContentDeclaration } from "../controllers/diction
|
|
|
2
2
|
import { getConfiguration } from "@intlayer/config";
|
|
3
3
|
import { Router } from "express";
|
|
4
4
|
|
|
5
|
-
//#region
|
|
5
|
+
//#region src/routes/dictionary.routes.ts
|
|
6
6
|
const dictionaryRouter = Router();
|
|
7
7
|
const { editor } = getConfiguration();
|
|
8
8
|
const getBaseURL = () => `${editor.editorURL}/api/dictionary`;
|
|
@@ -2,7 +2,7 @@ const require_rolldown_runtime = require('../_virtual/rolldown_runtime.cjs');
|
|
|
2
2
|
let node_net = require("node:net");
|
|
3
3
|
node_net = require_rolldown_runtime.__toESM(node_net);
|
|
4
4
|
|
|
5
|
-
//#region
|
|
5
|
+
//#region src/utils/checkPortAvailability.ts
|
|
6
6
|
const checkPortAvailability = (port) => {
|
|
7
7
|
return new Promise((resolve) => {
|
|
8
8
|
const server = node_net.default.createServer();
|