@mirohq/design-system-grid 2.1.14 → 2.1.16-themes.0
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/types.d.ts +236 -214
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
38
38
|
readonly lg: "4px";
|
|
39
39
|
};
|
|
40
40
|
colors: {
|
|
41
|
+
readonly black: any;
|
|
41
42
|
readonly 'blue-100': any;
|
|
42
43
|
readonly 'blue-200': any;
|
|
43
44
|
readonly 'blue-300': any;
|
|
@@ -57,6 +58,15 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
57
58
|
readonly 'gray-700': any;
|
|
58
59
|
readonly 'gray-800': any;
|
|
59
60
|
readonly 'gray-900': any;
|
|
61
|
+
readonly 'green-100': any;
|
|
62
|
+
readonly 'green-200': any;
|
|
63
|
+
readonly 'green-300': any;
|
|
64
|
+
readonly 'green-400': any;
|
|
65
|
+
readonly 'green-500': any;
|
|
66
|
+
readonly 'green-600': any;
|
|
67
|
+
readonly 'green-700': any;
|
|
68
|
+
readonly 'green-800': any;
|
|
69
|
+
readonly 'green-900': any;
|
|
60
70
|
readonly 'indigo-100': any;
|
|
61
71
|
readonly 'indigo-200': any;
|
|
62
72
|
readonly 'indigo-300': any;
|
|
@@ -75,6 +85,8 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
75
85
|
readonly 'red-700': any;
|
|
76
86
|
readonly 'red-800': any;
|
|
77
87
|
readonly 'red-900': any;
|
|
88
|
+
readonly transparent: any;
|
|
89
|
+
readonly white: any;
|
|
78
90
|
readonly 'yellow-100': any;
|
|
79
91
|
readonly 'yellow-200': any;
|
|
80
92
|
readonly 'yellow-300': any;
|
|
@@ -84,113 +96,112 @@ declare const StyledGrid: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
84
96
|
readonly 'yellow-700': any;
|
|
85
97
|
readonly 'yellow-800': any;
|
|
86
98
|
readonly 'yellow-900': any;
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
readonly 'border-warning'?: any;
|
|
99
|
+
"background-alpha-active"?: any;
|
|
100
|
+
"background-alpha-hover"?: any;
|
|
101
|
+
"background-danger-prominent"?: any;
|
|
102
|
+
"background-danger-prominent-active"?: any;
|
|
103
|
+
"background-danger-prominent-hover"?: any;
|
|
104
|
+
"background-danger-subtle"?: any;
|
|
105
|
+
"background-danger-subtle-active"?: any;
|
|
106
|
+
"background-danger-subtle-hover"?: any;
|
|
107
|
+
"background-neutrals"?: any;
|
|
108
|
+
"background-neutrals-active"?: any;
|
|
109
|
+
"background-neutrals-container"?: any;
|
|
110
|
+
"background-neutrals-controls-disabled"?: any;
|
|
111
|
+
"background-neutrals-disabled"?: any;
|
|
112
|
+
"background-neutrals-hover"?: any;
|
|
113
|
+
"background-neutrals-inactive"?: any;
|
|
114
|
+
"background-neutrals-inactive-hover"?: any;
|
|
115
|
+
"background-neutrals-inverted"?: any;
|
|
116
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
117
|
+
"background-neutrals-page"?: any;
|
|
118
|
+
"background-neutrals-page-subtle"?: any;
|
|
119
|
+
"background-neutrals-scrolls"?: any;
|
|
120
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
121
|
+
"background-neutrals-subtle"?: any;
|
|
122
|
+
"background-neutrals-subtle-active"?: any;
|
|
123
|
+
"background-neutrals-subtle-hover"?: any;
|
|
124
|
+
"background-primary-prominent"?: any;
|
|
125
|
+
"background-primary-prominent-active"?: any;
|
|
126
|
+
"background-primary-prominent-hover"?: any;
|
|
127
|
+
"background-primary-prominent-selected"?: any;
|
|
128
|
+
"background-primary-subtle"?: any;
|
|
129
|
+
"background-primary-subtle-active"?: any;
|
|
130
|
+
"background-primary-subtle-hover"?: any;
|
|
131
|
+
"background-primary-subtle-selected"?: any;
|
|
132
|
+
"background-success"?: any;
|
|
133
|
+
"background-warning-prominent"?: any;
|
|
134
|
+
"background-warning-subtle"?: any;
|
|
135
|
+
"border-danger"?: any;
|
|
136
|
+
"border-danger-active"?: any;
|
|
137
|
+
"border-danger-hover"?: any;
|
|
138
|
+
"border-focus-inner"?: any;
|
|
139
|
+
"border-focus-middle"?: any;
|
|
140
|
+
"border-focus-outer"?: any;
|
|
141
|
+
"border-neutrals"?: any;
|
|
142
|
+
"border-neutrals-active"?: any;
|
|
143
|
+
"border-neutrals-controls"?: any;
|
|
144
|
+
"border-neutrals-controls-disabled"?: any;
|
|
145
|
+
"border-neutrals-disabled"?: any;
|
|
146
|
+
"border-neutrals-hover"?: any;
|
|
147
|
+
"border-neutrals-inverted"?: any;
|
|
148
|
+
"border-neutrals-subtle"?: any;
|
|
149
|
+
"border-neutrals-text"?: any;
|
|
150
|
+
"border-neutrals-text-active"?: any;
|
|
151
|
+
"border-neutrals-text-hover"?: any;
|
|
152
|
+
"border-neutrals-text-subtle"?: any;
|
|
153
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
154
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
155
|
+
"border-neutrals-transparent"?: any;
|
|
156
|
+
"border-primary"?: any;
|
|
157
|
+
"border-primary-active"?: any;
|
|
158
|
+
"border-primary-hover"?: any;
|
|
159
|
+
"border-primary-inverted"?: any;
|
|
160
|
+
"border-success"?: any;
|
|
161
|
+
"border-warning"?: any;
|
|
162
|
+
"icon-danger"?: any;
|
|
163
|
+
"icon-danger-active"?: any;
|
|
164
|
+
"icon-danger-hover"?: any;
|
|
165
|
+
"icon-danger-inverted"?: any;
|
|
166
|
+
"icon-neutrals"?: any;
|
|
167
|
+
"icon-neutrals-disabled"?: any;
|
|
168
|
+
"icon-neutrals-inactive"?: any;
|
|
169
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
170
|
+
"icon-neutrals-inverted"?: any;
|
|
171
|
+
"icon-neutrals-search"?: any;
|
|
172
|
+
"icon-neutrals-subtle"?: any;
|
|
173
|
+
"icon-neutrals-text"?: any;
|
|
174
|
+
"icon-primary"?: any;
|
|
175
|
+
"icon-primary-active"?: any;
|
|
176
|
+
"icon-primary-hover"?: any;
|
|
177
|
+
"icon-primary-inverted"?: any;
|
|
178
|
+
"icon-primary-selected"?: any;
|
|
179
|
+
"icon-success"?: any;
|
|
180
|
+
"icon-success-inverted"?: any;
|
|
181
|
+
"icon-warning"?: any;
|
|
182
|
+
"icon-warning-prominent"?: any;
|
|
183
|
+
"text-danger"?: any;
|
|
184
|
+
"text-danger-active"?: any;
|
|
185
|
+
"text-danger-hover"?: any;
|
|
186
|
+
"text-danger-inverted"?: any;
|
|
187
|
+
"text-neutrals"?: any;
|
|
188
|
+
"text-neutrals-active"?: any;
|
|
189
|
+
"text-neutrals-disabled"?: any;
|
|
190
|
+
"text-neutrals-hover"?: any;
|
|
191
|
+
"text-neutrals-inverted"?: any;
|
|
192
|
+
"text-neutrals-placeholder"?: any;
|
|
193
|
+
"text-neutrals-placeholder-only"?: any;
|
|
194
|
+
"text-neutrals-subtle"?: any;
|
|
195
|
+
"text-neutrals-subtle-active"?: any;
|
|
196
|
+
"text-neutrals-subtle-hover"?: any;
|
|
197
|
+
"text-primary"?: any;
|
|
198
|
+
"text-primary-active"?: any;
|
|
199
|
+
"text-primary-hover"?: any;
|
|
200
|
+
"text-primary-inverted"?: any;
|
|
201
|
+
"text-primary-inverted-subtle"?: any;
|
|
202
|
+
"text-primary-selected"?: any;
|
|
203
|
+
"text-success"?: any;
|
|
204
|
+
"text-warning"?: any;
|
|
194
205
|
};
|
|
195
206
|
'font-sizes': {
|
|
196
207
|
readonly 150: "0.75rem";
|
|
@@ -512,6 +523,7 @@ declare const StyledItem: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
512
523
|
readonly lg: "4px";
|
|
513
524
|
};
|
|
514
525
|
colors: {
|
|
526
|
+
readonly black: any;
|
|
515
527
|
readonly 'blue-100': any;
|
|
516
528
|
readonly 'blue-200': any;
|
|
517
529
|
readonly 'blue-300': any;
|
|
@@ -531,6 +543,15 @@ declare const StyledItem: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
531
543
|
readonly 'gray-700': any;
|
|
532
544
|
readonly 'gray-800': any;
|
|
533
545
|
readonly 'gray-900': any;
|
|
546
|
+
readonly 'green-100': any;
|
|
547
|
+
readonly 'green-200': any;
|
|
548
|
+
readonly 'green-300': any;
|
|
549
|
+
readonly 'green-400': any;
|
|
550
|
+
readonly 'green-500': any;
|
|
551
|
+
readonly 'green-600': any;
|
|
552
|
+
readonly 'green-700': any;
|
|
553
|
+
readonly 'green-800': any;
|
|
554
|
+
readonly 'green-900': any;
|
|
534
555
|
readonly 'indigo-100': any;
|
|
535
556
|
readonly 'indigo-200': any;
|
|
536
557
|
readonly 'indigo-300': any;
|
|
@@ -549,6 +570,8 @@ declare const StyledItem: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
549
570
|
readonly 'red-700': any;
|
|
550
571
|
readonly 'red-800': any;
|
|
551
572
|
readonly 'red-900': any;
|
|
573
|
+
readonly transparent: any;
|
|
574
|
+
readonly white: any;
|
|
552
575
|
readonly 'yellow-100': any;
|
|
553
576
|
readonly 'yellow-200': any;
|
|
554
577
|
readonly 'yellow-300': any;
|
|
@@ -558,113 +581,112 @@ declare const StyledItem: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
558
581
|
readonly 'yellow-700': any;
|
|
559
582
|
readonly 'yellow-800': any;
|
|
560
583
|
readonly 'yellow-900': any;
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
readonly 'border-warning'?: any;
|
|
584
|
+
"background-alpha-active"?: any;
|
|
585
|
+
"background-alpha-hover"?: any;
|
|
586
|
+
"background-danger-prominent"?: any;
|
|
587
|
+
"background-danger-prominent-active"?: any;
|
|
588
|
+
"background-danger-prominent-hover"?: any;
|
|
589
|
+
"background-danger-subtle"?: any;
|
|
590
|
+
"background-danger-subtle-active"?: any;
|
|
591
|
+
"background-danger-subtle-hover"?: any;
|
|
592
|
+
"background-neutrals"?: any;
|
|
593
|
+
"background-neutrals-active"?: any;
|
|
594
|
+
"background-neutrals-container"?: any;
|
|
595
|
+
"background-neutrals-controls-disabled"?: any;
|
|
596
|
+
"background-neutrals-disabled"?: any;
|
|
597
|
+
"background-neutrals-hover"?: any;
|
|
598
|
+
"background-neutrals-inactive"?: any;
|
|
599
|
+
"background-neutrals-inactive-hover"?: any;
|
|
600
|
+
"background-neutrals-inverted"?: any;
|
|
601
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
602
|
+
"background-neutrals-page"?: any;
|
|
603
|
+
"background-neutrals-page-subtle"?: any;
|
|
604
|
+
"background-neutrals-scrolls"?: any;
|
|
605
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
606
|
+
"background-neutrals-subtle"?: any;
|
|
607
|
+
"background-neutrals-subtle-active"?: any;
|
|
608
|
+
"background-neutrals-subtle-hover"?: any;
|
|
609
|
+
"background-primary-prominent"?: any;
|
|
610
|
+
"background-primary-prominent-active"?: any;
|
|
611
|
+
"background-primary-prominent-hover"?: any;
|
|
612
|
+
"background-primary-prominent-selected"?: any;
|
|
613
|
+
"background-primary-subtle"?: any;
|
|
614
|
+
"background-primary-subtle-active"?: any;
|
|
615
|
+
"background-primary-subtle-hover"?: any;
|
|
616
|
+
"background-primary-subtle-selected"?: any;
|
|
617
|
+
"background-success"?: any;
|
|
618
|
+
"background-warning-prominent"?: any;
|
|
619
|
+
"background-warning-subtle"?: any;
|
|
620
|
+
"border-danger"?: any;
|
|
621
|
+
"border-danger-active"?: any;
|
|
622
|
+
"border-danger-hover"?: any;
|
|
623
|
+
"border-focus-inner"?: any;
|
|
624
|
+
"border-focus-middle"?: any;
|
|
625
|
+
"border-focus-outer"?: any;
|
|
626
|
+
"border-neutrals"?: any;
|
|
627
|
+
"border-neutrals-active"?: any;
|
|
628
|
+
"border-neutrals-controls"?: any;
|
|
629
|
+
"border-neutrals-controls-disabled"?: any;
|
|
630
|
+
"border-neutrals-disabled"?: any;
|
|
631
|
+
"border-neutrals-hover"?: any;
|
|
632
|
+
"border-neutrals-inverted"?: any;
|
|
633
|
+
"border-neutrals-subtle"?: any;
|
|
634
|
+
"border-neutrals-text"?: any;
|
|
635
|
+
"border-neutrals-text-active"?: any;
|
|
636
|
+
"border-neutrals-text-hover"?: any;
|
|
637
|
+
"border-neutrals-text-subtle"?: any;
|
|
638
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
639
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
640
|
+
"border-neutrals-transparent"?: any;
|
|
641
|
+
"border-primary"?: any;
|
|
642
|
+
"border-primary-active"?: any;
|
|
643
|
+
"border-primary-hover"?: any;
|
|
644
|
+
"border-primary-inverted"?: any;
|
|
645
|
+
"border-success"?: any;
|
|
646
|
+
"border-warning"?: any;
|
|
647
|
+
"icon-danger"?: any;
|
|
648
|
+
"icon-danger-active"?: any;
|
|
649
|
+
"icon-danger-hover"?: any;
|
|
650
|
+
"icon-danger-inverted"?: any;
|
|
651
|
+
"icon-neutrals"?: any;
|
|
652
|
+
"icon-neutrals-disabled"?: any;
|
|
653
|
+
"icon-neutrals-inactive"?: any;
|
|
654
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
655
|
+
"icon-neutrals-inverted"?: any;
|
|
656
|
+
"icon-neutrals-search"?: any;
|
|
657
|
+
"icon-neutrals-subtle"?: any;
|
|
658
|
+
"icon-neutrals-text"?: any;
|
|
659
|
+
"icon-primary"?: any;
|
|
660
|
+
"icon-primary-active"?: any;
|
|
661
|
+
"icon-primary-hover"?: any;
|
|
662
|
+
"icon-primary-inverted"?: any;
|
|
663
|
+
"icon-primary-selected"?: any;
|
|
664
|
+
"icon-success"?: any;
|
|
665
|
+
"icon-success-inverted"?: any;
|
|
666
|
+
"icon-warning"?: any;
|
|
667
|
+
"icon-warning-prominent"?: any;
|
|
668
|
+
"text-danger"?: any;
|
|
669
|
+
"text-danger-active"?: any;
|
|
670
|
+
"text-danger-hover"?: any;
|
|
671
|
+
"text-danger-inverted"?: any;
|
|
672
|
+
"text-neutrals"?: any;
|
|
673
|
+
"text-neutrals-active"?: any;
|
|
674
|
+
"text-neutrals-disabled"?: any;
|
|
675
|
+
"text-neutrals-hover"?: any;
|
|
676
|
+
"text-neutrals-inverted"?: any;
|
|
677
|
+
"text-neutrals-placeholder"?: any;
|
|
678
|
+
"text-neutrals-placeholder-only"?: any;
|
|
679
|
+
"text-neutrals-subtle"?: any;
|
|
680
|
+
"text-neutrals-subtle-active"?: any;
|
|
681
|
+
"text-neutrals-subtle-hover"?: any;
|
|
682
|
+
"text-primary"?: any;
|
|
683
|
+
"text-primary-active"?: any;
|
|
684
|
+
"text-primary-hover"?: any;
|
|
685
|
+
"text-primary-inverted"?: any;
|
|
686
|
+
"text-primary-inverted-subtle"?: any;
|
|
687
|
+
"text-primary-selected"?: any;
|
|
688
|
+
"text-success"?: any;
|
|
689
|
+
"text-warning"?: any;
|
|
668
690
|
};
|
|
669
691
|
'font-sizes': {
|
|
670
692
|
readonly 150: "0.75rem";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-grid",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.16-themes.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@mirohq/design-system-primitive": "^1.1.0",
|
|
30
|
-
"@mirohq/design-system-stitches": "^2.3.
|
|
31
|
-
"@mirohq/design-system-utils": "^0.14.
|
|
30
|
+
"@mirohq/design-system-stitches": "^2.3.5-themes.0",
|
|
31
|
+
"@mirohq/design-system-utils": "^0.14.1"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "rollup -c ../../../rollup.config.js",
|