@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,23 @@
|
|
|
1
|
+
declare const conditions: {
|
|
2
|
+
extend: {
|
|
3
|
+
disabled: string;
|
|
4
|
+
invalid: string;
|
|
5
|
+
checked: string;
|
|
6
|
+
indeterminate: string;
|
|
7
|
+
closed: string;
|
|
8
|
+
open: string;
|
|
9
|
+
hidden: string;
|
|
10
|
+
collapsed: string;
|
|
11
|
+
loading: string;
|
|
12
|
+
hasIcon: string;
|
|
13
|
+
active: string;
|
|
14
|
+
highlight: string;
|
|
15
|
+
hasBorder: string;
|
|
16
|
+
hasBackground: string;
|
|
17
|
+
isFullWidth: string;
|
|
18
|
+
placementLeft: string;
|
|
19
|
+
placementRight: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export { conditions };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const conditions: {
|
|
2
|
+
extend: {
|
|
3
|
+
disabled: string;
|
|
4
|
+
invalid: string;
|
|
5
|
+
checked: string;
|
|
6
|
+
indeterminate: string;
|
|
7
|
+
closed: string;
|
|
8
|
+
open: string;
|
|
9
|
+
hidden: string;
|
|
10
|
+
collapsed: string;
|
|
11
|
+
loading: string;
|
|
12
|
+
hasIcon: string;
|
|
13
|
+
active: string;
|
|
14
|
+
highlight: string;
|
|
15
|
+
hasBorder: string;
|
|
16
|
+
hasBackground: string;
|
|
17
|
+
isFullWidth: string;
|
|
18
|
+
placementLeft: string;
|
|
19
|
+
placementRight: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export { conditions };
|
package/dist/index.d.mts
ADDED