@mekari/pixel3-theme 0.2.0-dev.0 → 0.2.0-dev.1
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 +4 -4
- package/dist/index.mjs +4 -4
- package/dist/recipes/index.d.mts +1 -1
- package/dist/recipes/index.d.ts +1 -1
- package/dist/recipes/tabs.d.mts +2 -2
- package/dist/recipes/tabs.d.ts +2 -2
- package/package.json +1 -1
- package/src/recipes/index.ts +2 -2
- package/src/recipes/tabs.ts +4 -4
package/dist/index.js
CHANGED
|
@@ -1612,9 +1612,9 @@ var tabRecipe = (0, import_dev16.defineRecipe)({
|
|
|
1612
1612
|
isSelected: false
|
|
1613
1613
|
}
|
|
1614
1614
|
});
|
|
1615
|
-
var
|
|
1616
|
-
className: "selected-border",
|
|
1617
|
-
jsx: ["
|
|
1615
|
+
var tabSelectedBorderRecipe = (0, import_dev16.defineRecipe)({
|
|
1616
|
+
className: "tab-selected-border",
|
|
1617
|
+
jsx: ["MpTabSelectedBorder", "mp-tab-selected-border"],
|
|
1618
1618
|
base: {
|
|
1619
1619
|
position: "absolute",
|
|
1620
1620
|
bottom: "-2px",
|
|
@@ -4256,7 +4256,7 @@ var recipes = {
|
|
|
4256
4256
|
textareaRecipe,
|
|
4257
4257
|
tooltipRecipe,
|
|
4258
4258
|
tabRecipe,
|
|
4259
|
-
|
|
4259
|
+
tabSelectedBorderRecipe,
|
|
4260
4260
|
tableRecipe,
|
|
4261
4261
|
tableContainerRecipe,
|
|
4262
4262
|
dividerRecipe,
|
package/dist/index.mjs
CHANGED
|
@@ -1586,9 +1586,9 @@ var tabRecipe = defineRecipe9({
|
|
|
1586
1586
|
isSelected: false
|
|
1587
1587
|
}
|
|
1588
1588
|
});
|
|
1589
|
-
var
|
|
1590
|
-
className: "selected-border",
|
|
1591
|
-
jsx: ["
|
|
1589
|
+
var tabSelectedBorderRecipe = defineRecipe9({
|
|
1590
|
+
className: "tab-selected-border",
|
|
1591
|
+
jsx: ["MpTabSelectedBorder", "mp-tab-selected-border"],
|
|
1592
1592
|
base: {
|
|
1593
1593
|
position: "absolute",
|
|
1594
1594
|
bottom: "-2px",
|
|
@@ -4230,7 +4230,7 @@ var recipes = {
|
|
|
4230
4230
|
textareaRecipe,
|
|
4231
4231
|
tooltipRecipe,
|
|
4232
4232
|
tabRecipe,
|
|
4233
|
-
|
|
4233
|
+
tabSelectedBorderRecipe,
|
|
4234
4234
|
tableRecipe,
|
|
4235
4235
|
tableContainerRecipe,
|
|
4236
4236
|
dividerRecipe,
|
package/dist/recipes/index.d.mts
CHANGED
|
@@ -13,7 +13,7 @@ declare const recipes: {
|
|
|
13
13
|
textareaRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
14
14
|
tooltipRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
15
15
|
tabRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
16
|
-
|
|
16
|
+
tabSelectedBorderRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
17
17
|
tableRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
18
18
|
tableContainerRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
19
19
|
dividerRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
package/dist/recipes/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ declare const recipes: {
|
|
|
13
13
|
textareaRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
14
14
|
tooltipRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
15
15
|
tabRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
16
|
-
|
|
16
|
+
tabSelectedBorderRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
17
17
|
tableRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
18
18
|
tableContainerRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
|
19
19
|
dividerRecipe: _pandacss_types.RecipeConfig<_pandacss_types.RecipeVariantRecord>;
|
package/dist/recipes/tabs.d.mts
CHANGED
|
@@ -2,6 +2,6 @@ import * as _pandacss_dev from '@pandacss/dev';
|
|
|
2
2
|
|
|
3
3
|
declare const tabListSlotRecipe: _pandacss_dev.SlotRecipeConfig;
|
|
4
4
|
declare const tabRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
5
|
-
declare const
|
|
5
|
+
declare const tabSelectedBorderRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
6
6
|
|
|
7
|
-
export {
|
|
7
|
+
export { tabListSlotRecipe, tabRecipe, tabSelectedBorderRecipe };
|
package/dist/recipes/tabs.d.ts
CHANGED
|
@@ -2,6 +2,6 @@ import * as _pandacss_dev from '@pandacss/dev';
|
|
|
2
2
|
|
|
3
3
|
declare const tabListSlotRecipe: _pandacss_dev.SlotRecipeConfig;
|
|
4
4
|
declare const tabRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
5
|
-
declare const
|
|
5
|
+
declare const tabSelectedBorderRecipe: _pandacss_dev.RecipeConfig<_pandacss_dev.RecipeVariantRecord>;
|
|
6
6
|
|
|
7
|
-
export {
|
|
7
|
+
export { tabListSlotRecipe, tabRecipe, tabSelectedBorderRecipe };
|
package/package.json
CHANGED
package/src/recipes/index.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { popoverContentRecipe, popoverListRecipe, popoverListItemRecipe } from '
|
|
|
11
11
|
import { badgeRecipe } from './badge'
|
|
12
12
|
import { textareaRecipe } from './textarea'
|
|
13
13
|
import { tooltipRecipe } from './tooltip'
|
|
14
|
-
import { tabListSlotRecipe, tabRecipe,
|
|
14
|
+
import { tabListSlotRecipe, tabRecipe, tabSelectedBorderRecipe } from './tabs'
|
|
15
15
|
import { checkboxSlotRecipe } from './checkbox'
|
|
16
16
|
import { radioSlotRecipe } from './radio'
|
|
17
17
|
import { sharedSlotRecipe } from './shared'
|
|
@@ -77,7 +77,7 @@ export const recipes = {
|
|
|
77
77
|
textareaRecipe,
|
|
78
78
|
tooltipRecipe,
|
|
79
79
|
tabRecipe,
|
|
80
|
-
|
|
80
|
+
tabSelectedBorderRecipe,
|
|
81
81
|
tableRecipe,
|
|
82
82
|
tableContainerRecipe,
|
|
83
83
|
dividerRecipe,
|
package/src/recipes/tabs.ts
CHANGED
|
@@ -132,9 +132,9 @@ const tabRecipe = defineRecipe({
|
|
|
132
132
|
}
|
|
133
133
|
})
|
|
134
134
|
|
|
135
|
-
const
|
|
136
|
-
className: 'selected-border',
|
|
137
|
-
jsx: ['
|
|
135
|
+
const tabSelectedBorderRecipe = defineRecipe({
|
|
136
|
+
className: 'tab-selected-border',
|
|
137
|
+
jsx: ['MpTabSelectedBorder', 'mp-tab-selected-border'],
|
|
138
138
|
base: {
|
|
139
139
|
position: 'absolute',
|
|
140
140
|
bottom: '-2px',
|
|
@@ -218,4 +218,4 @@ const selectedBorderRecipe = defineRecipe({
|
|
|
218
218
|
}
|
|
219
219
|
})
|
|
220
220
|
|
|
221
|
-
export { tabListSlotRecipe, tabRecipe,
|
|
221
|
+
export { tabListSlotRecipe, tabRecipe, tabSelectedBorderRecipe }
|