@common-origin/design-system 2.0.1 → 2.3.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/components/atoms/CategoryBadge/CategoryBadge.d.ts +82 -0
- package/dist/components/atoms/CategoryBadge/index.d.ts +2 -0
- package/dist/components/atoms/Chip/shared/ChipBase.d.ts +1 -1
- package/dist/components/atoms/Chip/shared/utils.d.ts +1 -1
- package/dist/components/atoms/DateFormatter/DateFormatter.d.ts +3 -0
- package/dist/components/atoms/MoneyDisplay/MoneyDisplay.d.ts +26 -0
- package/dist/components/atoms/MoneyDisplay/index.d.ts +2 -0
- package/dist/components/atoms/StatusBadge/StatusBadge.d.ts +68 -0
- package/dist/components/atoms/StatusBadge/index.d.ts +2 -0
- package/dist/components/atoms/index.d.ts +3 -0
- package/dist/components/molecules/AccountCard/AccountCard.d.ts +44 -0
- package/dist/components/molecules/AccountCard/index.d.ts +2 -0
- package/dist/components/molecules/ActionSheet/ActionSheet.d.ts +110 -0
- package/dist/components/molecules/ActionSheet/index.d.ts +2 -0
- package/dist/components/molecules/Checkbox/SelectableInputBase.d.ts +1 -2
- package/dist/components/molecules/DateGroup/DateGroup.d.ts +34 -0
- package/dist/components/molecules/DateGroup/index.d.ts +2 -0
- package/dist/components/molecules/EmptyState/EmptyState.d.ts +32 -0
- package/dist/components/molecules/EmptyState/index.d.ts +2 -0
- package/dist/components/molecules/SearchField/SearchField.d.ts +108 -0
- package/dist/components/molecules/SearchField/index.d.ts +2 -0
- package/dist/components/molecules/TabBar/TabBar.d.ts +79 -0
- package/dist/components/molecules/TabBar/index.d.ts +2 -0
- package/dist/components/molecules/TextField/InputBase.d.ts +0 -1
- package/dist/components/molecules/TransactionListItem/TransactionListItem.d.ts +39 -0
- package/dist/components/molecules/TransactionListItem/index.d.ts +2 -0
- package/dist/components/molecules/index.d.ts +7 -0
- package/dist/index.d.ts +93 -0
- package/dist/index.esm.js +2214 -335
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2221 -332
- package/dist/index.js.map +1 -1
- package/dist/styles/tokens.json +93 -0
- package/dist/tokens/index.esm.js +93 -0
- package/dist/tokens/index.esm.js.map +1 -1
- package/dist/tokens/index.js +93 -0
- package/dist/tokens/index.js.map +1 -1
- package/dist/tokens/tokens.d.ts +93 -0
- package/package.json +3 -3
package/dist/styles/tokens.json
CHANGED
|
@@ -167,6 +167,51 @@
|
|
|
167
167
|
"1100": "#004491",
|
|
168
168
|
"1200": "#003571",
|
|
169
169
|
"1300": "#002754"
|
|
170
|
+
},
|
|
171
|
+
"purple": {
|
|
172
|
+
"100": "#F9F0FF",
|
|
173
|
+
"200": "#F4E1FF",
|
|
174
|
+
"300": "#EDD0FF",
|
|
175
|
+
"400": "#E3B8FF",
|
|
176
|
+
"500": "#D59DFF",
|
|
177
|
+
"600": "#C27EF7",
|
|
178
|
+
"700": "#AD5FE8",
|
|
179
|
+
"800": "#9644D4",
|
|
180
|
+
"900": "#7E2EBD",
|
|
181
|
+
"1000": "#67229F",
|
|
182
|
+
"1100": "#511882",
|
|
183
|
+
"1200": "#3D1066",
|
|
184
|
+
"1300": "#2B0A4D"
|
|
185
|
+
},
|
|
186
|
+
"pink": {
|
|
187
|
+
"100": "#FFEFF9",
|
|
188
|
+
"200": "#FFDFF4",
|
|
189
|
+
"300": "#FFCBED",
|
|
190
|
+
"400": "#FFB0E3",
|
|
191
|
+
"500": "#FF8ED4",
|
|
192
|
+
"600": "#FF69C1",
|
|
193
|
+
"700": "#FF42AB",
|
|
194
|
+
"800": "#F31A93",
|
|
195
|
+
"900": "#DC007B",
|
|
196
|
+
"1000": "#B90064",
|
|
197
|
+
"1100": "#97004E",
|
|
198
|
+
"1200": "#78003A",
|
|
199
|
+
"1300": "#5C0029"
|
|
200
|
+
},
|
|
201
|
+
"yellow": {
|
|
202
|
+
"100": "#FFF3D6",
|
|
203
|
+
"200": "#FFE9B3",
|
|
204
|
+
"300": "#FFDE8F",
|
|
205
|
+
"400": "#FFD162",
|
|
206
|
+
"500": "#FFC233",
|
|
207
|
+
"600": "#EDAD0A",
|
|
208
|
+
"700": "#D39700",
|
|
209
|
+
"800": "#B88100",
|
|
210
|
+
"900": "#9D6C00",
|
|
211
|
+
"1000": "#825800",
|
|
212
|
+
"1100": "#694600",
|
|
213
|
+
"1200": "#523600",
|
|
214
|
+
"1300": "#3D2800"
|
|
170
215
|
}
|
|
171
216
|
},
|
|
172
217
|
"spacing": {
|
|
@@ -637,6 +682,54 @@
|
|
|
637
682
|
"error": "#D31510",
|
|
638
683
|
"success": "#007A4D",
|
|
639
684
|
"warning": "#B14C00"
|
|
685
|
+
},
|
|
686
|
+
"financial": {
|
|
687
|
+
"credit": "#15A46E",
|
|
688
|
+
"credit-hover": "#008F5D",
|
|
689
|
+
"debit": "#D31510",
|
|
690
|
+
"debit-hover": "#B40000",
|
|
691
|
+
"pending": "#F68511",
|
|
692
|
+
"neutral": "#6c757d"
|
|
693
|
+
},
|
|
694
|
+
"category": {
|
|
695
|
+
"blue": "#3892F3",
|
|
696
|
+
"blue-emphasis": "#0265DC",
|
|
697
|
+
"blue-subtle": "#E0F2FF",
|
|
698
|
+
"purple": "#AD5FE8",
|
|
699
|
+
"purple-emphasis": "#7E2EBD",
|
|
700
|
+
"purple-subtle": "#F9F0FF",
|
|
701
|
+
"pink": "#FF42AB",
|
|
702
|
+
"pink-emphasis": "#DC007B",
|
|
703
|
+
"pink-subtle": "#FFEFF9",
|
|
704
|
+
"yellow": "#D39700",
|
|
705
|
+
"yellow-emphasis": "#9D6C00",
|
|
706
|
+
"yellow-subtle": "#FFF3D6",
|
|
707
|
+
"green": "#15A46E",
|
|
708
|
+
"green-emphasis": "#007A4D",
|
|
709
|
+
"green-subtle": "#CEF8E0",
|
|
710
|
+
"red": "#F75C46",
|
|
711
|
+
"red-emphasis": "#D31510",
|
|
712
|
+
"red-subtle": "#FFEBE7",
|
|
713
|
+
"orange": "#E46F00",
|
|
714
|
+
"orange-emphasis": "#B14C00",
|
|
715
|
+
"orange-subtle": "#FFECCC",
|
|
716
|
+
"gray": "#495057",
|
|
717
|
+
"gray-emphasis": "#212529",
|
|
718
|
+
"gray-subtle": "#e9ecef"
|
|
719
|
+
},
|
|
720
|
+
"status": {
|
|
721
|
+
"pending": "#D39700",
|
|
722
|
+
"pending-bg": "#FFF3D6",
|
|
723
|
+
"completed": "#007A4D",
|
|
724
|
+
"completed-bg": "#CEF8E0",
|
|
725
|
+
"failed": "#D31510",
|
|
726
|
+
"failed-bg": "#FFEBE7",
|
|
727
|
+
"cancelled": "#495057",
|
|
728
|
+
"cancelled-bg": "#e9ecef",
|
|
729
|
+
"processing": "#0265DC",
|
|
730
|
+
"processing-bg": "#E0F2FF",
|
|
731
|
+
"scheduled": "#7E2EBD",
|
|
732
|
+
"scheduled-bg": "#F9F0FF"
|
|
640
733
|
}
|
|
641
734
|
},
|
|
642
735
|
"typography": {
|
package/dist/tokens/index.esm.js
CHANGED
|
@@ -166,6 +166,51 @@ var base = {
|
|
|
166
166
|
"1100": "#004491",
|
|
167
167
|
"1200": "#003571",
|
|
168
168
|
"1300": "#002754"
|
|
169
|
+
},
|
|
170
|
+
purple: {
|
|
171
|
+
"100": "#F9F0FF",
|
|
172
|
+
"200": "#F4E1FF",
|
|
173
|
+
"300": "#EDD0FF",
|
|
174
|
+
"400": "#E3B8FF",
|
|
175
|
+
"500": "#D59DFF",
|
|
176
|
+
"600": "#C27EF7",
|
|
177
|
+
"700": "#AD5FE8",
|
|
178
|
+
"800": "#9644D4",
|
|
179
|
+
"900": "#7E2EBD",
|
|
180
|
+
"1000": "#67229F",
|
|
181
|
+
"1100": "#511882",
|
|
182
|
+
"1200": "#3D1066",
|
|
183
|
+
"1300": "#2B0A4D"
|
|
184
|
+
},
|
|
185
|
+
pink: {
|
|
186
|
+
"100": "#FFEFF9",
|
|
187
|
+
"200": "#FFDFF4",
|
|
188
|
+
"300": "#FFCBED",
|
|
189
|
+
"400": "#FFB0E3",
|
|
190
|
+
"500": "#FF8ED4",
|
|
191
|
+
"600": "#FF69C1",
|
|
192
|
+
"700": "#FF42AB",
|
|
193
|
+
"800": "#F31A93",
|
|
194
|
+
"900": "#DC007B",
|
|
195
|
+
"1000": "#B90064",
|
|
196
|
+
"1100": "#97004E",
|
|
197
|
+
"1200": "#78003A",
|
|
198
|
+
"1300": "#5C0029"
|
|
199
|
+
},
|
|
200
|
+
yellow: {
|
|
201
|
+
"100": "#FFF3D6",
|
|
202
|
+
"200": "#FFE9B3",
|
|
203
|
+
"300": "#FFDE8F",
|
|
204
|
+
"400": "#FFD162",
|
|
205
|
+
"500": "#FFC233",
|
|
206
|
+
"600": "#EDAD0A",
|
|
207
|
+
"700": "#D39700",
|
|
208
|
+
"800": "#B88100",
|
|
209
|
+
"900": "#9D6C00",
|
|
210
|
+
"1000": "#825800",
|
|
211
|
+
"1100": "#694600",
|
|
212
|
+
"1200": "#523600",
|
|
213
|
+
"1300": "#3D2800"
|
|
169
214
|
}
|
|
170
215
|
},
|
|
171
216
|
spacing: {
|
|
@@ -636,6 +681,54 @@ var semantic = {
|
|
|
636
681
|
error: "#D31510",
|
|
637
682
|
success: "#007A4D",
|
|
638
683
|
warning: "#B14C00"
|
|
684
|
+
},
|
|
685
|
+
financial: {
|
|
686
|
+
credit: "#15A46E",
|
|
687
|
+
"credit-hover": "#008F5D",
|
|
688
|
+
debit: "#D31510",
|
|
689
|
+
"debit-hover": "#B40000",
|
|
690
|
+
pending: "#F68511",
|
|
691
|
+
neutral: "#6c757d"
|
|
692
|
+
},
|
|
693
|
+
category: {
|
|
694
|
+
blue: "#3892F3",
|
|
695
|
+
"blue-emphasis": "#0265DC",
|
|
696
|
+
"blue-subtle": "#E0F2FF",
|
|
697
|
+
purple: "#AD5FE8",
|
|
698
|
+
"purple-emphasis": "#7E2EBD",
|
|
699
|
+
"purple-subtle": "#F9F0FF",
|
|
700
|
+
pink: "#FF42AB",
|
|
701
|
+
"pink-emphasis": "#DC007B",
|
|
702
|
+
"pink-subtle": "#FFEFF9",
|
|
703
|
+
yellow: "#D39700",
|
|
704
|
+
"yellow-emphasis": "#9D6C00",
|
|
705
|
+
"yellow-subtle": "#FFF3D6",
|
|
706
|
+
green: "#15A46E",
|
|
707
|
+
"green-emphasis": "#007A4D",
|
|
708
|
+
"green-subtle": "#CEF8E0",
|
|
709
|
+
red: "#F75C46",
|
|
710
|
+
"red-emphasis": "#D31510",
|
|
711
|
+
"red-subtle": "#FFEBE7",
|
|
712
|
+
orange: "#E46F00",
|
|
713
|
+
"orange-emphasis": "#B14C00",
|
|
714
|
+
"orange-subtle": "#FFECCC",
|
|
715
|
+
gray: "#495057",
|
|
716
|
+
"gray-emphasis": "#212529",
|
|
717
|
+
"gray-subtle": "#e9ecef"
|
|
718
|
+
},
|
|
719
|
+
status: {
|
|
720
|
+
pending: "#D39700",
|
|
721
|
+
"pending-bg": "#FFF3D6",
|
|
722
|
+
completed: "#007A4D",
|
|
723
|
+
"completed-bg": "#CEF8E0",
|
|
724
|
+
failed: "#D31510",
|
|
725
|
+
"failed-bg": "#FFEBE7",
|
|
726
|
+
cancelled: "#495057",
|
|
727
|
+
"cancelled-bg": "#e9ecef",
|
|
728
|
+
processing: "#0265DC",
|
|
729
|
+
"processing-bg": "#E0F2FF",
|
|
730
|
+
scheduled: "#7E2EBD",
|
|
731
|
+
"scheduled-bg": "#F9F0FF"
|
|
639
732
|
}
|
|
640
733
|
},
|
|
641
734
|
typography: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":["../../src/tokens.ts"],"sourcesContent":["// Tokens-only export for standalone usage\nimport tokensJson from './styles/tokens.json'\n\nexport const tokens = tokensJson\nexport default tokensJson\n\n// Export token types\nexport type {\n Tokens,\n TokensBase,\n TokensSemantic,\n TokensComponent\n} from './styles/tokens.d'"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/tokens.ts"],"sourcesContent":["// Tokens-only export for standalone usage\nimport tokensJson from './styles/tokens.json'\n\nexport const tokens = tokensJson\nexport default tokensJson\n\n// Export token types\nexport type {\n Tokens,\n TokensBase,\n TokensSemantic,\n TokensComponent\n} from './styles/tokens.d'"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAGO,IAAM,MAAM,GAAG;;;;"}
|
package/dist/tokens/index.js
CHANGED
|
@@ -170,6 +170,51 @@ var base = {
|
|
|
170
170
|
"1100": "#004491",
|
|
171
171
|
"1200": "#003571",
|
|
172
172
|
"1300": "#002754"
|
|
173
|
+
},
|
|
174
|
+
purple: {
|
|
175
|
+
"100": "#F9F0FF",
|
|
176
|
+
"200": "#F4E1FF",
|
|
177
|
+
"300": "#EDD0FF",
|
|
178
|
+
"400": "#E3B8FF",
|
|
179
|
+
"500": "#D59DFF",
|
|
180
|
+
"600": "#C27EF7",
|
|
181
|
+
"700": "#AD5FE8",
|
|
182
|
+
"800": "#9644D4",
|
|
183
|
+
"900": "#7E2EBD",
|
|
184
|
+
"1000": "#67229F",
|
|
185
|
+
"1100": "#511882",
|
|
186
|
+
"1200": "#3D1066",
|
|
187
|
+
"1300": "#2B0A4D"
|
|
188
|
+
},
|
|
189
|
+
pink: {
|
|
190
|
+
"100": "#FFEFF9",
|
|
191
|
+
"200": "#FFDFF4",
|
|
192
|
+
"300": "#FFCBED",
|
|
193
|
+
"400": "#FFB0E3",
|
|
194
|
+
"500": "#FF8ED4",
|
|
195
|
+
"600": "#FF69C1",
|
|
196
|
+
"700": "#FF42AB",
|
|
197
|
+
"800": "#F31A93",
|
|
198
|
+
"900": "#DC007B",
|
|
199
|
+
"1000": "#B90064",
|
|
200
|
+
"1100": "#97004E",
|
|
201
|
+
"1200": "#78003A",
|
|
202
|
+
"1300": "#5C0029"
|
|
203
|
+
},
|
|
204
|
+
yellow: {
|
|
205
|
+
"100": "#FFF3D6",
|
|
206
|
+
"200": "#FFE9B3",
|
|
207
|
+
"300": "#FFDE8F",
|
|
208
|
+
"400": "#FFD162",
|
|
209
|
+
"500": "#FFC233",
|
|
210
|
+
"600": "#EDAD0A",
|
|
211
|
+
"700": "#D39700",
|
|
212
|
+
"800": "#B88100",
|
|
213
|
+
"900": "#9D6C00",
|
|
214
|
+
"1000": "#825800",
|
|
215
|
+
"1100": "#694600",
|
|
216
|
+
"1200": "#523600",
|
|
217
|
+
"1300": "#3D2800"
|
|
173
218
|
}
|
|
174
219
|
},
|
|
175
220
|
spacing: {
|
|
@@ -640,6 +685,54 @@ var semantic = {
|
|
|
640
685
|
error: "#D31510",
|
|
641
686
|
success: "#007A4D",
|
|
642
687
|
warning: "#B14C00"
|
|
688
|
+
},
|
|
689
|
+
financial: {
|
|
690
|
+
credit: "#15A46E",
|
|
691
|
+
"credit-hover": "#008F5D",
|
|
692
|
+
debit: "#D31510",
|
|
693
|
+
"debit-hover": "#B40000",
|
|
694
|
+
pending: "#F68511",
|
|
695
|
+
neutral: "#6c757d"
|
|
696
|
+
},
|
|
697
|
+
category: {
|
|
698
|
+
blue: "#3892F3",
|
|
699
|
+
"blue-emphasis": "#0265DC",
|
|
700
|
+
"blue-subtle": "#E0F2FF",
|
|
701
|
+
purple: "#AD5FE8",
|
|
702
|
+
"purple-emphasis": "#7E2EBD",
|
|
703
|
+
"purple-subtle": "#F9F0FF",
|
|
704
|
+
pink: "#FF42AB",
|
|
705
|
+
"pink-emphasis": "#DC007B",
|
|
706
|
+
"pink-subtle": "#FFEFF9",
|
|
707
|
+
yellow: "#D39700",
|
|
708
|
+
"yellow-emphasis": "#9D6C00",
|
|
709
|
+
"yellow-subtle": "#FFF3D6",
|
|
710
|
+
green: "#15A46E",
|
|
711
|
+
"green-emphasis": "#007A4D",
|
|
712
|
+
"green-subtle": "#CEF8E0",
|
|
713
|
+
red: "#F75C46",
|
|
714
|
+
"red-emphasis": "#D31510",
|
|
715
|
+
"red-subtle": "#FFEBE7",
|
|
716
|
+
orange: "#E46F00",
|
|
717
|
+
"orange-emphasis": "#B14C00",
|
|
718
|
+
"orange-subtle": "#FFECCC",
|
|
719
|
+
gray: "#495057",
|
|
720
|
+
"gray-emphasis": "#212529",
|
|
721
|
+
"gray-subtle": "#e9ecef"
|
|
722
|
+
},
|
|
723
|
+
status: {
|
|
724
|
+
pending: "#D39700",
|
|
725
|
+
"pending-bg": "#FFF3D6",
|
|
726
|
+
completed: "#007A4D",
|
|
727
|
+
"completed-bg": "#CEF8E0",
|
|
728
|
+
failed: "#D31510",
|
|
729
|
+
"failed-bg": "#FFEBE7",
|
|
730
|
+
cancelled: "#495057",
|
|
731
|
+
"cancelled-bg": "#e9ecef",
|
|
732
|
+
processing: "#0265DC",
|
|
733
|
+
"processing-bg": "#E0F2FF",
|
|
734
|
+
scheduled: "#7E2EBD",
|
|
735
|
+
"scheduled-bg": "#F9F0FF"
|
|
643
736
|
}
|
|
644
737
|
},
|
|
645
738
|
typography: {
|
package/dist/tokens/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../src/tokens.ts"],"sourcesContent":["// Tokens-only export for standalone usage\nimport tokensJson from './styles/tokens.json'\n\nexport const tokens = tokensJson\nexport default tokensJson\n\n// Export token types\nexport type {\n Tokens,\n TokensBase,\n TokensSemantic,\n TokensComponent\n} from './styles/tokens.d'"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/tokens.ts"],"sourcesContent":["// Tokens-only export for standalone usage\nimport tokensJson from './styles/tokens.json'\n\nexport const tokens = tokensJson\nexport default tokensJson\n\n// Export token types\nexport type {\n Tokens,\n TokensBase,\n TokensSemantic,\n TokensComponent\n} from './styles/tokens.d'"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAGO,IAAM,MAAM,GAAG;;;;;"}
|
package/dist/tokens/tokens.d.ts
CHANGED
|
@@ -169,6 +169,51 @@ export declare const tokens: {
|
|
|
169
169
|
"1200": string;
|
|
170
170
|
"1300": string;
|
|
171
171
|
};
|
|
172
|
+
purple: {
|
|
173
|
+
"100": string;
|
|
174
|
+
"200": string;
|
|
175
|
+
"300": string;
|
|
176
|
+
"400": string;
|
|
177
|
+
"500": string;
|
|
178
|
+
"600": string;
|
|
179
|
+
"700": string;
|
|
180
|
+
"800": string;
|
|
181
|
+
"900": string;
|
|
182
|
+
"1000": string;
|
|
183
|
+
"1100": string;
|
|
184
|
+
"1200": string;
|
|
185
|
+
"1300": string;
|
|
186
|
+
};
|
|
187
|
+
pink: {
|
|
188
|
+
"100": string;
|
|
189
|
+
"200": string;
|
|
190
|
+
"300": string;
|
|
191
|
+
"400": string;
|
|
192
|
+
"500": string;
|
|
193
|
+
"600": string;
|
|
194
|
+
"700": string;
|
|
195
|
+
"800": string;
|
|
196
|
+
"900": string;
|
|
197
|
+
"1000": string;
|
|
198
|
+
"1100": string;
|
|
199
|
+
"1200": string;
|
|
200
|
+
"1300": string;
|
|
201
|
+
};
|
|
202
|
+
yellow: {
|
|
203
|
+
"100": string;
|
|
204
|
+
"200": string;
|
|
205
|
+
"300": string;
|
|
206
|
+
"400": string;
|
|
207
|
+
"500": string;
|
|
208
|
+
"600": string;
|
|
209
|
+
"700": string;
|
|
210
|
+
"800": string;
|
|
211
|
+
"900": string;
|
|
212
|
+
"1000": string;
|
|
213
|
+
"1100": string;
|
|
214
|
+
"1200": string;
|
|
215
|
+
"1300": string;
|
|
216
|
+
};
|
|
172
217
|
};
|
|
173
218
|
spacing: {
|
|
174
219
|
"0": string;
|
|
@@ -639,6 +684,54 @@ export declare const tokens: {
|
|
|
639
684
|
success: string;
|
|
640
685
|
warning: string;
|
|
641
686
|
};
|
|
687
|
+
financial: {
|
|
688
|
+
credit: string;
|
|
689
|
+
"credit-hover": string;
|
|
690
|
+
debit: string;
|
|
691
|
+
"debit-hover": string;
|
|
692
|
+
pending: string;
|
|
693
|
+
neutral: string;
|
|
694
|
+
};
|
|
695
|
+
category: {
|
|
696
|
+
blue: string;
|
|
697
|
+
"blue-emphasis": string;
|
|
698
|
+
"blue-subtle": string;
|
|
699
|
+
purple: string;
|
|
700
|
+
"purple-emphasis": string;
|
|
701
|
+
"purple-subtle": string;
|
|
702
|
+
pink: string;
|
|
703
|
+
"pink-emphasis": string;
|
|
704
|
+
"pink-subtle": string;
|
|
705
|
+
yellow: string;
|
|
706
|
+
"yellow-emphasis": string;
|
|
707
|
+
"yellow-subtle": string;
|
|
708
|
+
green: string;
|
|
709
|
+
"green-emphasis": string;
|
|
710
|
+
"green-subtle": string;
|
|
711
|
+
red: string;
|
|
712
|
+
"red-emphasis": string;
|
|
713
|
+
"red-subtle": string;
|
|
714
|
+
orange: string;
|
|
715
|
+
"orange-emphasis": string;
|
|
716
|
+
"orange-subtle": string;
|
|
717
|
+
gray: string;
|
|
718
|
+
"gray-emphasis": string;
|
|
719
|
+
"gray-subtle": string;
|
|
720
|
+
};
|
|
721
|
+
status: {
|
|
722
|
+
pending: string;
|
|
723
|
+
"pending-bg": string;
|
|
724
|
+
completed: string;
|
|
725
|
+
"completed-bg": string;
|
|
726
|
+
failed: string;
|
|
727
|
+
"failed-bg": string;
|
|
728
|
+
cancelled: string;
|
|
729
|
+
"cancelled-bg": string;
|
|
730
|
+
processing: string;
|
|
731
|
+
"processing-bg": string;
|
|
732
|
+
scheduled: string;
|
|
733
|
+
"scheduled-bg": string;
|
|
734
|
+
};
|
|
642
735
|
};
|
|
643
736
|
typography: {
|
|
644
737
|
display: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-origin/design-system",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "Common Origin Design System - Framework-agnostic atomic design components with comprehensive WCAG 2.2 AA testing",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
"@hotjar/browser": "^1.0.9",
|
|
50
50
|
"date-fns": "^4.1.0",
|
|
51
51
|
"gray-matter": "^4.0.3",
|
|
52
|
-
"next": "
|
|
52
|
+
"next": "^16.0.10",
|
|
53
53
|
"remark": "^15.0.1",
|
|
54
54
|
"remark-html": "^16.0.1",
|
|
55
55
|
"ts-morph": "^27.0.2",
|
|
56
|
-
"typescript": "^
|
|
56
|
+
"typescript": "^5.7.3"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@babel/core": "^7.28.4",
|