@mekari/pixel3-theme 0.0.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/breakpoints.d.mts +8 -0
- package/dist/breakpoints.d.ts +8 -0
- package/dist/conditions.d.mts +23 -0
- package/dist/conditions.d.ts +23 -0
- package/dist/global-css.d.mts +5 -0
- package/dist/global-css.d.ts +5 -0
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +2509 -0
- package/dist/index.mjs +2488 -0
- package/dist/keyframes.d.mts +5 -0
- package/dist/keyframes.d.ts +5 -0
- package/dist/recipes/accordion.d.mts +5 -0
- package/dist/recipes/accordion.d.ts +5 -0
- package/dist/recipes/avatar.d.mts +6 -0
- package/dist/recipes/avatar.d.ts +6 -0
- package/dist/recipes/badge.d.mts +5 -0
- package/dist/recipes/badge.d.ts +5 -0
- package/dist/recipes/button.d.mts +6 -0
- package/dist/recipes/button.d.ts +6 -0
- package/dist/recipes/checkbox.d.mts +5 -0
- package/dist/recipes/checkbox.d.ts +5 -0
- package/dist/recipes/icon.d.mts +5 -0
- package/dist/recipes/icon.d.ts +5 -0
- package/dist/recipes/index.d.mts +37 -0
- package/dist/recipes/index.d.ts +37 -0
- package/dist/recipes/input.d.mts +7 -0
- package/dist/recipes/input.d.ts +7 -0
- package/dist/recipes/popover.d.mts +7 -0
- package/dist/recipes/popover.d.ts +7 -0
- package/dist/recipes/progress.d.mts +5 -0
- package/dist/recipes/progress.d.ts +5 -0
- package/dist/recipes/radio.d.mts +5 -0
- package/dist/recipes/radio.d.ts +5 -0
- package/dist/recipes/select.d.mts +5 -0
- package/dist/recipes/select.d.ts +5 -0
- package/dist/recipes/shared.d.mts +5 -0
- package/dist/recipes/shared.d.ts +5 -0
- package/dist/recipes/spinner.d.mts +5 -0
- package/dist/recipes/spinner.d.ts +5 -0
- package/dist/recipes/table.d.mts +6 -0
- package/dist/recipes/table.d.ts +6 -0
- package/dist/recipes/tabs.d.mts +7 -0
- package/dist/recipes/tabs.d.ts +7 -0
- package/dist/recipes/tag.d.mts +5 -0
- package/dist/recipes/tag.d.ts +5 -0
- package/dist/recipes/text.d.mts +5 -0
- package/dist/recipes/text.d.ts +5 -0
- package/dist/recipes/textarea.d.mts +5 -0
- package/dist/recipes/textarea.d.ts +5 -0
- package/dist/recipes/toggle.d.mts +5 -0
- package/dist/recipes/toggle.d.ts +5 -0
- package/dist/recipes/tooltip.d.mts +5 -0
- package/dist/recipes/tooltip.d.ts +5 -0
- package/dist/text-styles.d.mts +5 -0
- package/dist/text-styles.d.ts +5 -0
- package/dist/tokens/borders.d.mts +16 -0
- package/dist/tokens/borders.d.ts +16 -0
- package/dist/tokens/colors.d.mts +256 -0
- package/dist/tokens/colors.d.ts +256 -0
- package/dist/tokens/durations.d.mts +13 -0
- package/dist/tokens/durations.d.ts +13 -0
- package/dist/tokens/index.d.mts +647 -0
- package/dist/tokens/index.d.ts +647 -0
- package/dist/tokens/opacity.d.mts +16 -0
- package/dist/tokens/opacity.d.ts +16 -0
- package/dist/tokens/radii.d.mts +30 -0
- package/dist/tokens/radii.d.ts +30 -0
- package/dist/tokens/shadows.d.mts +40 -0
- package/dist/tokens/shadows.d.ts +40 -0
- package/dist/tokens/sizes.d.mts +95 -0
- package/dist/tokens/sizes.d.ts +95 -0
- package/dist/tokens/spacing.d.mts +72 -0
- package/dist/tokens/spacing.d.ts +72 -0
- package/dist/tokens/typography.d.mts +97 -0
- package/dist/tokens/typography.d.ts +97 -0
- package/dist/tokens/z-index.d.mts +28 -0
- package/dist/tokens/z-index.d.ts +28 -0
- package/package.json +41 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as _pandacss_dev from '@pandacss/dev';
|
|
2
|
+
|
|
3
|
+
declare const buttonRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
4
|
+
declare const buttonGroupRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
5
|
+
|
|
6
|
+
export { buttonGroupRecipe, buttonRecipe };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as _pandacss_dev from '@pandacss/dev';
|
|
2
|
+
|
|
3
|
+
declare const buttonRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
4
|
+
declare const buttonGroupRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
5
|
+
|
|
6
|
+
export { buttonGroupRecipe, buttonRecipe };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as _pandacss_types from '@pandacss/types';
|
|
2
|
+
|
|
3
|
+
declare const recipes: {
|
|
4
|
+
buttonRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
5
|
+
buttonGroupRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
6
|
+
textRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
7
|
+
iconRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
8
|
+
spinnerRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
9
|
+
popoverContentRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
10
|
+
popoverListRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
11
|
+
popoverListItemRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
12
|
+
badgeRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
13
|
+
textareaRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
14
|
+
tooltipRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
15
|
+
tabListRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
16
|
+
tabRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
17
|
+
selectedBorderRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
18
|
+
tableRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
19
|
+
tableContainerRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
20
|
+
};
|
|
21
|
+
declare const slotRecipes: {
|
|
22
|
+
accordion: _pandacss_types.SlotRecipeConfig;
|
|
23
|
+
checkboxSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
24
|
+
radioSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
25
|
+
sharedSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
26
|
+
progressSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
27
|
+
toggleSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
28
|
+
tagSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
29
|
+
inputSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
30
|
+
inputGroupSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
31
|
+
inputAddonSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
32
|
+
avatarSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
33
|
+
avatarGroupSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
34
|
+
selectSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export { recipes, slotRecipes };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as _pandacss_types from '@pandacss/types';
|
|
2
|
+
|
|
3
|
+
declare const recipes: {
|
|
4
|
+
buttonRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
5
|
+
buttonGroupRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
6
|
+
textRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
7
|
+
iconRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
8
|
+
spinnerRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
9
|
+
popoverContentRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
10
|
+
popoverListRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
11
|
+
popoverListItemRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
12
|
+
badgeRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
13
|
+
textareaRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
14
|
+
tooltipRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
15
|
+
tabListRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
16
|
+
tabRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
17
|
+
selectedBorderRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
18
|
+
tableRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
19
|
+
tableContainerRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
20
|
+
};
|
|
21
|
+
declare const slotRecipes: {
|
|
22
|
+
accordion: _pandacss_types.SlotRecipeConfig;
|
|
23
|
+
checkboxSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
24
|
+
radioSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
25
|
+
sharedSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
26
|
+
progressSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
27
|
+
toggleSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
28
|
+
tagSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
29
|
+
inputSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
30
|
+
inputGroupSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
31
|
+
inputAddonSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
32
|
+
avatarSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
33
|
+
avatarGroupSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
34
|
+
selectSlotRecipe: _pandacss_types.SlotRecipeConfig;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export { recipes, slotRecipes };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as _pandacss_dev from '@pandacss/dev';
|
|
2
|
+
|
|
3
|
+
declare const inputSlotRecipe: _pandacss_dev.SlotRecipeConfig;
|
|
4
|
+
declare const inputGroupSlotRecipe: _pandacss_dev.SlotRecipeConfig;
|
|
5
|
+
declare const inputAddonSlotRecipe: _pandacss_dev.SlotRecipeConfig;
|
|
6
|
+
|
|
7
|
+
export { inputAddonSlotRecipe, inputGroupSlotRecipe, inputSlotRecipe };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as _pandacss_dev from '@pandacss/dev';
|
|
2
|
+
|
|
3
|
+
declare const inputSlotRecipe: _pandacss_dev.SlotRecipeConfig;
|
|
4
|
+
declare const inputGroupSlotRecipe: _pandacss_dev.SlotRecipeConfig;
|
|
5
|
+
declare const inputAddonSlotRecipe: _pandacss_dev.SlotRecipeConfig;
|
|
6
|
+
|
|
7
|
+
export { inputAddonSlotRecipe, inputGroupSlotRecipe, inputSlotRecipe };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as _pandacss_dev from '@pandacss/dev';
|
|
2
|
+
|
|
3
|
+
declare const popoverContentRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
4
|
+
declare const popoverListRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
5
|
+
declare const popoverListItemRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
6
|
+
|
|
7
|
+
export { popoverContentRecipe, popoverListItemRecipe, popoverListRecipe };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as _pandacss_dev from '@pandacss/dev';
|
|
2
|
+
|
|
3
|
+
declare const popoverContentRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
4
|
+
declare const popoverListRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
5
|
+
declare const popoverListItemRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
6
|
+
|
|
7
|
+
export { popoverContentRecipe, popoverListItemRecipe, popoverListRecipe };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as _pandacss_dev from '@pandacss/dev';
|
|
2
|
+
|
|
3
|
+
declare const tableRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
4
|
+
declare const tableContainerRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
5
|
+
|
|
6
|
+
export { tableContainerRecipe, tableRecipe };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as _pandacss_dev from '@pandacss/dev';
|
|
2
|
+
|
|
3
|
+
declare const tableRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
4
|
+
declare const tableContainerRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
5
|
+
|
|
6
|
+
export { tableContainerRecipe, tableRecipe };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as _pandacss_dev from '@pandacss/dev';
|
|
2
|
+
|
|
3
|
+
declare const tabListRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
4
|
+
declare const tabRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
5
|
+
declare const selectedBorderRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
6
|
+
|
|
7
|
+
export { selectedBorderRecipe, tabListRecipe, tabRecipe };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as _pandacss_dev from '@pandacss/dev';
|
|
2
|
+
|
|
3
|
+
declare const tabListRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
4
|
+
declare const tabRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
5
|
+
declare const selectedBorderRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
6
|
+
|
|
7
|
+
export { selectedBorderRecipe, tabListRecipe, tabRecipe };
|