@hanzo/ui 4.7.0 → 4.8.3
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/assets/ai-icons.tsx +207 -0
- package/assets/crypto.tsx +33 -0
- package/assets/file-type-icon.tsx +66 -0
- package/assets/file.tsx +45 -0
- package/assets/general.tsx +2318 -0
- package/assets/hanzo-logo.svg +9 -0
- package/assets/hanzo-logo.tsx +17 -0
- package/assets/index.ts +122 -0
- package/assets/index.tsx +4 -0
- package/assets/llm-provider.tsx +1094 -0
- package/blocks/auth/index.ts +6 -0
- package/blocks/auth/login-2fa.tsx +165 -0
- package/blocks/auth/login-basic.tsx +94 -0
- package/blocks/auth/login-social.tsx +148 -0
- package/blocks/auth/magic-link.tsx +129 -0
- package/blocks/auth/password-reset.tsx +97 -0
- package/blocks/auth/signup.tsx +157 -0
- package/blocks/components/accordian-block.tsx +48 -0
- package/blocks/components/block-component-props.ts +11 -0
- package/blocks/components/bullet-cards-block.tsx +46 -0
- package/blocks/components/card-block/index.tsx +171 -0
- package/blocks/components/card-block/link-out-button.tsx +20 -0
- package/blocks/components/card-block/util.ts +28 -0
- package/blocks/components/carte-blanche-block/index.tsx +127 -0
- package/blocks/components/carte-blanche-block/variant-content-left.tsx +49 -0
- package/blocks/components/content.tsx +70 -0
- package/blocks/components/cta-block.tsx +115 -0
- package/blocks/components/enh-heading-block.tsx +204 -0
- package/blocks/components/grid-block/grid-block-mutator.ts +12 -0
- package/blocks/components/grid-block/index.tsx +83 -0
- package/blocks/components/grid-block/mutator-registry.ts +10 -0
- package/blocks/components/grid-block/table-borders.mutator.ts +47 -0
- package/blocks/components/group-block.tsx +83 -0
- package/blocks/components/heading-block.tsx +88 -0
- package/blocks/components/image-block.tsx +111 -0
- package/blocks/components/index.ts +30 -0
- package/blocks/components/screenful-block/content.tsx +123 -0
- package/blocks/components/screenful-block/index.tsx +107 -0
- package/blocks/components/screenful-block/poster-background.tsx +34 -0
- package/blocks/components/screenful-block/video-background.tsx +45 -0
- package/blocks/components/space-block.tsx +66 -0
- package/blocks/components/video-block.tsx +138 -0
- package/blocks/data-display/activity-feed.tsx +242 -0
- package/blocks/data-display/data-table.tsx +235 -0
- package/blocks/data-display/stats-grid.tsx +194 -0
- package/blocks/def/accordian-block.ts +14 -0
- package/blocks/def/block.ts +7 -0
- package/blocks/def/bullet-cards-block.ts +22 -0
- package/blocks/def/card-block.ts +22 -0
- package/blocks/def/carte-blanche-block.ts +21 -0
- package/blocks/def/cta-block.ts +19 -0
- package/blocks/def/element-block.ts +11 -0
- package/blocks/def/enh-heading-block.ts +44 -0
- package/blocks/def/grid-block.ts +16 -0
- package/blocks/def/group-block.ts +11 -0
- package/blocks/def/heading-block.ts +15 -0
- package/blocks/def/image-block.ts +31 -0
- package/blocks/def/index.ts +35 -0
- package/blocks/def/screenful-block.ts +54 -0
- package/blocks/def/space-block.ts +64 -0
- package/blocks/def/video-block.ts +9 -0
- package/blocks/ecommerce/checkout.tsx +242 -0
- package/blocks/ecommerce/index.ts +7 -0
- package/blocks/ecommerce/product-detail.tsx +257 -0
- package/blocks/ecommerce/product-grid.tsx +148 -0
- package/blocks/ecommerce/shopping-cart.tsx +181 -0
- package/blocks/index.ts +2 -0
- package/blocks/marketing/cta-section.tsx +207 -0
- package/blocks/marketing/faq.tsx +159 -0
- package/blocks/marketing/features-grid.tsx +156 -0
- package/blocks/marketing/hero-section.tsx +192 -0
- package/blocks/marketing/index.ts +6 -0
- package/blocks/marketing/pricing-table.tsx +121 -0
- package/blocks/marketing/testimonials.tsx +196 -0
- package/components/index.ts +9 -0
- package/dist/index.js +1408 -1514
- package/dist/index.mjs +1364 -1472
- package/dist/lib/utils.js +1 -0
- package/dist/lib/utils.mjs +1 -0
- package/dist/src/utils.js +1 -0
- package/dist/src/utils.mjs +1 -0
- package/dist/tailwind/index.js +4 -1
- package/dist/tailwind/index.mjs +4 -1
- package/dist/types/index.js +1 -0
- package/dist/types/index.mjs +2 -0
- package/dist/util/format-text.js +52 -0
- package/dist/util/format-text.mjs +33 -0
- package/dist/util/index.js +385 -0
- package/dist/util/index.mjs +364 -0
- package/frameworks/core/index.ts +6 -0
- package/frameworks/core/utils/index.ts +64 -0
- package/frameworks/react/components/button.tsx +26 -0
- package/frameworks/react/components/index.ts +5 -0
- package/frameworks/react/hooks/index.ts +5 -0
- package/frameworks/react/index.ts +9 -0
- package/frameworks/react/package.json +8 -0
- package/frameworks/react/utils/index.ts +2 -0
- package/frameworks/react-native/index.ts +9 -0
- package/frameworks/react-native/package.json +8 -0
- package/frameworks/registry.json +371 -0
- package/frameworks/setup.sh +69 -0
- package/frameworks/svelte/index.ts +9 -0
- package/frameworks/svelte/package.json +8 -0
- package/frameworks/tracker.json +1854 -0
- package/frameworks/vue/index.ts +9 -0
- package/frameworks/vue/package.json +8 -0
- package/helpers/file.ts +33 -0
- package/helpers/memoization.ts +40 -0
- package/package.json +49 -11
- package/primitives/accordion.tsx +74 -0
- package/primitives/action-button.tsx +42 -0
- package/primitives/alert-dialog.tsx +185 -0
- package/primitives/alert.tsx +74 -0
- package/primitives/apply-typography.tsx +55 -0
- package/primitives/aspect-ratio.tsx +5 -0
- package/primitives/avatar.tsx +57 -0
- package/primitives/background-beams.tsx +142 -0
- package/primitives/badge.tsx +45 -0
- package/primitives/breadcrumb.tsx +130 -0
- package/primitives/breakpoint-indicator.tsx +19 -0
- package/primitives/button.tsx +72 -0
- package/primitives/calendar.tsx +72 -0
- package/primitives/card.tsx +97 -0
- package/primitives/carousel.tsx +238 -0
- package/primitives/chat/chat-input-area.tsx +88 -0
- package/primitives/chat/chat-input.tsx +71 -0
- package/primitives/chat/files-preview.tsx +331 -0
- package/primitives/chat/index.ts +6 -0
- package/primitives/chat/json-form.tsx +8 -0
- package/primitives/chat/message-list.tsx +308 -0
- package/primitives/chat/message.tsx +569 -0
- package/primitives/chat/sqlite-preview.tsx +215 -0
- package/primitives/checkbox.tsx +32 -0
- package/primitives/collapsible.tsx +9 -0
- package/primitives/combobox.tsx +239 -0
- package/primitives/command.tsx +151 -0
- package/primitives/context-menu.tsx +206 -0
- package/primitives/copy-to-clipboard-icon.tsx +60 -0
- package/primitives/dialog-video-controller.tsx +38 -0
- package/primitives/dialog.tsx +128 -0
- package/primitives/dot-pattern.tsx +57 -0
- package/primitives/dots-loader.tsx +13 -0
- package/primitives/drawer.tsx +113 -0
- package/primitives/dropdown-menu.tsx +199 -0
- package/primitives/error-message.tsx +19 -0
- package/primitives/file-uploader.tsx +202 -0
- package/primitives/form.tsx +185 -0
- package/primitives/hover-card.tsx +28 -0
- package/primitives/icons/github.tsx +14 -0
- package/primitives/icons/index.ts +18 -0
- package/primitives/icons/youtube-logo.tsx +59 -0
- package/primitives/index-common.ts +304 -0
- package/primitives/index-next.ts +4 -0
- package/primitives/input-otp.tsx +65 -0
- package/primitives/input.tsx +128 -0
- package/primitives/label.tsx +21 -0
- package/primitives/list-adaptor.ts +12 -0
- package/primitives/list-box.tsx +74 -0
- package/primitives/loading-spinner.tsx +33 -0
- package/primitives/markdown-preview.tsx +612 -0
- package/primitives/mermaid.tsx +191 -0
- package/primitives/navigation-menu.tsx +147 -0
- package/primitives/next/image.tsx +91 -0
- package/primitives/next/index.ts +7 -0
- package/primitives/next/inline-icon.tsx +36 -0
- package/primitives/next/link-element.tsx +109 -0
- package/primitives/next/mdx-link.tsx +22 -0
- package/primitives/next/media-stack.tsx +52 -0
- package/primitives/next/nav-items.tsx +45 -0
- package/primitives/next/youtube-embed.tsx +83 -0
- package/primitives/pagination.tsx +117 -0
- package/primitives/popover.tsx +34 -0
- package/primitives/pretty-json-print.tsx +28 -0
- package/primitives/progress.tsx +27 -0
- package/primitives/prompt-textarea.tsx +72 -0
- package/primitives/qr-code.tsx +112 -0
- package/primitives/radio-group.tsx +42 -0
- package/primitives/resizable.tsx +47 -0
- package/primitives/scroll-area.tsx +57 -0
- package/primitives/search-input.tsx +66 -0
- package/primitives/select.tsx +122 -0
- package/primitives/separator.tsx +26 -0
- package/primitives/sheet.tsx +139 -0
- package/primitives/skeleton.tsx +18 -0
- package/primitives/slider.tsx +63 -0
- package/primitives/sonner.tsx +35 -0
- package/primitives/step-indicator.tsx +69 -0
- package/primitives/stepper.tsx +272 -0
- package/primitives/switch.tsx +27 -0
- package/primitives/table.tsx +105 -0
- package/primitives/tabs.tsx +50 -0
- package/primitives/text-area.tsx +26 -0
- package/primitives/text-link.tsx +25 -0
- package/primitives/textarea.tsx +64 -0
- package/primitives/textfield.tsx +78 -0
- package/primitives/toast.tsx +30 -0
- package/primitives/toggle-group.tsx +63 -0
- package/primitives/toggle.tsx +44 -0
- package/primitives/tooltip.tsx +47 -0
- package/primitives/video-player.tsx +23 -0
- package/src/button.ts +1 -0
- package/src/hooks/index.ts +7 -0
- package/src/hooks/use-click-away.ts +31 -0
- package/src/hooks/use-combined-refs.ts +22 -0
- package/src/hooks/use-copy-clipboard.ts +30 -0
- package/src/hooks/use-debounce.ts +17 -0
- package/src/hooks/use-fill-ids.ts +25 -0
- package/src/hooks/use-map.ts +26 -0
- package/src/hooks/use-measure.ts +42 -0
- package/src/hooks/use-reverse-video-playback.ts +43 -0
- package/src/hooks/use-scroll-restoration.ts +50 -0
- package/src/index-lean.ts +87 -0
- package/src/index.ts +54 -0
- package/src/mcp/README.md +141 -0
- package/src/mcp/enhanced-server.ts +1208 -0
- package/src/mcp/index.ts +518 -0
- package/src/mcp/package.json +10 -0
- package/src/registry/api.ts +164 -0
- package/src/registry/index.ts +60 -0
- package/src/registry/package.json +10 -0
- package/src/utils.ts +19 -0
- package/tailwind/colors.tailwind.js +53 -0
- package/tailwind/fontFamily.tailwind.ts +7 -0
- package/tailwind/fontSize.tailwind.ts +13 -0
- package/tailwind/index.ts +7 -0
- package/tailwind/safelist.tailwind.js +26 -0
- package/tailwind/screens.tailwind.js +8 -0
- package/tailwind/spacing.tailwind.js +65 -0
- package/tailwind/tailwind.config.hanzo-preset.d.ts +5 -0
- package/tailwind/tailwind.config.hanzo-preset.js +915 -0
- package/tailwind/tw-font-desc.ts +15 -0
- package/tailwind/typo-plugin/get-plugin-styles.js +679 -0
- package/tailwind/typo-plugin/index.d.ts +9 -0
- package/tailwind/typo-plugin/index.js +141 -0
- package/tailwind/typo-plugin/utils.js +60 -0
- package/tailwind/typography-test.mdx +35 -0
- package/tailwind/z-index.tailwind.js +71 -0
- package/types/animation-def.ts +3 -0
- package/types/breakpoints.ts +11 -0
- package/types/bullet-item.ts +10 -0
- package/types/button-def.ts +39 -0
- package/types/dimensions.ts +8 -0
- package/types/grid-def.ts +56 -0
- package/types/image-def.ts +32 -0
- package/types/index.ts +30 -0
- package/types/link-def.ts +56 -0
- package/types/media-stack-def.ts +31 -0
- package/types/t-shirt-size.ts +5 -0
- package/types/tshirt-dimensions.ts +20 -0
- package/types/video-def.ts +25 -0
- package/util/blob.ts +33 -0
- package/util/copy-to-clipboard.ts +17 -0
- package/util/create-shadow-root.ts +22 -0
- package/util/date.ts +84 -0
- package/util/debounce.ts +11 -0
- package/util/file.ts +15 -0
- package/util/format-and-abbreviate-as-currency.ts +125 -0
- package/util/format-text.ts +34 -0
- package/util/format-to-max-char.ts +68 -0
- package/util/index-client.ts +3 -0
- package/util/index.ts +112 -0
- package/util/number-abbreviate.ts +49 -0
- package/util/specifier.ts +43 -0
- package/util/spread-to-transform.ts +25 -0
- package/util/step-animation.ts +90 -0
- package/util/timing.ts +3 -0
- package/util/toasts.tsx +17 -0
- package/util/two-way-map.ts +19 -0
- package/dist/index.d.mts +0 -16
- package/dist/index.d.ts +0 -16
- package/dist/lib/utils.d.mts +0 -2
- package/dist/lib/utils.d.ts +0 -2
- package/dist/src/utils.d.mts +0 -7
- package/dist/src/utils.d.ts +0 -7
- package/dist/tailwind/index.d.mts +0 -2
- package/dist/tailwind/index.d.ts +0 -2
- package/dist/types/index.d.mts +0 -12
- package/dist/types/index.d.ts +0 -12
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { z } from "zod"
|
|
2
|
+
|
|
3
|
+
// Define the file schema to match hanzo/ui's format
|
|
4
|
+
export const fileSchema = z.object({
|
|
5
|
+
path: z.string(),
|
|
6
|
+
content: z.string().optional(),
|
|
7
|
+
type: z.string(),
|
|
8
|
+
target: z.string().optional(),
|
|
9
|
+
})
|
|
10
|
+
|
|
11
|
+
// Registry item schema aligned with hanzo/ui format
|
|
12
|
+
export const registryItemSchema = z.object({
|
|
13
|
+
name: z.string(),
|
|
14
|
+
type: z.string(),
|
|
15
|
+
description: z.string().optional(),
|
|
16
|
+
author: z.string().optional(),
|
|
17
|
+
dependencies: z.array(z.string()).optional(),
|
|
18
|
+
devDependencies: z.array(z.string()).optional(),
|
|
19
|
+
registryDependencies: z.array(z.string()).optional(),
|
|
20
|
+
files: z.array(fileSchema).optional(),
|
|
21
|
+
meta: z.record(z.any()).optional(),
|
|
22
|
+
title: z.string().optional(),
|
|
23
|
+
cssVars: z.record(z.any()).optional(),
|
|
24
|
+
tailwind: z.record(z.any()).optional(),
|
|
25
|
+
category: z.string().optional(),
|
|
26
|
+
subcategory: z.string().optional(),
|
|
27
|
+
})
|
|
28
|
+
|
|
29
|
+
// Registry schema aligned with hanzo/ui format
|
|
30
|
+
export const registrySchema = z.object({
|
|
31
|
+
$schema: z.string().optional(),
|
|
32
|
+
name: z.string(),
|
|
33
|
+
homepage: z.string().optional(),
|
|
34
|
+
style: z.string().optional(),
|
|
35
|
+
items: z.array(registryItemSchema),
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
// Schema for a registry with full content
|
|
39
|
+
export const registryWithContentSchema = registrySchema.extend({
|
|
40
|
+
items: z.array(
|
|
41
|
+
registryItemSchema.extend({
|
|
42
|
+
files: z.array(
|
|
43
|
+
fileSchema.extend({
|
|
44
|
+
content: z.string(),
|
|
45
|
+
})
|
|
46
|
+
),
|
|
47
|
+
})
|
|
48
|
+
),
|
|
49
|
+
})
|
|
50
|
+
|
|
51
|
+
// Type definitions for easier use in TypeScript
|
|
52
|
+
export type RegistryItem = z.infer<typeof registryItemSchema>
|
|
53
|
+
export type Registry = z.infer<typeof registrySchema>
|
|
54
|
+
export type RegistryWithContent = z.infer<typeof registryWithContentSchema>
|
|
55
|
+
export type RegistryFile = z.infer<typeof fileSchema>
|
|
56
|
+
|
|
57
|
+
// Support CommonJS
|
|
58
|
+
if (typeof module !== 'undefined') {
|
|
59
|
+
module.exports = { fileSchema, registryItemSchema, registrySchema, registryWithContentSchema }
|
|
60
|
+
}
|
package/src/utils.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { clsx, type ClassValue } from "clsx"
|
|
2
|
+
import { twMerge } from "tailwind-merge"
|
|
3
|
+
|
|
4
|
+
export function cn(...inputs: ClassValue[]) {
|
|
5
|
+
return twMerge(clsx(inputs))
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export function formatDate(input: string | number): string {
|
|
9
|
+
const date = new Date(input)
|
|
10
|
+
return date.toLocaleDateString("en-US", {
|
|
11
|
+
month: "long",
|
|
12
|
+
day: "numeric",
|
|
13
|
+
year: "numeric",
|
|
14
|
+
})
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export function absoluteUrl(path: string) {
|
|
18
|
+
return `${process.env.NEXT_PUBLIC_APP_URL || ''}${path}`
|
|
19
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export default ({ colors }) => ({
|
|
2
|
+
inherit: colors.inherit,
|
|
3
|
+
current: colors.current,
|
|
4
|
+
transparent: colors.transparent,
|
|
5
|
+
ring: "var(--hz-ui-ring)",
|
|
6
|
+
background: 'var(--hz-ui-bg-0)',
|
|
7
|
+
// Should be partially transparent,
|
|
8
|
+
// so opacity animations in 'vaul' module and other 3rd party stuff work
|
|
9
|
+
overlay: 'var(--hz-ui-bg-overlay)',
|
|
10
|
+
|
|
11
|
+
// levels forward in z-index (a la Material Design)
|
|
12
|
+
level: {
|
|
13
|
+
DEFAULT: "var(--hz-ui-bg-0)",
|
|
14
|
+
'0': "var(--hz-ui-bg-0)",
|
|
15
|
+
'1': "var(--hz-ui-bg-1)",
|
|
16
|
+
'2': "var(--hz-ui-bg-2)",
|
|
17
|
+
'3': "var(--hz-ui-bg-3)",
|
|
18
|
+
},
|
|
19
|
+
accent: "var(--hz-ui-fg-0)", // full contrast (darkTheme:white) : heading and links hover
|
|
20
|
+
foreground: "var(--hz-ui-fg-body)", // body text off-white (bright enough to contrast to bg-level-1)
|
|
21
|
+
muted: {
|
|
22
|
+
DEFAULT: "var(--hz-ui-fg-2)", // de-emphasized: fine print
|
|
23
|
+
'1': "var(--hz-ui-fg-2)", // synonymous ^^^
|
|
24
|
+
'2': "var(--hz-ui-fg-3)", // disabled or very de-emphasized
|
|
25
|
+
'3': "var(--hz-ui-fg-4)", // very disabled ;)
|
|
26
|
+
'4': "var(--hz-ui-fg-5)", // disabled border
|
|
27
|
+
},
|
|
28
|
+
primary: {
|
|
29
|
+
DEFAULT: "var(--hz-ui-primary)",
|
|
30
|
+
lux: "var(--hz-ui-primary)", // in case there are two configs
|
|
31
|
+
hover: "var(--hz-ui-primary-hover)",
|
|
32
|
+
fg: "var(--hz-ui-primary-fg)",
|
|
33
|
+
},
|
|
34
|
+
secondary: {
|
|
35
|
+
DEFAULT: "var(--hz-ui-secondary)",
|
|
36
|
+
lux: "var(--hz-ui-secondary)", // in case there are two configs
|
|
37
|
+
hover: "var(--hz-ui-secondary-hover)",
|
|
38
|
+
fg: "var(--hz-ui-secondary-fg)",
|
|
39
|
+
'0': 'var(--hz-ui-secondary-0)',
|
|
40
|
+
'1': 'var(--hz-ui-secondary-1)',
|
|
41
|
+
'2': 'var(--hz-ui-secondary-2)',
|
|
42
|
+
'3': 'var(--hz-ui-secondary-3)',
|
|
43
|
+
},
|
|
44
|
+
destructive: {
|
|
45
|
+
DEFAULT: "var(--hz-ui-destructive)",
|
|
46
|
+
fg: "var(--hz-ui-destructive-fg)",
|
|
47
|
+
},
|
|
48
|
+
nav: {
|
|
49
|
+
DEFAULT: "var(--hz-ui-nav)",
|
|
50
|
+
hover: "var(--hz-ui-nav-hover)",
|
|
51
|
+
current: "var(--hz-ui-nav-current)",
|
|
52
|
+
},
|
|
53
|
+
})
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
xxs: ['0.65rem', { lineHeight: '0.8rem' }], // very fine print
|
|
3
|
+
xs: ['0.8rem', { lineHeight: '1rem' }], // fine print
|
|
4
|
+
sm: ['0.9rem', { lineHeight: '1.2rem' }], // 'standard' some news article cards (set manually when using typography-sm)
|
|
5
|
+
base: ['1rem', { lineHeight: 1.4 }],
|
|
6
|
+
lg: ['1.125rem', { lineHeight: '1.75rem' }],
|
|
7
|
+
xl: ['1.25rem', { lineHeight: '1.75rem' }],
|
|
8
|
+
'2xl': ['1.5rem', { lineHeight: '2rem' }],
|
|
9
|
+
'3xl': ['1.875rem', { lineHeight: '2.25rem' }],
|
|
10
|
+
'4xl': ['2.25rem', { lineHeight: '2.5rem' }],
|
|
11
|
+
'5xl': ['3rem', { lineHeight: '1' }],
|
|
12
|
+
'6xl': ['3.75rem', { lineHeight: '1' }],
|
|
13
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// https://tailwindcss.com/docs/content-configuration#dynamic-class-names
|
|
2
|
+
// https://tailwindcss.com/docs/content-configuration#safelisting-classes
|
|
3
|
+
export default [
|
|
4
|
+
|
|
5
|
+
'font-sans',
|
|
6
|
+
{
|
|
7
|
+
pattern: /grid-cols-[1-6]/,
|
|
8
|
+
variants: [ 'xs', 'sm', 'md', 'lg', 'xl', '2xl' ]
|
|
9
|
+
},
|
|
10
|
+
{ // SpaceBlock
|
|
11
|
+
pattern: /h-([0-9]|[1-3][0-9]|40)/,
|
|
12
|
+
variants: [ 'xs', 'sm', 'md', 'lg', 'xl', '2xl' ]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
pattern: /order-[0-6]/
|
|
16
|
+
},
|
|
17
|
+
{ // EnhHeadingBlock
|
|
18
|
+
pattern: /mb-([1-9]|1[0-2])/
|
|
19
|
+
},
|
|
20
|
+
'md:text-left', // EnhHeadingBlock
|
|
21
|
+
'md:text-center',
|
|
22
|
+
'md:text-right',
|
|
23
|
+
'md:self-start',
|
|
24
|
+
'md:self-center',
|
|
25
|
+
'md:self-end',
|
|
26
|
+
]
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
const percentages = {}
|
|
2
|
+
for (let i = 0; i <= 100; i++) {
|
|
3
|
+
percentages[`pr-${i}`] = `${i}%`
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
...percentages,
|
|
9
|
+
px: '1px',
|
|
10
|
+
0: '0px',
|
|
11
|
+
0.5: '0.125rem',
|
|
12
|
+
1: '0.25rem',
|
|
13
|
+
1.5: '0.375rem',
|
|
14
|
+
2: '0.5rem',
|
|
15
|
+
2.5: '0.625rem',
|
|
16
|
+
3: '0.75rem',
|
|
17
|
+
3.5: '0.875rem',
|
|
18
|
+
4: '1rem',
|
|
19
|
+
5: '1.25rem',
|
|
20
|
+
6: '1.5rem',
|
|
21
|
+
7: '1.75rem',
|
|
22
|
+
8: '2rem',
|
|
23
|
+
9: '2.25rem',
|
|
24
|
+
10: '2.5rem',
|
|
25
|
+
11: '2.75rem',
|
|
26
|
+
12: '3rem',
|
|
27
|
+
13: '3.25rem',
|
|
28
|
+
14: '3.5rem',
|
|
29
|
+
15: '3.75rem',
|
|
30
|
+
16: '4rem',
|
|
31
|
+
17: '4.25rem',
|
|
32
|
+
18: '4.5rem',
|
|
33
|
+
19: '4.75rem',
|
|
34
|
+
20: '5rem',
|
|
35
|
+
21: '5.25rem',
|
|
36
|
+
22: '5.5rem',
|
|
37
|
+
23: '5.75rem',
|
|
38
|
+
24: '6rem',
|
|
39
|
+
25: '5.25rem',
|
|
40
|
+
26: '5.5rem',
|
|
41
|
+
27: '5.75rem',
|
|
42
|
+
28: '7rem',
|
|
43
|
+
29: '7.25rem',
|
|
44
|
+
30: '7.5rem',
|
|
45
|
+
31: '7.75rem',
|
|
46
|
+
32: '8rem',
|
|
47
|
+
33: '8.25rem',
|
|
48
|
+
34: '8.5rem',
|
|
49
|
+
35: '8.75rem',
|
|
50
|
+
36: '9rem',
|
|
51
|
+
37: '9.25rem',
|
|
52
|
+
38: '9.5rem',
|
|
53
|
+
39: '9.75rem',
|
|
54
|
+
40: '10rem',
|
|
55
|
+
44: '11rem',
|
|
56
|
+
48: '12rem',
|
|
57
|
+
52: '13rem',
|
|
58
|
+
56: '14rem',
|
|
59
|
+
60: '15rem',
|
|
60
|
+
64: '16rem',
|
|
61
|
+
72: '18rem',
|
|
62
|
+
80: '20rem',
|
|
63
|
+
96: '24rem',
|
|
64
|
+
}
|
|
65
|
+
|