@cieloazul310/digital-go-pandacss-preset 0.0.1-prerelease.3 → 0.1.0-beta.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/dist/index.js +21 -14
- package/dist/index.mjs +21 -14
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -217,6 +217,18 @@ var resourceListAnatomy = (0, import_anatomy.createAnatomy)("resource-list").par
|
|
|
217
217
|
"supportText",
|
|
218
218
|
"subLabel"
|
|
219
219
|
);
|
|
220
|
+
var tableAnatomy = (0, import_anatomy.createAnatomy)("table").parts(
|
|
221
|
+
"root",
|
|
222
|
+
"head",
|
|
223
|
+
"body",
|
|
224
|
+
"foot",
|
|
225
|
+
"row",
|
|
226
|
+
"header",
|
|
227
|
+
"cell",
|
|
228
|
+
"colgroup",
|
|
229
|
+
"col",
|
|
230
|
+
"caption"
|
|
231
|
+
);
|
|
220
232
|
|
|
221
233
|
// src/recipes/link.ts
|
|
222
234
|
var import_dev2 = require("@pandacss/dev");
|
|
@@ -1080,6 +1092,7 @@ var hamburger_menu_button_default = (0, import_dev10.defineRecipe)({
|
|
|
1080
1092
|
textStyle: "oln-16N-100",
|
|
1081
1093
|
rounded: 4,
|
|
1082
1094
|
touchAction: "manipulation",
|
|
1095
|
+
gap: 1.5,
|
|
1083
1096
|
/**
|
|
1084
1097
|
* hover:bg-solid-gray-50 hover:underline hover:underline-offset-[calc(3/16*1rem)]
|
|
1085
1098
|
*/
|
|
@@ -2552,24 +2565,13 @@ var select_default = (0, import_dev28.defineSlotRecipe)({
|
|
|
2552
2565
|
var import_dev29 = require("@pandacss/dev");
|
|
2553
2566
|
var table_default = (0, import_dev29.defineSlotRecipe)({
|
|
2554
2567
|
className: "table",
|
|
2555
|
-
slots:
|
|
2556
|
-
"root",
|
|
2557
|
-
"head",
|
|
2558
|
-
"body",
|
|
2559
|
-
"foot",
|
|
2560
|
-
"row",
|
|
2561
|
-
"header",
|
|
2562
|
-
"cell",
|
|
2563
|
-
"colgroup",
|
|
2564
|
-
"col",
|
|
2565
|
-
"caption"
|
|
2566
|
-
],
|
|
2568
|
+
slots: tableAnatomy.keys(),
|
|
2567
2569
|
base: {
|
|
2568
2570
|
root: {
|
|
2569
2571
|
/**
|
|
2570
2572
|
* w-full text-std-16N-170
|
|
2571
2573
|
*/
|
|
2572
|
-
|
|
2574
|
+
maxWidth: "full"
|
|
2573
2575
|
},
|
|
2574
2576
|
head: {
|
|
2575
2577
|
"& tr": {
|
|
@@ -2645,7 +2647,7 @@ var table_default = (0, import_dev29.defineSlotRecipe)({
|
|
|
2645
2647
|
},
|
|
2646
2648
|
true: {
|
|
2647
2649
|
root: {
|
|
2648
|
-
textStyle: "
|
|
2650
|
+
textStyle: "dns-16N-130"
|
|
2649
2651
|
},
|
|
2650
2652
|
header: {
|
|
2651
2653
|
/**
|
|
@@ -2678,6 +2680,11 @@ var table_default = (0, import_dev29.defineSlotRecipe)({
|
|
|
2678
2680
|
"& tr": {
|
|
2679
2681
|
_hover: {
|
|
2680
2682
|
bg: "keyColor.50"
|
|
2683
|
+
},
|
|
2684
|
+
_even: {
|
|
2685
|
+
"&:not(:has(input:checked))": {
|
|
2686
|
+
_hover: { bg: "{colors.keyColor.50}" }
|
|
2687
|
+
}
|
|
2681
2688
|
}
|
|
2682
2689
|
}
|
|
2683
2690
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -184,6 +184,18 @@ var resourceListAnatomy = createAnatomy("resource-list").parts(
|
|
|
184
184
|
"supportText",
|
|
185
185
|
"subLabel"
|
|
186
186
|
);
|
|
187
|
+
var tableAnatomy = createAnatomy("table").parts(
|
|
188
|
+
"root",
|
|
189
|
+
"head",
|
|
190
|
+
"body",
|
|
191
|
+
"foot",
|
|
192
|
+
"row",
|
|
193
|
+
"header",
|
|
194
|
+
"cell",
|
|
195
|
+
"colgroup",
|
|
196
|
+
"col",
|
|
197
|
+
"caption"
|
|
198
|
+
);
|
|
187
199
|
|
|
188
200
|
// src/recipes/link.ts
|
|
189
201
|
import { defineRecipe } from "@pandacss/dev";
|
|
@@ -1047,6 +1059,7 @@ var hamburger_menu_button_default = defineRecipe5({
|
|
|
1047
1059
|
textStyle: "oln-16N-100",
|
|
1048
1060
|
rounded: 4,
|
|
1049
1061
|
touchAction: "manipulation",
|
|
1062
|
+
gap: 1.5,
|
|
1050
1063
|
/**
|
|
1051
1064
|
* hover:bg-solid-gray-50 hover:underline hover:underline-offset-[calc(3/16*1rem)]
|
|
1052
1065
|
*/
|
|
@@ -2519,24 +2532,13 @@ var select_default = defineSlotRecipe13({
|
|
|
2519
2532
|
import { defineSlotRecipe as defineSlotRecipe14 } from "@pandacss/dev";
|
|
2520
2533
|
var table_default = defineSlotRecipe14({
|
|
2521
2534
|
className: "table",
|
|
2522
|
-
slots:
|
|
2523
|
-
"root",
|
|
2524
|
-
"head",
|
|
2525
|
-
"body",
|
|
2526
|
-
"foot",
|
|
2527
|
-
"row",
|
|
2528
|
-
"header",
|
|
2529
|
-
"cell",
|
|
2530
|
-
"colgroup",
|
|
2531
|
-
"col",
|
|
2532
|
-
"caption"
|
|
2533
|
-
],
|
|
2535
|
+
slots: tableAnatomy.keys(),
|
|
2534
2536
|
base: {
|
|
2535
2537
|
root: {
|
|
2536
2538
|
/**
|
|
2537
2539
|
* w-full text-std-16N-170
|
|
2538
2540
|
*/
|
|
2539
|
-
|
|
2541
|
+
maxWidth: "full"
|
|
2540
2542
|
},
|
|
2541
2543
|
head: {
|
|
2542
2544
|
"& tr": {
|
|
@@ -2612,7 +2614,7 @@ var table_default = defineSlotRecipe14({
|
|
|
2612
2614
|
},
|
|
2613
2615
|
true: {
|
|
2614
2616
|
root: {
|
|
2615
|
-
textStyle: "
|
|
2617
|
+
textStyle: "dns-16N-130"
|
|
2616
2618
|
},
|
|
2617
2619
|
header: {
|
|
2618
2620
|
/**
|
|
@@ -2645,6 +2647,11 @@ var table_default = defineSlotRecipe14({
|
|
|
2645
2647
|
"& tr": {
|
|
2646
2648
|
_hover: {
|
|
2647
2649
|
bg: "keyColor.50"
|
|
2650
|
+
},
|
|
2651
|
+
_even: {
|
|
2652
|
+
"&:not(:has(input:checked))": {
|
|
2653
|
+
_hover: { bg: "{colors.keyColor.50}" }
|
|
2654
|
+
}
|
|
2648
2655
|
}
|
|
2649
2656
|
}
|
|
2650
2657
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cieloazul310/digital-go-pandacss-preset",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0-beta.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"homepage": "https://github.com/cieloazul310/digital-go-design-system-with-panda",
|
|
6
6
|
"author": {
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"format": "prettier --parser typescript --write ."
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@cieloazul310/digital-go-pandacss-plugin": "^0.0
|
|
43
|
-
"@cieloazul310/digital-go-pandacss-utils": "^0.0
|
|
42
|
+
"@cieloazul310/digital-go-pandacss-plugin": "^0.1.0-beta.5",
|
|
43
|
+
"@cieloazul310/digital-go-pandacss-utils": "^0.1.0-beta.5"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@pandacss/dev": "^0.53.7",
|
|
47
|
-
"@repo/eslint-config": "^0.0.0",
|
|
48
|
-
"@repo/typescript-config": "^0.0.0",
|
|
47
|
+
"@repo/eslint-config": "^0.1.0-beta.0",
|
|
48
|
+
"@repo/typescript-config": "^0.1.0-beta.0",
|
|
49
49
|
"@zag-js/accordion": "^1.18.3",
|
|
50
50
|
"@zag-js/anatomy": "^1.18.3",
|
|
51
51
|
"@zag-js/checkbox": "^1.18.3",
|