@arbor-css/preset 0.0.71 → 0.0.73
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/arborPreset.d.ts +234 -276
- package/dist/arborPreset.d.ts.map +1 -1
- package/dist/arborPreset.js +66 -92
- package/dist/arborPreset.js.map +1 -1
- package/dist/mixins.d.ts.map +1 -1
- package/dist/mixins.js +8 -1
- package/dist/mixins.js.map +1 -1
- package/package.json +12 -12
package/dist/arborPreset.d.ts
CHANGED
|
@@ -90,55 +90,61 @@ export declare const arborModeDefinition: {
|
|
|
90
90
|
description: "This token captures the border-radius of actions, taking into account the overall roundness";
|
|
91
91
|
};
|
|
92
92
|
primary: {
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
description: "Intended for use as the border color, if desired";
|
|
105
|
-
};
|
|
93
|
+
fg: {
|
|
94
|
+
purpose: "color";
|
|
95
|
+
description: "Intended for use as the foreground color";
|
|
96
|
+
};
|
|
97
|
+
bg: {
|
|
98
|
+
purpose: "color";
|
|
99
|
+
description: "Intended for use as the background color";
|
|
100
|
+
};
|
|
101
|
+
border: {
|
|
102
|
+
purpose: "color";
|
|
103
|
+
description: "Intended for use as the border color, if desired";
|
|
106
104
|
};
|
|
107
105
|
};
|
|
108
106
|
secondary: {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
description: "Intended for use as the border color, if desired";
|
|
121
|
-
};
|
|
107
|
+
fg: {
|
|
108
|
+
purpose: "color";
|
|
109
|
+
description: "Intended for use as the foreground color";
|
|
110
|
+
};
|
|
111
|
+
bg: {
|
|
112
|
+
purpose: "color";
|
|
113
|
+
description: "Intended for use as the background color";
|
|
114
|
+
};
|
|
115
|
+
border: {
|
|
116
|
+
purpose: "color";
|
|
117
|
+
description: "Intended for use as the border color, if desired";
|
|
122
118
|
};
|
|
123
119
|
};
|
|
124
120
|
ambient: {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
description: "Intended for use as the border color, if desired";
|
|
137
|
-
};
|
|
121
|
+
fg: {
|
|
122
|
+
purpose: "color";
|
|
123
|
+
description: "Intended for use as the foreground color";
|
|
124
|
+
};
|
|
125
|
+
bg: {
|
|
126
|
+
purpose: "color";
|
|
127
|
+
description: "Intended for use as the background color";
|
|
128
|
+
};
|
|
129
|
+
border: {
|
|
130
|
+
purpose: "color";
|
|
131
|
+
description: "Intended for use as the border color, if desired";
|
|
138
132
|
};
|
|
139
133
|
};
|
|
140
134
|
};
|
|
141
135
|
control: {
|
|
136
|
+
fg: {
|
|
137
|
+
purpose: "color";
|
|
138
|
+
description: "Intended for use as the foreground color";
|
|
139
|
+
};
|
|
140
|
+
bg: {
|
|
141
|
+
purpose: "color";
|
|
142
|
+
description: "Intended for use as the background color";
|
|
143
|
+
};
|
|
144
|
+
border: {
|
|
145
|
+
purpose: "color";
|
|
146
|
+
description: "Intended for use as the border color, if desired";
|
|
147
|
+
};
|
|
142
148
|
padding: {
|
|
143
149
|
$root: {
|
|
144
150
|
purpose: "other";
|
|
@@ -161,20 +167,6 @@ export declare const arborModeDefinition: {
|
|
|
161
167
|
purpose: "border-radius";
|
|
162
168
|
description: "This token captures the border-radius of controls, taking into account the overall roundness";
|
|
163
169
|
};
|
|
164
|
-
color: {
|
|
165
|
-
fg: {
|
|
166
|
-
purpose: "color";
|
|
167
|
-
description: "Intended for use as the foreground color";
|
|
168
|
-
};
|
|
169
|
-
bg: {
|
|
170
|
-
purpose: "color";
|
|
171
|
-
description: "Intended for use as the background color";
|
|
172
|
-
};
|
|
173
|
-
border: {
|
|
174
|
-
purpose: "color";
|
|
175
|
-
description: "Intended for use as the border color, if desired";
|
|
176
|
-
};
|
|
177
|
-
};
|
|
178
170
|
};
|
|
179
171
|
surface: {
|
|
180
172
|
padding: {
|
|
@@ -200,51 +192,45 @@ export declare const arborModeDefinition: {
|
|
|
200
192
|
description: "This token captures the border-radius of surfaces, taking into account the overall roundness";
|
|
201
193
|
};
|
|
202
194
|
primary: {
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
description: "Intended for use as the border color, if desired";
|
|
215
|
-
};
|
|
195
|
+
fg: {
|
|
196
|
+
purpose: "color";
|
|
197
|
+
description: "Intended for use as the foreground color";
|
|
198
|
+
};
|
|
199
|
+
bg: {
|
|
200
|
+
purpose: "color";
|
|
201
|
+
description: "Intended for use as the background color";
|
|
202
|
+
};
|
|
203
|
+
border: {
|
|
204
|
+
purpose: "color";
|
|
205
|
+
description: "Intended for use as the border color, if desired";
|
|
216
206
|
};
|
|
217
207
|
};
|
|
218
208
|
secondary: {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
description: "Intended for use as the border color, if desired";
|
|
231
|
-
};
|
|
209
|
+
fg: {
|
|
210
|
+
purpose: "color";
|
|
211
|
+
description: "Intended for use as the foreground color";
|
|
212
|
+
};
|
|
213
|
+
bg: {
|
|
214
|
+
purpose: "color";
|
|
215
|
+
description: "Intended for use as the background color";
|
|
216
|
+
};
|
|
217
|
+
border: {
|
|
218
|
+
purpose: "color";
|
|
219
|
+
description: "Intended for use as the border color, if desired";
|
|
232
220
|
};
|
|
233
221
|
};
|
|
234
222
|
ambient: {
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
description: "Intended for use as the border color, if desired";
|
|
247
|
-
};
|
|
223
|
+
fg: {
|
|
224
|
+
purpose: "color";
|
|
225
|
+
description: "Intended for use as the foreground color";
|
|
226
|
+
};
|
|
227
|
+
bg: {
|
|
228
|
+
purpose: "color";
|
|
229
|
+
description: "Intended for use as the background color";
|
|
230
|
+
};
|
|
231
|
+
border: {
|
|
232
|
+
purpose: "color";
|
|
233
|
+
description: "Intended for use as the border color, if desired";
|
|
248
234
|
};
|
|
249
235
|
};
|
|
250
236
|
};
|
|
@@ -552,55 +538,61 @@ export declare function createArborModeSchema({ createToken, }: {
|
|
|
552
538
|
description: "This token captures the border-radius of actions, taking into account the overall roundness";
|
|
553
539
|
};
|
|
554
540
|
primary: {
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
description: "Intended for use as the border color, if desired";
|
|
567
|
-
};
|
|
541
|
+
fg: {
|
|
542
|
+
purpose: "color";
|
|
543
|
+
description: "Intended for use as the foreground color";
|
|
544
|
+
};
|
|
545
|
+
bg: {
|
|
546
|
+
purpose: "color";
|
|
547
|
+
description: "Intended for use as the background color";
|
|
548
|
+
};
|
|
549
|
+
border: {
|
|
550
|
+
purpose: "color";
|
|
551
|
+
description: "Intended for use as the border color, if desired";
|
|
568
552
|
};
|
|
569
553
|
};
|
|
570
554
|
secondary: {
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
description: "Intended for use as the border color, if desired";
|
|
583
|
-
};
|
|
555
|
+
fg: {
|
|
556
|
+
purpose: "color";
|
|
557
|
+
description: "Intended for use as the foreground color";
|
|
558
|
+
};
|
|
559
|
+
bg: {
|
|
560
|
+
purpose: "color";
|
|
561
|
+
description: "Intended for use as the background color";
|
|
562
|
+
};
|
|
563
|
+
border: {
|
|
564
|
+
purpose: "color";
|
|
565
|
+
description: "Intended for use as the border color, if desired";
|
|
584
566
|
};
|
|
585
567
|
};
|
|
586
568
|
ambient: {
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
description: "Intended for use as the border color, if desired";
|
|
599
|
-
};
|
|
569
|
+
fg: {
|
|
570
|
+
purpose: "color";
|
|
571
|
+
description: "Intended for use as the foreground color";
|
|
572
|
+
};
|
|
573
|
+
bg: {
|
|
574
|
+
purpose: "color";
|
|
575
|
+
description: "Intended for use as the background color";
|
|
576
|
+
};
|
|
577
|
+
border: {
|
|
578
|
+
purpose: "color";
|
|
579
|
+
description: "Intended for use as the border color, if desired";
|
|
600
580
|
};
|
|
601
581
|
};
|
|
602
582
|
};
|
|
603
583
|
control: {
|
|
584
|
+
fg: {
|
|
585
|
+
purpose: "color";
|
|
586
|
+
description: "Intended for use as the foreground color";
|
|
587
|
+
};
|
|
588
|
+
bg: {
|
|
589
|
+
purpose: "color";
|
|
590
|
+
description: "Intended for use as the background color";
|
|
591
|
+
};
|
|
592
|
+
border: {
|
|
593
|
+
purpose: "color";
|
|
594
|
+
description: "Intended for use as the border color, if desired";
|
|
595
|
+
};
|
|
604
596
|
padding: {
|
|
605
597
|
$root: {
|
|
606
598
|
purpose: "other";
|
|
@@ -623,20 +615,6 @@ export declare function createArborModeSchema({ createToken, }: {
|
|
|
623
615
|
purpose: "border-radius";
|
|
624
616
|
description: "This token captures the border-radius of controls, taking into account the overall roundness";
|
|
625
617
|
};
|
|
626
|
-
color: {
|
|
627
|
-
fg: {
|
|
628
|
-
purpose: "color";
|
|
629
|
-
description: "Intended for use as the foreground color";
|
|
630
|
-
};
|
|
631
|
-
bg: {
|
|
632
|
-
purpose: "color";
|
|
633
|
-
description: "Intended for use as the background color";
|
|
634
|
-
};
|
|
635
|
-
border: {
|
|
636
|
-
purpose: "color";
|
|
637
|
-
description: "Intended for use as the border color, if desired";
|
|
638
|
-
};
|
|
639
|
-
};
|
|
640
618
|
};
|
|
641
619
|
surface: {
|
|
642
620
|
padding: {
|
|
@@ -662,51 +640,45 @@ export declare function createArborModeSchema({ createToken, }: {
|
|
|
662
640
|
description: "This token captures the border-radius of surfaces, taking into account the overall roundness";
|
|
663
641
|
};
|
|
664
642
|
primary: {
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
description: "Intended for use as the border color, if desired";
|
|
677
|
-
};
|
|
643
|
+
fg: {
|
|
644
|
+
purpose: "color";
|
|
645
|
+
description: "Intended for use as the foreground color";
|
|
646
|
+
};
|
|
647
|
+
bg: {
|
|
648
|
+
purpose: "color";
|
|
649
|
+
description: "Intended for use as the background color";
|
|
650
|
+
};
|
|
651
|
+
border: {
|
|
652
|
+
purpose: "color";
|
|
653
|
+
description: "Intended for use as the border color, if desired";
|
|
678
654
|
};
|
|
679
655
|
};
|
|
680
656
|
secondary: {
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
description: "Intended for use as the border color, if desired";
|
|
693
|
-
};
|
|
657
|
+
fg: {
|
|
658
|
+
purpose: "color";
|
|
659
|
+
description: "Intended for use as the foreground color";
|
|
660
|
+
};
|
|
661
|
+
bg: {
|
|
662
|
+
purpose: "color";
|
|
663
|
+
description: "Intended for use as the background color";
|
|
664
|
+
};
|
|
665
|
+
border: {
|
|
666
|
+
purpose: "color";
|
|
667
|
+
description: "Intended for use as the border color, if desired";
|
|
694
668
|
};
|
|
695
669
|
};
|
|
696
670
|
ambient: {
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
description: "Intended for use as the border color, if desired";
|
|
709
|
-
};
|
|
671
|
+
fg: {
|
|
672
|
+
purpose: "color";
|
|
673
|
+
description: "Intended for use as the foreground color";
|
|
674
|
+
};
|
|
675
|
+
bg: {
|
|
676
|
+
purpose: "color";
|
|
677
|
+
description: "Intended for use as the background color";
|
|
678
|
+
};
|
|
679
|
+
border: {
|
|
680
|
+
purpose: "color";
|
|
681
|
+
description: "Intended for use as the border color, if desired";
|
|
710
682
|
};
|
|
711
683
|
};
|
|
712
684
|
};
|
|
@@ -1012,55 +984,61 @@ export declare const arborModeSchema: ModeSchema<{
|
|
|
1012
984
|
description: "This token captures the border-radius of actions, taking into account the overall roundness";
|
|
1013
985
|
};
|
|
1014
986
|
primary: {
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
description: "Intended for use as the border color, if desired";
|
|
1027
|
-
};
|
|
987
|
+
fg: {
|
|
988
|
+
purpose: "color";
|
|
989
|
+
description: "Intended for use as the foreground color";
|
|
990
|
+
};
|
|
991
|
+
bg: {
|
|
992
|
+
purpose: "color";
|
|
993
|
+
description: "Intended for use as the background color";
|
|
994
|
+
};
|
|
995
|
+
border: {
|
|
996
|
+
purpose: "color";
|
|
997
|
+
description: "Intended for use as the border color, if desired";
|
|
1028
998
|
};
|
|
1029
999
|
};
|
|
1030
1000
|
secondary: {
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
description: "Intended for use as the border color, if desired";
|
|
1043
|
-
};
|
|
1001
|
+
fg: {
|
|
1002
|
+
purpose: "color";
|
|
1003
|
+
description: "Intended for use as the foreground color";
|
|
1004
|
+
};
|
|
1005
|
+
bg: {
|
|
1006
|
+
purpose: "color";
|
|
1007
|
+
description: "Intended for use as the background color";
|
|
1008
|
+
};
|
|
1009
|
+
border: {
|
|
1010
|
+
purpose: "color";
|
|
1011
|
+
description: "Intended for use as the border color, if desired";
|
|
1044
1012
|
};
|
|
1045
1013
|
};
|
|
1046
1014
|
ambient: {
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
description: "Intended for use as the border color, if desired";
|
|
1059
|
-
};
|
|
1015
|
+
fg: {
|
|
1016
|
+
purpose: "color";
|
|
1017
|
+
description: "Intended for use as the foreground color";
|
|
1018
|
+
};
|
|
1019
|
+
bg: {
|
|
1020
|
+
purpose: "color";
|
|
1021
|
+
description: "Intended for use as the background color";
|
|
1022
|
+
};
|
|
1023
|
+
border: {
|
|
1024
|
+
purpose: "color";
|
|
1025
|
+
description: "Intended for use as the border color, if desired";
|
|
1060
1026
|
};
|
|
1061
1027
|
};
|
|
1062
1028
|
};
|
|
1063
1029
|
control: {
|
|
1030
|
+
fg: {
|
|
1031
|
+
purpose: "color";
|
|
1032
|
+
description: "Intended for use as the foreground color";
|
|
1033
|
+
};
|
|
1034
|
+
bg: {
|
|
1035
|
+
purpose: "color";
|
|
1036
|
+
description: "Intended for use as the background color";
|
|
1037
|
+
};
|
|
1038
|
+
border: {
|
|
1039
|
+
purpose: "color";
|
|
1040
|
+
description: "Intended for use as the border color, if desired";
|
|
1041
|
+
};
|
|
1064
1042
|
padding: {
|
|
1065
1043
|
$root: {
|
|
1066
1044
|
purpose: "other";
|
|
@@ -1083,20 +1061,6 @@ export declare const arborModeSchema: ModeSchema<{
|
|
|
1083
1061
|
purpose: "border-radius";
|
|
1084
1062
|
description: "This token captures the border-radius of controls, taking into account the overall roundness";
|
|
1085
1063
|
};
|
|
1086
|
-
color: {
|
|
1087
|
-
fg: {
|
|
1088
|
-
purpose: "color";
|
|
1089
|
-
description: "Intended for use as the foreground color";
|
|
1090
|
-
};
|
|
1091
|
-
bg: {
|
|
1092
|
-
purpose: "color";
|
|
1093
|
-
description: "Intended for use as the background color";
|
|
1094
|
-
};
|
|
1095
|
-
border: {
|
|
1096
|
-
purpose: "color";
|
|
1097
|
-
description: "Intended for use as the border color, if desired";
|
|
1098
|
-
};
|
|
1099
|
-
};
|
|
1100
1064
|
};
|
|
1101
1065
|
surface: {
|
|
1102
1066
|
padding: {
|
|
@@ -1122,51 +1086,45 @@ export declare const arborModeSchema: ModeSchema<{
|
|
|
1122
1086
|
description: "This token captures the border-radius of surfaces, taking into account the overall roundness";
|
|
1123
1087
|
};
|
|
1124
1088
|
primary: {
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
description: "Intended for use as the border color, if desired";
|
|
1137
|
-
};
|
|
1089
|
+
fg: {
|
|
1090
|
+
purpose: "color";
|
|
1091
|
+
description: "Intended for use as the foreground color";
|
|
1092
|
+
};
|
|
1093
|
+
bg: {
|
|
1094
|
+
purpose: "color";
|
|
1095
|
+
description: "Intended for use as the background color";
|
|
1096
|
+
};
|
|
1097
|
+
border: {
|
|
1098
|
+
purpose: "color";
|
|
1099
|
+
description: "Intended for use as the border color, if desired";
|
|
1138
1100
|
};
|
|
1139
1101
|
};
|
|
1140
1102
|
secondary: {
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
description: "Intended for use as the border color, if desired";
|
|
1153
|
-
};
|
|
1103
|
+
fg: {
|
|
1104
|
+
purpose: "color";
|
|
1105
|
+
description: "Intended for use as the foreground color";
|
|
1106
|
+
};
|
|
1107
|
+
bg: {
|
|
1108
|
+
purpose: "color";
|
|
1109
|
+
description: "Intended for use as the background color";
|
|
1110
|
+
};
|
|
1111
|
+
border: {
|
|
1112
|
+
purpose: "color";
|
|
1113
|
+
description: "Intended for use as the border color, if desired";
|
|
1154
1114
|
};
|
|
1155
1115
|
};
|
|
1156
1116
|
ambient: {
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
description: "Intended for use as the border color, if desired";
|
|
1169
|
-
};
|
|
1117
|
+
fg: {
|
|
1118
|
+
purpose: "color";
|
|
1119
|
+
description: "Intended for use as the foreground color";
|
|
1120
|
+
};
|
|
1121
|
+
bg: {
|
|
1122
|
+
purpose: "color";
|
|
1123
|
+
description: "Intended for use as the background color";
|
|
1124
|
+
};
|
|
1125
|
+
border: {
|
|
1126
|
+
purpose: "color";
|
|
1127
|
+
description: "Intended for use as the border color, if desired";
|
|
1170
1128
|
};
|
|
1171
1129
|
};
|
|
1172
1130
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"arborPreset.d.ts","sourceRoot":"","sources":["../src/arborPreset.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAuB,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAC5E,OAAO,EAEN,UAAU,EACV,UAAU,EACV,mBAAmB,EACnB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAqB,MAAM,mBAAmB,CAAC;AAmEnE,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"arborPreset.d.ts","sourceRoot":"","sources":["../src/arborPreset.ts"],"names":[],"mappings":"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"}
|
package/dist/arborPreset.js
CHANGED
|
@@ -135,15 +135,9 @@ export const arborModeDefinition = {
|
|
|
135
135
|
purpose: 'border-radius',
|
|
136
136
|
description: 'This token captures the border-radius of actions, taking into account the overall roundness',
|
|
137
137
|
},
|
|
138
|
-
primary:
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
secondary: {
|
|
142
|
-
color: colorIntents,
|
|
143
|
-
},
|
|
144
|
-
ambient: {
|
|
145
|
-
color: colorIntents,
|
|
146
|
-
},
|
|
138
|
+
primary: colorIntents,
|
|
139
|
+
secondary: colorIntents,
|
|
140
|
+
ambient: colorIntents,
|
|
147
141
|
},
|
|
148
142
|
control: {
|
|
149
143
|
padding: boxIntents,
|
|
@@ -155,7 +149,7 @@ export const arborModeDefinition = {
|
|
|
155
149
|
purpose: 'border-radius',
|
|
156
150
|
description: 'This token captures the border-radius of controls, taking into account the overall roundness',
|
|
157
151
|
},
|
|
158
|
-
|
|
152
|
+
...colorIntents,
|
|
159
153
|
},
|
|
160
154
|
surface: {
|
|
161
155
|
padding: boxIntents,
|
|
@@ -167,15 +161,9 @@ export const arborModeDefinition = {
|
|
|
167
161
|
purpose: 'border-radius',
|
|
168
162
|
description: 'This token captures the border-radius of surfaces, taking into account the overall roundness',
|
|
169
163
|
},
|
|
170
|
-
primary:
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
secondary: {
|
|
174
|
-
color: colorIntents,
|
|
175
|
-
},
|
|
176
|
-
ambient: {
|
|
177
|
-
color: colorIntents,
|
|
178
|
-
},
|
|
164
|
+
primary: colorIntents,
|
|
165
|
+
secondary: colorIntents,
|
|
166
|
+
ambient: colorIntents,
|
|
179
167
|
},
|
|
180
168
|
text: {
|
|
181
169
|
primary: textIntents,
|
|
@@ -336,43 +324,37 @@ export function createArborModeValues(config) {
|
|
|
336
324
|
roundness: 1,
|
|
337
325
|
radius: css `calc(${modeSchema.$tokens.radius.md} * ${modeSchema.$tokens.surface.roundness})`,
|
|
338
326
|
primary: {
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
`,
|
|
349
|
-
},
|
|
327
|
+
bg: css `
|
|
328
|
+
${modeSchema.$tokens.color.main.light}
|
|
329
|
+
`,
|
|
330
|
+
fg: css `
|
|
331
|
+
${modeSchema.$tokens.color.main.ink}
|
|
332
|
+
`,
|
|
333
|
+
border: css `
|
|
334
|
+
${modeSchema.$tokens.color.main.heavy}
|
|
335
|
+
`,
|
|
350
336
|
},
|
|
351
337
|
secondary: {
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
`,
|
|
362
|
-
},
|
|
338
|
+
bg: css `
|
|
339
|
+
${modeSchema.$tokens.color.main.wash}
|
|
340
|
+
`,
|
|
341
|
+
fg: css `
|
|
342
|
+
${modeSchema.$tokens.color.neutral.ink}
|
|
343
|
+
`,
|
|
344
|
+
border: css `
|
|
345
|
+
${modeSchema.$tokens.color.main.ink}
|
|
346
|
+
`,
|
|
363
347
|
},
|
|
364
348
|
ambient: {
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
`,
|
|
375
|
-
},
|
|
349
|
+
bg: css `
|
|
350
|
+
${modeSchema.$tokens.color.neutral.paper}
|
|
351
|
+
`,
|
|
352
|
+
fg: css `
|
|
353
|
+
${modeSchema.$tokens.color.neutral.ink}
|
|
354
|
+
`,
|
|
355
|
+
border: css `
|
|
356
|
+
${modeSchema.$tokens.color.neutral.heavy}
|
|
357
|
+
`,
|
|
376
358
|
},
|
|
377
359
|
},
|
|
378
360
|
action: {
|
|
@@ -387,39 +369,33 @@ export function createArborModeValues(config) {
|
|
|
387
369
|
roundness: 1,
|
|
388
370
|
radius: css `calc(${modeSchema.$tokens.radius.sm} * ${modeSchema.$tokens.action.roundness})`,
|
|
389
371
|
primary: {
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
`,
|
|
400
|
-
},
|
|
372
|
+
bg: css `
|
|
373
|
+
${modeSchema.$tokens.color.main.mid}
|
|
374
|
+
`,
|
|
375
|
+
fg: css `
|
|
376
|
+
${modeSchema.$tokens.color.main.ink}
|
|
377
|
+
`,
|
|
378
|
+
border: css `
|
|
379
|
+
${modeSchema.$tokens.color.main.heavy}
|
|
380
|
+
`,
|
|
401
381
|
},
|
|
402
382
|
secondary: {
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
`,
|
|
413
|
-
},
|
|
383
|
+
bg: css `
|
|
384
|
+
${modeSchema.$tokens.color.neutral.paper}
|
|
385
|
+
`,
|
|
386
|
+
fg: css `
|
|
387
|
+
${modeSchema.$tokens.color.neutral.ink}
|
|
388
|
+
`,
|
|
389
|
+
border: css `
|
|
390
|
+
${modeSchema.$tokens.color.neutral.heavy}
|
|
391
|
+
`,
|
|
414
392
|
},
|
|
415
393
|
ambient: {
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
border: 'transparent',
|
|
422
|
-
},
|
|
394
|
+
bg: 'transparent',
|
|
395
|
+
fg: css `
|
|
396
|
+
${modeSchema.$tokens.color.main.ink}
|
|
397
|
+
`,
|
|
398
|
+
border: 'transparent',
|
|
423
399
|
},
|
|
424
400
|
},
|
|
425
401
|
control: {
|
|
@@ -433,17 +409,15 @@ export function createArborModeValues(config) {
|
|
|
433
409
|
},
|
|
434
410
|
roundness: 1,
|
|
435
411
|
radius: css `calc(${modeSchema.$tokens.radius.sm} * ${modeSchema.$tokens.control.roundness})`,
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
`,
|
|
446
|
-
},
|
|
412
|
+
bg: css `
|
|
413
|
+
${modeSchema.$tokens.color.neutral.paper}
|
|
414
|
+
`,
|
|
415
|
+
fg: css `
|
|
416
|
+
${modeSchema.$tokens.color.neutral.ink}
|
|
417
|
+
`,
|
|
418
|
+
border: css `
|
|
419
|
+
${modeSchema.$tokens.color.neutral.heavy}
|
|
420
|
+
`,
|
|
447
421
|
},
|
|
448
422
|
density: 1,
|
|
449
423
|
spacing: {
|
package/dist/arborPreset.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"arborPreset.js","sourceRoot":"","sources":["../src/arborPreset.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"arborPreset.js","sourceRoot":"","sources":["../src/arborPreset.ts"],"names":[],"mappings":"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"}
|
package/dist/mixins.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mixins.d.ts","sourceRoot":"","sources":["../src/mixins.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"mixins.d.ts","sourceRoot":"","sources":["../src/mixins.ts"],"names":[],"mappings":"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"}
|
package/dist/mixins.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { darkenColorAlteration, desaturateColorAlteration, fadeColorAlteration, lightenColorAlteration, saturateColorAlteration, } from './commonFunctions.js';
|
|
2
|
-
function createColorMixins(createMixinValue, systemTokens, { name, property, description, }) {
|
|
2
|
+
function createColorMixins(createMixinValue, systemTokens, { name, property, description, defineExtraProperties, }) {
|
|
3
3
|
const includeContrast = property === 'background';
|
|
4
4
|
const refMixin = createMixinValue(name, {
|
|
5
5
|
description,
|
|
@@ -22,6 +22,7 @@ function createColorMixins(createMixinValue, systemTokens, { name, property, des
|
|
|
22
22
|
[property]: css `
|
|
23
23
|
${tokens.ref.var}
|
|
24
24
|
`,
|
|
25
|
+
...defineExtraProperties?.(css),
|
|
25
26
|
};
|
|
26
27
|
},
|
|
27
28
|
contributeTokens: {
|
|
@@ -153,6 +154,12 @@ export function createPresetMixins(systemProps, createMixinValue) {
|
|
|
153
154
|
name: 'border',
|
|
154
155
|
property: 'border-color',
|
|
155
156
|
description: 'Routes border color assignments through Arbor ref variables for runtime adjustments.',
|
|
157
|
+
defineExtraProperties: (css) => ({
|
|
158
|
+
'border-style': css `solid`,
|
|
159
|
+
'border-width': css `
|
|
160
|
+
${systemProps.global.lineWidth}
|
|
161
|
+
`,
|
|
162
|
+
}),
|
|
156
163
|
});
|
|
157
164
|
const fillMixins = createColorMixins(createMixinValue, systemProps, {
|
|
158
165
|
name: 'fill',
|
package/dist/mixins.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mixins.js","sourceRoot":"","sources":["../src/mixins.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"mixins.js","sourceRoot":"","sources":["../src/mixins.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbor-css/preset",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.73",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"vitest": "^4.1.7"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@arbor-css/colors": "0.0.
|
|
35
|
-
"@arbor-css/modes": "0.0.
|
|
36
|
-
"@arbor-css/
|
|
37
|
-
"@arbor-css/
|
|
38
|
-
"@arbor-css/
|
|
39
|
-
"@arbor-css/tokens": "0.0.
|
|
40
|
-
"@arbor-css/
|
|
41
|
-
"@arbor-css/
|
|
42
|
-
"@arbor-css/
|
|
43
|
-
"@arbor-css/
|
|
44
|
-
"@arbor-css/
|
|
34
|
+
"@arbor-css/colors": "0.0.73",
|
|
35
|
+
"@arbor-css/modes": "0.0.73",
|
|
36
|
+
"@arbor-css/shadows": "0.0.73",
|
|
37
|
+
"@arbor-css/spacing": "0.0.73",
|
|
38
|
+
"@arbor-css/globals": "0.0.73",
|
|
39
|
+
"@arbor-css/tokens": "0.0.73",
|
|
40
|
+
"@arbor-css/util": "0.0.73",
|
|
41
|
+
"@arbor-css/functions": "0.0.73",
|
|
42
|
+
"@arbor-css/primitives": "0.0.73",
|
|
43
|
+
"@arbor-css/calc": "0.0.73",
|
|
44
|
+
"@arbor-css/typography": "0.0.73"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "tsc",
|