@matteoaliano/forest-ui 0.3.3 → 0.3.5
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/bin/sync.mjs +30 -1
- package/dist/{chunk-J75HY2NM.mjs → chunk-G2ZXCZKP.mjs} +14 -14
- package/dist/chunk-G2ZXCZKP.mjs.map +1 -0
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +61 -46
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +51 -37
- package/dist/index.mjs.map +1 -1
- package/dist/theme.js +12 -12
- package/dist/theme.js.map +1 -1
- package/dist/theme.mjs +1 -1
- package/guidelines/FOREST_BE_GUIDELINES.md +1 -1
- package/guidelines/FOREST_FE_GUIDELINES.md +1 -1
- package/guidelines/FOREST_UI_GUIDELINES.md +2 -1
- package/package.json +2 -1
- package/skills/forest-agency/SKILL.md +84 -0
- package/skills/forest-agency/references/components.md +94 -0
- package/skills/forest-agency/references/patterns.md +256 -0
- package/skills/forest-external/SKILL.md +86 -0
- package/skills/forest-external/references/components.md +94 -0
- package/skills/forest-external/references/patterns.md +256 -0
- package/skills/forest-internal/SKILL.md +86 -0
- package/skills/forest-internal/references/components.md +94 -0
- package/skills/forest-internal/references/patterns.md +256 -0
- package/dist/chunk-J75HY2NM.mjs.map +0 -1
package/dist/theme.js
CHANGED
|
@@ -641,15 +641,15 @@ function buildPalette(tokens) {
|
|
|
641
641
|
const { base: base2, error: error2, warning: warning2, success: success2, info: info2, text: text5, bg: bg5, fg: fg5, border: border5 } = tokens;
|
|
642
642
|
return {
|
|
643
643
|
primary: {
|
|
644
|
-
main:
|
|
645
|
-
light:
|
|
646
|
-
dark:
|
|
644
|
+
main: tokens.bg.brandSolid,
|
|
645
|
+
light: tokens.fg.brandPrimary,
|
|
646
|
+
dark: tokens.bg.brandSolidHover,
|
|
647
647
|
contrastText: tokens.base.white
|
|
648
648
|
},
|
|
649
649
|
secondary: {
|
|
650
|
-
main:
|
|
651
|
-
light:
|
|
652
|
-
dark:
|
|
650
|
+
main: tokens.bg.secondarySolid,
|
|
651
|
+
light: tokens.fg.secondary,
|
|
652
|
+
dark: tokens.text.secondaryHover,
|
|
653
653
|
contrastText: tokens.base.white
|
|
654
654
|
},
|
|
655
655
|
error: {
|
|
@@ -1509,16 +1509,16 @@ function buildComponents(tokens) {
|
|
|
1509
1509
|
},
|
|
1510
1510
|
colorPrimary: {
|
|
1511
1511
|
"&.MuiChip-filled": {
|
|
1512
|
-
backgroundColor:
|
|
1513
|
-
color:
|
|
1514
|
-
"& .MuiChip-deleteIcon": { color:
|
|
1512
|
+
backgroundColor: tokens.bg.brandPrimary,
|
|
1513
|
+
color: tokens.text.brandPrimary,
|
|
1514
|
+
"& .MuiChip-deleteIcon": { color: tokens.fg.brandPrimary }
|
|
1515
1515
|
}
|
|
1516
1516
|
},
|
|
1517
1517
|
colorSecondary: {
|
|
1518
1518
|
"&.MuiChip-filled": {
|
|
1519
|
-
backgroundColor:
|
|
1520
|
-
color:
|
|
1521
|
-
"& .MuiChip-deleteIcon": { color:
|
|
1519
|
+
backgroundColor: tokens.bg.secondarySubtle,
|
|
1520
|
+
color: tokens.text.secondary,
|
|
1521
|
+
"& .MuiChip-deleteIcon": { color: tokens.fg.secondary }
|
|
1522
1522
|
}
|
|
1523
1523
|
},
|
|
1524
1524
|
colorError: {
|