@plasmicpkgs/plasmic-chakra-ui 0.0.5 → 0.0.7
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/plasmic-chakra-ui.cjs.development.js +3 -89
- package/dist/plasmic-chakra-ui.cjs.development.js.map +1 -1
- package/dist/plasmic-chakra-ui.cjs.production.min.js +1 -1
- package/dist/plasmic-chakra-ui.cjs.production.min.js.map +1 -1
- package/dist/plasmic-chakra-ui.esm.js +3 -89
- package/dist/plasmic-chakra-ui.esm.js.map +1 -1
- package/package.json +5 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plasmic-chakra-ui.cjs.production.min.js","sources":["../src/utils.ts","../src/registerAccordion.ts","../src/registerAspectRatio.ts","../src/registerAvatar.ts","../src/registerBadge.ts","../src/registerBreadcrumb.ts","../src/registerButton.ts","../src/registerChakraProvider.tsx","../src/registerCheckBox.ts","../src/registerCode.ts","../src/registerDivider.ts","../src/registerFormControl.ts","../src/registerHeading.ts","../src/registerHighlight.ts","../src/registerImage.ts","../src/registerInput.ts","../src/registerKbd.ts","../src/registerModal.tsx","../src/registerNumberInput.ts","../src/registerPinInput.ts","../src/registerPopover.ts","../src/registerProgress.ts","../src/registerRadio.ts","../src/registerSelect.tsx","../src/registerStat.ts","../src/registerSwitch.ts","../src/registerTable.ts","../src/registerTabs.ts","../src/registerText.ts","../src/registerToast.ts","../src/registerTooltip.ts","../src/index.ts"],"sourcesContent":["export const CHAKRA_UI_IMPORT_PATH = \"@chakra-ui/react\";\n\nexport const getPlasmicComponentName = (componentName: string) =>\n `chakra-ui-${componentName}`;\n\nexport const getDisplayComponentName = (componentName: string) =>\n `Chakra-UI ${componentName}`;\n\nexport const getComponentNameAndImportMeta = (\n componentName: string,\n parentComponentName?: string,\n opts?: {\n displayName?: string;\n importPath?: string;\n }\n) => ({\n name: getPlasmicComponentName(componentName),\n displayName: opts?.displayName ?? getDisplayComponentName(componentName),\n importPath: opts?.importPath ?? CHAKRA_UI_IMPORT_PATH,\n importName: componentName,\n ...(parentComponentName\n ? { parentComponentName: getPlasmicComponentName(parentComponentName) }\n : {}),\n});\n","import {\n AccordionButtonProps,\n AccordionItemProps,\n AccordionPanelProps,\n AccordionProps,\n IconProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const accordionMeta: ComponentMeta<AccordionProps> = {\n ...getComponentNameAndImportMeta(\"Accordion\"),\n props: {\n allowMultiple: {\n type: \"boolean\",\n description:\n \"If true, multiple accordion items can be expanded at the same time.\",\n },\n allowToggle: {\n type: \"boolean\",\n description:\n \"If true, an expanded accordion item can be collapsed again.\",\n },\n defaultIndex: {\n type: \"number\",\n description:\n \"The index of the accordion item that should be expanded by default.\",\n },\n reduceMotion: {\n type: \"boolean\",\n description:\n \"If true, height animation and transitions will be disabled.\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"AccordionItem\")],\n defaultValue: [\n { type: \"component\", name: getPlasmicComponentName(\"AccordionItem\") },\n { type: \"component\", name: getPlasmicComponentName(\"AccordionItem\") },\n ],\n },\n },\n};\n\nexport const accordionItemMeta: ComponentMeta<AccordionItemProps> = {\n ...getComponentNameAndImportMeta(\"AccordionItem\", \"Accordion\"),\n props: {\n id: {\n type: \"string\",\n description: \"The unique id of the accordion item.\",\n },\n isDisabled: {\n type: \"boolean\",\n description: \"If true, the accordion item will be disabled.\",\n },\n isFocusable: {\n type: \"boolean\",\n description: \"If true, the accordion item will be focusable.\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"AccordionButton\"),\n getPlasmicComponentName(\"AccordionPanel\"),\n ],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"AccordionButton\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"AccordionPanel\"),\n },\n ],\n },\n },\n};\n\nexport const accordionButtonMeta: ComponentMeta<AccordionButtonProps> = {\n ...getComponentNameAndImportMeta(\"AccordionButton\", \"AccordionItem\"),\n props: {\n _expanded: {\n type: \"object\",\n displayName: \"expandedStyle\",\n defaultValueHint: {\n bg: \"orange\",\n color: \"white\",\n },\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Section 1 title\",\n styles: {\n textAlign: \"left\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"AccordionIcon\"),\n },\n ],\n },\n },\n};\n\nexport const accordionPanelMeta: ComponentMeta<AccordionPanelProps> = {\n ...getComponentNameAndImportMeta(\"AccordionPanel\", \"AccordionItem\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"Text\"),\n props: {\n children: {\n type: \"text\",\n value:\n \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\",\n },\n },\n },\n },\n },\n};\n\nexport const accordionIconMeta: ComponentMeta<IconProps> = {\n ...getComponentNameAndImportMeta(\"AccordionIcon\", \"AccordionButton\"),\n props: {},\n};\n","import { AspectRatioProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const aspectRatioMeta: ComponentMeta<AspectRatioProps> = {\n ...getComponentNameAndImportMeta(\"AspectRatio\"),\n defaultStyles: {\n width: \"320px\",\n },\n props: {\n ratio: {\n type: \"number\",\n defaultValue: 1.333,\n },\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"Image\"),\n },\n },\n },\n};\n","import {\n AvatarBadgeProps,\n AvatarGroupProps,\n AvatarProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const avatarBadgeMeta: ComponentMeta<AvatarBadgeProps> = {\n ...getComponentNameAndImportMeta(\"AvatarBadge\", \"Avatar\"),\n props: {\n boxSize: {\n type: \"string\",\n defaultValue: \"1.25em\",\n },\n bg: {\n type: \"string\",\n defaultValue: \"green.500\",\n },\n borderColor: \"string\",\n },\n};\n\nexport const avatarMeta: ComponentMeta<AvatarProps> = {\n ...getComponentNameAndImportMeta(\"Avatar\", \"AvatarGroup\"),\n props: {\n name: {\n type: \"string\",\n defaultValue: \"Kola Tioluwani\",\n },\n src: {\n type: \"string\",\n defaultValue: \"https://bit.ly/dan-abramov\",\n },\n size: {\n type: \"choice\",\n options: [\"2xs\", \"xs\", \"sm\", \"md\", \"lg\", \"xl\", \"2xl\", \"full\"],\n },\n loading: {\n type: \"choice\",\n options: [\"eager\", \"lazy\"],\n },\n showBorder: \"boolean\",\n children: {\n type: \"slot\",\n hidePlaceholder: true,\n allowedComponents: [getPlasmicComponentName(\"AvatarBadge\")],\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"AvatarBadge\"),\n },\n },\n },\n};\n\nexport const avatarGroupMeta: ComponentMeta<AvatarGroupProps> = {\n ...getComponentNameAndImportMeta(\"AvatarGroup\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"2xs\", \"xs\", \"sm\", \"md\", \"lg\", \"xl\", \"2xl\", \"full\"],\n },\n max: {\n type: \"number\",\n description: \"The maximum number of avatars to show before truncating.\",\n },\n spacing: {\n type: \"string\",\n defaultValue: \"-0.75rem\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"Avatar\")],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Dan Abrahmov\",\n src: \"https://bit.ly/dan-abramov\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Kola Tioluwani\",\n src: \"https://bit.ly/tioluwani-kolawole\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Kent Dodds\",\n src: \"https://bit.ly/kent-c-dodds\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Ryan Florence\",\n src: \"https://bit.ly/ryan-florence\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Prosper Otemuyiwa\",\n src: \"https://bit.ly/prosper-baba\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Christian Nwamba\",\n src: \"https://bit.ly/code-beast\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Segun Adebayo\",\n src: \"https://bit.ly/sage-adebayo\",\n },\n },\n ],\n },\n },\n};\n","import { BadgeProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const badgeMeta: ComponentMeta<BadgeProps> = {\n ...getComponentNameAndImportMeta(\"Badge\"),\n importPath: \"@chakra-ui/react\",\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"gray\",\n },\n variant: {\n type: \"choice\",\n options: [\"solid\", \"subtle\", \"outline\"],\n defaultValue: \"subtle\",\n },\n },\n};\n","import {\n BreadcrumbItemProps,\n BreadcrumbLinkProps,\n BreadcrumbProps,\n BreadcrumbSeparatorProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const breadcrumbItemMeta: ComponentMeta<BreadcrumbItemProps> = {\n ...getComponentNameAndImportMeta(\"BreadcrumbItem\", \"Breadcrumb\"),\n props: {\n isCurrentPage: {\n type: \"boolean\",\n },\n isLastChild: {\n type: \"boolean\",\n },\n seperator: {\n type: \"string\",\n defaultValue: \"/\",\n },\n spacing: {\n type: \"string\",\n defaultValue: \"8px\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbLink\"),\n props: {\n children: {\n type: \"text\",\n value: \"BreadcrumbItem\",\n },\n },\n },\n ],\n },\n },\n};\n\nexport const breadcrumbLinkMeta: ComponentMeta<BreadcrumbLinkProps> = {\n ...getComponentNameAndImportMeta(\"BreadcrumbLink\", \"BreadcrumbItem\"),\n props: {\n href: {\n type: \"string\",\n defaultValue: \"#\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Home\",\n },\n ],\n },\n },\n};\n\nexport const breadcrumbMeta: ComponentMeta<BreadcrumbProps> = {\n ...getComponentNameAndImportMeta(\"Breadcrumb\"),\n props: {\n separator: {\n type: \"string\",\n defaultValue: \"/\",\n },\n spacing: {\n type: \"string\",\n defaultValue: \"8px\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbItem\"),\n props: {\n children: {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbLink\"),\n props: {\n children: {\n type: \"text\",\n value: \"Home\",\n },\n },\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbItem\"),\n props: {\n children: {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbLink\"),\n props: {\n children: {\n type: \"text\",\n value: \"Docs\",\n },\n },\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbItem\"),\n props: {\n isLastChild: true,\n isCurrentPage: true,\n children: {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbLink\"),\n props: {\n children: {\n type: \"text\",\n value: \"Breadcrumb\",\n },\n },\n },\n },\n },\n ],\n },\n },\n};\n\nexport const breadcrumbSeparatorMeta: ComponentMeta<BreadcrumbSeparatorProps> = {\n ...getComponentNameAndImportMeta(\"BreadcrumbSeparator\", \"Breadcrumb\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"/\",\n },\n },\n },\n};\n","import { ButtonGroupProps, ButtonProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const buttonGroupMeta: ComponentMeta<ButtonGroupProps> = {\n ...getComponentNameAndImportMeta(\"ButtonGroup\"),\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n },\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n defaultValue: \"md\",\n },\n isAttached: {\n type: \"boolean\",\n defaultValue: false,\n },\n isDisabled: {\n type: \"boolean\",\n defaultValue: false,\n },\n spacing: {\n type: \"string\",\n defaultValue: \"0.5rem\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Button\"),\n props: {\n children: {\n type: \"text\",\n value: \"Button 1\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Button\"),\n props: {\n children: {\n type: \"text\",\n value: \"Button 2\",\n },\n },\n },\n ],\n },\n },\n};\n\nexport const buttonMeta: ComponentMeta<ButtonProps> = {\n ...getComponentNameAndImportMeta(\"Button\", \"ButtonGroup\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n variant: {\n type: \"choice\",\n options: [\"ghost\", \"outline\", \"solid\", \"link\", \"unstyled\"],\n defaultValue: \"solid\",\n },\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n },\n iconSpacing: \"number\",\n isActive: {\n type: \"boolean\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isLoading: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Button\",\n },\n },\n },\n};\n","import { ChakraProvider, ChakraProviderProps } from \"@chakra-ui/react\";\nimport { GlobalContextMeta } from \"@plasmicapp/host\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport { Registerable } from \"./registerable\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const chakraProviderMeta: GlobalContextMeta<ChakraProviderProps> = {\n ...getComponentNameAndImportMeta(\"ChakraProvider\"),\n props: {\n theme: \"object\",\n },\n};\n\nexport function registerChakraProvider(\n loader?: Registerable,\n customChakraProviderMeta?: GlobalContextMeta<ChakraProviderProps>\n) {\n const doRegisterComponent: typeof registerGlobalContext = (...args) =>\n loader\n ? loader.registerGlobalContext(...args)\n : registerGlobalContext(...args);\n doRegisterComponent(\n ChakraProvider,\n customChakraProviderMeta ?? chakraProviderMeta\n );\n}\n","import { CheckboxGroupProps, CheckboxProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const checkboxMeta: ComponentMeta<CheckboxProps> = {\n ...getComponentNameAndImportMeta(\"Checkbox\", \"CheckboxGroup\"),\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"blue\",\n },\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n value: {\n type: \"string\",\n },\n spacing: {\n type: \"string\",\n defaultValue: \"0.5rem\",\n },\n isChecked: {\n type: \"boolean\",\n },\n isIndeterminate: {\n type: \"boolean\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isRequired: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Checkbox\",\n },\n },\n },\n};\n\nexport const checkboxGroupMeta: ComponentMeta<CheckboxGroupProps> = {\n ...getComponentNameAndImportMeta(\"CheckboxGroup\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n defaultValue: \"md\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"Checkbox\")],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Checkbox\"),\n props: {\n value: \"1\",\n children: {\n type: \"text\",\n value: \"Checkbox 1\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Checkbox\"),\n props: {\n value: \"2\",\n children: {\n type: \"text\",\n value: \"Checkbox 2\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Checkbox\"),\n props: {\n value: \"3\",\n children: {\n type: \"text\",\n value: \"Checkbox 3\",\n },\n },\n },\n ],\n },\n },\n};\n","import { CodeProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const codeMeta: ComponentMeta<CodeProps> = {\n ...getComponentNameAndImportMeta(\"Code\"),\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"gray\",\n },\n variant: {\n type: \"choice\",\n options: [\"solid\", \"subtle\", \"outline\"],\n defaultValue: \"subtle\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Code\",\n },\n ],\n },\n },\n};\n","import { DividerProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const dividerMeta: ComponentMeta<DividerProps> = {\n ...getComponentNameAndImportMeta(\"Divider\"),\n props: {\n orientation: {\n type: \"choice\",\n options: [\"vertical\", \"horizontal\"],\n },\n variant: {\n type: \"choice\",\n options: [\"solid\", \"dashed\"],\n },\n },\n};\n","import {\n FormControlProps,\n FormErrorMessageProps,\n FormLabelProps,\n HelpTextProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const formControlMeta: ComponentMeta<FormControlProps> = {\n ...getComponentNameAndImportMeta(\"FormControl\"),\n props: {\n label: \"string\",\n isDisabled: \"boolean\",\n isInvalid: \"boolean\",\n isRequired: \"boolean\",\n isreadOnly: \"boolean\",\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"FormLabel\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Input\"),\n },\n ],\n },\n },\n};\n\nexport const formLabelMeta: ComponentMeta<FormLabelProps> = {\n ...getComponentNameAndImportMeta(\"FormLabel\", \"FormControl\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Label\",\n styles: {\n display: \"inline-block\",\n width: \"auto\",\n },\n },\n },\n },\n};\n\nexport const formHelperTextMeta: ComponentMeta<HelpTextProps> = {\n ...getComponentNameAndImportMeta(\"FormHelperText\", \"FormControl\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"We'll never share your email.\",\n },\n },\n },\n};\n\nexport const formErrorMessageMeta: ComponentMeta<FormErrorMessageProps> = {\n ...getComponentNameAndImportMeta(\"FormErrorMessage\", \"FormControl\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"This is an error message.\",\n },\n },\n },\n};\n","import { HeadingProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const headingMeta: ComponentMeta<HeadingProps> = {\n ...getComponentNameAndImportMeta(\"Heading\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value:\n \"Basic text writing, including headings, body text, lists, and more.\",\n },\n },\n size: {\n type: \"choice\",\n options: [\"4xl\", \"3xl\", \"2xl\", \"xl\", \"lg\", \"md\", \"sm\", \"xs\"],\n defaultValue: \"xl\",\n },\n noOfLines: {\n type: \"number\",\n defaultValue: 1,\n },\n },\n};\n","import { HighlightProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const highlightMeta: ComponentMeta<HighlightProps> = {\n ...getComponentNameAndImportMeta(\"Highlight\"),\n props: {\n children: {\n displayName: \"text\",\n type: \"string\",\n defaultValue: \"With the Highlight component, you can spotlight words.\",\n },\n query: {\n type: \"array\",\n defaultValue: [\"Spotlight\", \"words\"],\n },\n styles: {\n type: \"object\",\n defaultValue: {\n backgroundColor: \"orange.100\",\n px: \"0.3em\",\n py: \"0.1em\",\n borderRadius: \"0.3em\",\n },\n },\n },\n};\n","import { ImageProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const imageMeta: ComponentMeta<ImageProps> = {\n ...getComponentNameAndImportMeta(\"Image\"),\n props: {\n src: {\n type: \"string\",\n defaultValue: \"https://bit.ly/naruto-sage\",\n },\n fallbackSrc: {\n type: \"string\",\n defaultValue: \"https://via.placeholder.com/150\",\n },\n alt: {\n type: \"string\",\n defaultValueHint: \"name of the image\",\n },\n loading: {\n type: \"choice\",\n options: [\"lazy\", \"eager\"],\n },\n },\n};\n","import { InputProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const inputMeta: ComponentMeta<InputProps> = {\n ...getComponentNameAndImportMeta(\"Input\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n variant: {\n type: \"choice\",\n options: [\"outline\", \"filled\", \"flushed\", \"unstyled\"],\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n isReadOnly: {\n type: \"boolean\",\n },\n isRequired: {\n type: \"boolean\",\n },\n errorBorderColor: {\n type: \"string\",\n defaultValue: \"red.500\",\n },\n focusBorderColor: {\n type: \"string\",\n defaultValue: \"blue.500\",\n },\n },\n};\n","import { Kbd, KbdProps } from \"@chakra-ui/react\";\nimport registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport { Registerable } from \"./registerable\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const kbdMeta: ComponentMeta<KbdProps> = {\n ...getComponentNameAndImportMeta(\"Kbd\", undefined, {\n displayName: \"Chakra-UI Keyboard Key\",\n }),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"⌘\",\n },\n ],\n },\n },\n};\n\nexport function registerKbd(\n loader?: Registerable,\n customKbdMeta?: ComponentMeta<KbdProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Kbd, customKbdMeta ?? kbdMeta);\n}\n","import {\n CloseButtonProps,\n Modal as ChakraUIModal,\n ModalBodyProps,\n ModalContentProps,\n ModalFooterProps,\n ModalHeaderProps,\n ModalOverlayProps,\n ModalProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport React from \"react\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const modalMeta: ComponentMeta<ModalProps> = {\n ...getComponentNameAndImportMeta(\"Modal\"),\n props: {\n isOpen: {\n type: \"boolean\",\n defaultValue: true,\n },\n isCentered: {\n type: \"boolean\",\n defaultValue: false,\n },\n scrollBehavior: {\n type: \"choice\",\n options: [\"inside\", \"outside\"],\n defaultValue: \"outside\",\n description: `\n Where scroll behavior should originate.\n - If set to 'inside', scroll only occurs within the ModalBody.\n - If set to 'outside', the entire ModalContent will scroll within the viewport.\n `,\n },\n motionPreset: {\n type: \"choice\",\n options: [\"slideInBottom\", \"slideInRight\", \"scale\", \"none\"],\n defaultValue: \"scale\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"ModalOverlay\"),\n getPlasmicComponentName(\"ModalContent\"),\n ],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"ModalOverlay\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"ModalContent\"),\n },\n ],\n },\n },\n};\n\nexport function Modal(props: ModalProps) {\n return (\n <ChakraUIModal {...props} onClose={props.onClose ?? (() => {})}>\n {props.children}\n </ChakraUIModal>\n );\n}\nexport const modalOverlayMeta: ComponentMeta<ModalOverlayProps> = {\n ...getComponentNameAndImportMeta(\"ModalOverlay\", \"Modal\"),\n props: {\n children: \"slot\",\n },\n};\n\nexport const modalContentMeta: ComponentMeta<ModalContentProps> = {\n ...getComponentNameAndImportMeta(\"ModalContent\", \"Modal\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"ModalHeader\"),\n getPlasmicComponentName(\"ModalCloseButton\"),\n getPlasmicComponentName(\"ModalBody\"),\n getPlasmicComponentName(\"ModalFooter\"),\n ],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"ModalHeader\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"ModalBody\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"ModalFooter\"),\n },\n ],\n },\n },\n};\n\nexport const modalHeaderMeta: ComponentMeta<ModalHeaderProps> = {\n ...getComponentNameAndImportMeta(\"ModalHeader\", \"ModalContent\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Modal Title\",\n },\n },\n },\n};\n\nconst LOREM_IPSUM_TEXT = `\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem\n Ipsum has been the industry's standard dummy text ever since the 1500s, when an\n unknown printer took a galley of type and scrambled it to make a type specimen book.\n It has survived not only five centuries, but also the leap into electronic typesetting,\n remaining essentially unchanged. It was popularised in the 1960s with the release of\n Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing\n software like Aldus PageMaker including versions of Lorem Ipsum.\n`;\n\nexport const modalBodyMeta: ComponentMeta<ModalBodyProps> = {\n ...getComponentNameAndImportMeta(\"ModalBody\", \"ModalContent\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: LOREM_IPSUM_TEXT,\n },\n },\n },\n};\n\nexport const modalFooterMeta: ComponentMeta<ModalFooterProps> = {\n ...getComponentNameAndImportMeta(\"ModalFooter\", \"ModalContent\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Modal Footer\",\n },\n },\n },\n};\n\nexport const modalCloseButtonMeta: ComponentMeta<CloseButtonProps> = {\n ...getComponentNameAndImportMeta(\"ModalCloseButton\", \"ModalContent\"),\n props: {\n isDisabled: \"boolean\",\n },\n};\n","import {\n NumberDecrementStepperProps,\n NumberIncrementStepperProps,\n NumberInputFieldProps,\n NumberInputProps,\n NumberInputStepperProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const numberInputMeta: ComponentMeta<NumberInputProps> = {\n ...getComponentNameAndImportMeta(\"NumberInput\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n variant: {\n type: \"choice\",\n options: [\"outline\", \"filled\", \"flushed\", \"unstyled\"],\n },\n inputMode: {\n type: \"choice\",\n options: [\n \"text\",\n \"search\",\n \"none\",\n \"tel\",\n \"url\",\n \"email\",\n \"numeric\",\n \"decimal\",\n ],\n },\n format: {\n type: \"string\",\n },\n step: {\n type: \"number\",\n },\n precision: {\n type: \"number\",\n },\n max: {\n type: \"number\",\n },\n min: {\n type: \"number\",\n },\n errorBorderColor: {\n type: \"string\",\n defaultValue: \"red.500\",\n },\n focusBorderColor: {\n type: \"string\",\n defaultValue: \"blue.500\",\n },\n allowMouseWheel: {\n type: \"boolean\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n isReadOnly: {\n type: \"boolean\",\n },\n isRequired: {\n type: \"boolean\",\n },\n\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"NumberInputField\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"NumberInputStepper\"),\n },\n ],\n },\n },\n};\n\nexport const numberInputStepperMeta: ComponentMeta<NumberInputStepperProps> = {\n ...getComponentNameAndImportMeta(\"NumberInputStepper\", \"NumberInput\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"NumberIncrementStepper\"),\n getPlasmicComponentName(\"NumberDecrementStepper\"),\n ],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"NumberIncrementStepper\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"NumberDecrementStepper\"),\n },\n ],\n },\n },\n};\n\nexport const numberDecrementStepperMeta: ComponentMeta<NumberDecrementStepperProps> = {\n ...getComponentNameAndImportMeta(\n \"NumberDecrementStepper\",\n \"NumberInputStepper\"\n ),\n props: {},\n};\n\nexport const numberIncrementStepperMeta: ComponentMeta<NumberIncrementStepperProps> = {\n ...getComponentNameAndImportMeta(\n \"NumberIncrementStepper\",\n \"NumberInputStepper\"\n ),\n props: {},\n};\n\nexport const numberInputFieldMeta: ComponentMeta<NumberInputFieldProps> = {\n ...getComponentNameAndImportMeta(\"NumberInputField\", \"NumberInput\"),\n props: {},\n};\n","import { PinInputFieldProps, PinInputProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const pinInputMeta: ComponentMeta<PinInputProps> = {\n ...getComponentNameAndImportMeta(\"PinInput\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n type: {\n type: \"choice\",\n options: [\"number\", \"alphanumeric\"],\n },\n variant: {\n type: \"choice\",\n options: [\"outline\", \"filled\", \"flushed\", \"unstyled\"],\n },\n mask: {\n type: \"boolean\",\n description:\n \"Whether the pin input's value should be masked like 'type=password'.\",\n },\n manageFocus: {\n type: \"boolean\",\n defaultValue: true,\n description:\n \"Whether the pin input should move automatically to the next input once filled.\",\n },\n autoFocus: {\n type: \"boolean\",\n description: \"Whether the pin input should be focused on mount.\",\n },\n opt: {\n type: \"boolean\",\n description: \"autocomplete='one-time-code'\",\n },\n errorBorderColor: {\n type: \"string\",\n defaultValue: \"red.500\",\n },\n focusBorderColor: {\n type: \"string\",\n defaultValue: \"blue.500\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"PinInputField\")],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PinInputField\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PinInputField\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PinInputField\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PinInputField\"),\n },\n ],\n },\n },\n};\n\nexport const pinInputFieldMeta: ComponentMeta<PinInputFieldProps> = {\n ...getComponentNameAndImportMeta(\"PinInputField\", \"PinInput\"),\n props: {},\n};\n","import {\n PopoverArrowProps,\n PopoverBodyProps,\n PopoverCloseButtonProps,\n PopoverContentProps,\n PopoverHeaderProps,\n PopoverProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const popoverMeta: ComponentMeta<PopoverProps> = {\n ...getComponentNameAndImportMeta(\"Popover\"),\n props: {\n gutter: {\n type: \"number\",\n defaultValue: 8,\n },\n arrowPadding: \"number\",\n arrowShadowColor: {\n type: \"string\",\n defaultValue: \"rgba(0, 0, 0, 0.15)\",\n },\n arrowSize: {\n type: \"number\",\n },\n offset: {\n type: \"array\",\n defaultValue: [0, 0],\n },\n closeDelay: \"number\",\n orientation: {\n type: \"choice\",\n options: [\"horizontal\", \"vertical\"],\n },\n placement: {\n type: \"choice\",\n options: [\"top\", \"bottom\", \"left\", \"right\"],\n defaultValue: \"bottom\",\n },\n direction: {\n type: \"choice\",\n options: [\"ltr\", \"rtl\"],\n defaultValue: \"ltr\",\n },\n trigger: {\n type: \"choice\",\n options: [\"click\", \"hover\"],\n defaultValue: \"click\",\n },\n isLazy: {\n type: \"boolean\",\n },\n isOpen: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverTrigger\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverContent\"),\n },\n ],\n },\n },\n};\n\nexport const popoverContentMeta: ComponentMeta<PopoverContentProps> = {\n ...getComponentNameAndImportMeta(\"PopoverContent\", \"Popover\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverArrow\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverCloseButton\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverHeader\"),\n props: {\n children: {\n type: \"text\",\n value: \"Confirmation!\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverBody\"),\n props: {\n children: {\n type: \"text\",\n value: \"Are you sure you want to have that milkshake?\",\n },\n },\n },\n ],\n },\n },\n};\n\nexport const popoverArrowMeta: ComponentMeta<PopoverArrowProps> = {\n ...getComponentNameAndImportMeta(\"PopoverArrow\", \"PopoverContent\"),\n props: {},\n};\n\nexport const popoverCloseButtonMeta: ComponentMeta<PopoverCloseButtonProps> = {\n ...getComponentNameAndImportMeta(\"PopoverCloseButton\", \"PopoverContent\"),\n props: {},\n};\n\nexport const popoverHeaderMeta: ComponentMeta<PopoverHeaderProps> = {\n ...getComponentNameAndImportMeta(\"PopoverHeader\", \"PopoverContent\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Confirmation!\",\n },\n },\n },\n};\n\nexport const popoverBodyMeta: ComponentMeta<PopoverBodyProps> = {\n ...getComponentNameAndImportMeta(\"PopoverBody\", \"PopoverContent\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Are you sure you want to have that milkshake?\",\n },\n },\n },\n};\n\nexport const popoverTriggerMeta: ComponentMeta<PopoverTriggerProps> = {\n ...getComponentNameAndImportMeta(\"PopoverTrigger\", \"Popover\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"Button\"),\n props: {\n children: {\n type: \"text\",\n value: \"Trigger\",\n },\n },\n },\n },\n },\n};\n\nexport interface PopoverTriggerProps {\n children: React.ReactNode;\n}\n","import { ProgressProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const progressMeta: ComponentMeta<ProgressProps> = {\n ...getComponentNameAndImportMeta(\"Progress\"),\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"blue\",\n },\n size: {\n type: \"choice\",\n options: [\"xs\", \"sm\", \"md\", \"lg\"],\n defaultValue: \"md\",\n },\n max: {\n type: \"number\",\n defaultValue: 100,\n },\n min: {\n type: \"number\",\n defaultValue: 0,\n },\n value: \"number\",\n\n isIndeterminate: {\n type: \"boolean\",\n },\n hasStripe: {\n type: \"boolean\",\n },\n isAnimated: {\n type: \"boolean\",\n hidden: (props) => !props.hasStripe,\n },\n },\n};\n","import { RadioGroupProps, RadioProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const radioGroupMeta: ComponentMeta<RadioGroupProps> = {\n ...getComponentNameAndImportMeta(\"RadioGroup\"),\n props: {\n value: {\n type: \"string\",\n },\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n isReadOnly: {\n type: \"boolean\",\n },\n isRequired: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"hbox\",\n\n styles: {\n gap: \"12px\",\n },\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Radio\"),\n props: { value: \"1\", children: { type: \"text\", value: \"Radio 1\" } },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Radio\"),\n props: { value: \"2\", children: { type: \"text\", value: \"Radio 2\" } },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Radio\"),\n props: { value: \"3\", children: { type: \"text\", value: \"Radio 3\" } },\n },\n ],\n },\n },\n },\n};\n\nexport const radioMeta: ComponentMeta<RadioProps> = {\n ...getComponentNameAndImportMeta(\"Radio\", \"RadioGroup\"),\n props: {\n value: {\n type: \"string\",\n },\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n spacing: {\n type: \"string\",\n defaultValue: \"0.5rem\",\n },\n isChecked: {\n type: \"boolean\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n isReadOnly: {\n type: \"boolean\",\n },\n isRequired: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Radio\",\n },\n ],\n },\n },\n};\n","import { SelectProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport React from \"react\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const selectMeta: ComponentMeta<SelectProps> = {\n ...getComponentNameAndImportMeta(\"Select\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"lg\", \"md\", \"sm\", \"xs\"],\n defaultValue: \"md\",\n },\n variant: {\n type: \"choice\",\n options: [\"outline\", \"filled\", \"flushed\", \"unstyled\"],\n defaultValue: \"outline\",\n },\n placeholder: {\n type: \"string\",\n },\n errorBorderColor: {\n type: \"string\",\n defaultValueHint: \"red.500\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n isReadOnly: {\n type: \"boolean\",\n },\n isRequred: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Option\"),\n props: {\n children: {\n type: \"text\",\n value: \"Option 01\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Option\"),\n props: {\n children: {\n type: \"text\",\n value: \"Option 02\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Option\"),\n props: {\n children: {\n type: \"text\",\n value: \"Option 03\",\n },\n },\n },\n ],\n },\n },\n};\n\nexport interface OptionProps {\n value: string;\n className?: string;\n children: any;\n}\n\nexport function Option(props: OptionProps) {\n const { value, className, children } = props;\n return (\n <option className={className} value={value}>\n {children}\n </option>\n );\n}\n\nexport const optionMeta: ComponentMeta<OptionProps> = {\n ...getComponentNameAndImportMeta(\"Option\", \"Select\", {\n importPath: \"@plasmicpkgs/plasmic-chakra-ui\",\n }),\n props: {\n value: \"string\",\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Option\",\n },\n },\n },\n};\n","import {\n StatArrowProps,\n StatHelpTextProps,\n StatLabelProps,\n StatNumberProps,\n StatProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const statMeta: ComponentMeta<StatProps> = {\n ...getComponentNameAndImportMeta(\"Stat\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"StatLabel\"),\n props: { children: { type: \"text\", value: \"Collected Fees\" } },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"StatNumber\"),\n props: { children: { type: \"text\", value: \"£345,670\" } },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"StatHelpText\"),\n props: {\n children: {\n type: \"hbox\",\n styles: {\n alignItems: \"center\",\n padding: \"0px\",\n },\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"StatArrow\"),\n props: { type: \"increase\" },\n },\n { type: \"text\", value: \"Last 7 days\" },\n ],\n },\n },\n },\n ],\n },\n },\n};\n\nexport const statHelpTextMeta: ComponentMeta<StatHelpTextProps> = {\n ...getComponentNameAndImportMeta(\"StatHelpText\", \"Stat\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"StatHelpText\",\n },\n ],\n },\n },\n};\n\nexport const statArrowMeta: ComponentMeta<StatArrowProps> = {\n ...getComponentNameAndImportMeta(\"StatArrow\", \"Stat\"),\n props: {\n type: {\n type: \"choice\",\n options: [\"increase\", \"decrease\"],\n },\n },\n};\n\nexport const statNumberMeta: ComponentMeta<StatNumberProps> = {\n ...getComponentNameAndImportMeta(\"StatNumber\", \"Stat\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"£345,670\",\n },\n ],\n },\n },\n};\n\nexport const statLabelMeta: ComponentMeta<StatLabelProps> = {\n ...getComponentNameAndImportMeta(\"StatLabel\", \"Stat\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"StatLabel\",\n },\n ],\n },\n },\n};\n","import { SwitchProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const switchMeta: ComponentMeta<SwitchProps> = {\n ...getComponentNameAndImportMeta(\"Switch\"),\n props: {\n isChecked: \"boolean\",\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"blue\",\n },\n size: {\n type: \"choice\",\n options: [\"sm\", \"md\", \"lg\"],\n defaultValue: \"md\",\n },\n spacing: {\n type: \"string\",\n defaultValue: \"0.5rem\",\n },\n id: \"string\",\n isDisabled: \"boolean\",\n isInvalid: \"boolean\",\n isReadOnly: \"boolean\",\n isRequired: \"boolean\",\n },\n};\n","import {\n TableBodyProps,\n TableCaptionProps,\n TableCellProps,\n TableColumnHeaderProps,\n TableContainerProps,\n TableFooterProps,\n TableHeadProps,\n TableProps,\n TableRowProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const tableMeta: ComponentMeta<TableProps> = {\n ...getComponentNameAndImportMeta(\"Table\", \"TableContainer\"),\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"gray\",\n },\n size: {\n type: \"choice\",\n options: [\"sm\", \"md\", \"lg\"],\n defaultValue: \"md\",\n },\n variant: {\n type: \"choice\",\n options: [\"simple\", \"striped\", \"unstyled\"],\n defaultValue: \"simple\",\n },\n children: {\n type: \"slot\",\n },\n },\n};\n\nexport const tableCaptionMeta: ComponentMeta<TableCaptionProps> = {\n ...getComponentNameAndImportMeta(\"TableCaption\", \"Table\"),\n props: {\n placement: {\n type: \"choice\",\n options: [\"top\", \"bottom\"],\n defaultValue: \"bottom\",\n },\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Imperial to metric conversion factors\",\n },\n },\n },\n};\n\nexport const theadMeta: ComponentMeta<TableHeadProps> = {\n ...getComponentNameAndImportMeta(\"Thead\", \"Table\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"Th\"),\n getPlasmicComponentName(\"Tr\"),\n ],\n },\n },\n};\n\nexport const tbodyMeta: ComponentMeta<TableBodyProps> = {\n ...getComponentNameAndImportMeta(\"Tbody\", \"Table\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"Td\"),\n getPlasmicComponentName(\"Tr\"),\n ],\n },\n },\n};\n\nexport const trMeta: ComponentMeta<TableRowProps> = {\n ...getComponentNameAndImportMeta(\"Tr\", \"Table\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"Td\"),\n getPlasmicComponentName(\"Th\"),\n ],\n },\n },\n};\n\nexport const tdMeta: ComponentMeta<TableCellProps> = {\n ...getComponentNameAndImportMeta(\"Td\", \"Tr\"),\n props: {\n isNumeric: \"boolean\",\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Table Cell\",\n },\n },\n },\n};\n\nexport const thMeta: ComponentMeta<TableColumnHeaderProps> = {\n ...getComponentNameAndImportMeta(\"Th\", \"Tr\"),\n props: {\n isNumeric: \"boolean\",\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Table Cell\",\n },\n },\n },\n};\n\nexport const tableContainerMeta: ComponentMeta<TableContainerProps> = {\n ...getComponentNameAndImportMeta(\"TableContainer\"),\n props: {\n overflowX: {\n type: \"choice\",\n options: [\"auto\", \"scroll\", \"hidden\", \"visible\"],\n },\n overflowY: {\n type: \"choice\",\n options: [\"auto\", \"scroll\", \"hidden\", \"visible\"],\n },\n whiteSpace: {\n type: \"choice\",\n options: [\"normal\", \"nowrap\", \"pre\", \"pre-line\", \"pre-wrap\"],\n },\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"Table\")],\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"Table\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Thead\"),\n props: {\n children: {\n type: \"component\",\n name: getPlasmicComponentName(\"Tr\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Th\"),\n props: {\n children: {\n type: \"text\",\n value: \"TO CONVERT\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Th\"),\n props: {\n children: {\n type: \"text\",\n value: \"INTO\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Th\"),\n props: {\n children: {\n type: \"text\",\n value: \"MULTIPLY BY\",\n },\n },\n },\n ],\n },\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tbody\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tr\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Td\"),\n props: {\n children: {\n type: \"text\",\n value: \"inches\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Td\"),\n props: {\n children: {\n type: \"text\",\n value: \"millimetres (mm)\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Td\"),\n props: {\n children: {\n type: \"text\",\n value: \"25.4\",\n },\n },\n },\n ],\n },\n },\n ],\n },\n },\n ],\n },\n },\n },\n },\n};\n\nexport const tfootMeta: ComponentMeta<TableFooterProps> = {\n ...getComponentNameAndImportMeta(\"Tfoot\", \"Table\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tr\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Th\"),\n props: {\n children: {\n type: \"text\",\n value: \"Name\",\n },\n },\n },\n ],\n },\n },\n ],\n },\n },\n};\n","import {\n TabListProps,\n TabPanelProps,\n TabPanelsProps,\n TabProps,\n TabsProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const tabListMeta: ComponentMeta<TabListProps> = {\n ...getComponentNameAndImportMeta(\"TabList\", \"Tabs\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"Tab\")],\n },\n },\n};\n\nexport const tabsMeta: ComponentMeta<TabsProps> = {\n ...getComponentNameAndImportMeta(\"Tabs\"),\n props: {\n align: {\n type: \"choice\",\n options: [\"start\", \"center\", \"end\"],\n },\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n },\n orientation: {\n type: \"choice\",\n options: [\"horizontal\", \"vertical\"],\n },\n size: {\n type: \"choice\",\n options: [\"sm\", \"md\", \"lg\"],\n },\n variant: {\n type: \"choice\",\n options: [\n \"line\",\n \"enclosed\",\n \"enclosed-colored\",\n \"soft-rounded\",\n \"solid-rounded\",\n \"unstyled\",\n ],\n defaultValue: \"line\",\n },\n direction: {\n type: \"choice\",\n options: [\"ltr\", \"rtl\"],\n },\n index: {\n type: \"number\",\n },\n isFitted: \"boolean\",\n isLazy: \"boolean\",\n isManual: \"boolean\",\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"TabList\"),\n getPlasmicComponentName(\"TabPanels\"),\n ],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"TabList\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tab\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 1\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tab\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 2\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tab\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 3\",\n },\n },\n },\n ],\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"TabPanels\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"TabPanel\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 1's Panel Content\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"TabPanel\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 2's Panel Content\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"TabPanel\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 3's Panel Content\",\n },\n },\n },\n ],\n },\n },\n ],\n },\n },\n};\n\nexport const tabMeta: ComponentMeta<TabProps> = {\n ...getComponentNameAndImportMeta(\"Tab\", \"TabList\"),\n props: {\n id: \"string\",\n isDisabled: \"boolean\",\n panelId: \"string\",\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Tab\",\n },\n },\n },\n};\n\nexport const tabPanelsMeta: ComponentMeta<TabPanelsProps> = {\n ...getComponentNameAndImportMeta(\"TabPanels\", \"Tabs\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"TabPanel\")],\n },\n },\n};\n\nexport const tabPanelMeta: ComponentMeta<TabPanelProps> = {\n ...getComponentNameAndImportMeta(\"TabPanel\", \"TabPanels\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Tab Panel Content\",\n },\n },\n },\n};\n","import { TextProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const textMeta: ComponentMeta<TextProps> = {\n ...getComponentNameAndImportMeta(\"Text\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Some Text\",\n },\n ],\n },\n },\n};\n","import { ToastProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const toastMeta: ComponentMeta<ToastProps> = {\n ...getComponentNameAndImportMeta(\"Toast\"),\n props: {\n title: {\n type: \"string\",\n defaultValue: \"Toast Title\",\n },\n description: {\n type: \"string\",\n defaultValue: \"Toast description\",\n },\n variant: {\n type: \"choice\",\n options: [\"solid\", \"subtle\", \"left-accent\", \"top-accent\"],\n },\n duration: {\n type: \"number\",\n defaultValue: 5000,\n },\n isClosable: {\n type: \"boolean\",\n },\n position: {\n type: \"choice\",\n options: [\n \"top\",\n \"top-right\",\n \"top-left\",\n \"bottom\",\n \"bottom-right\",\n \"bottom-left\",\n ],\n },\n status: {\n type: \"choice\",\n options: [\"info\", \"success\", \"warning\", \"error\", \"loading\"],\n },\n },\n};\n","import { TooltipProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const tooltipMeta: ComponentMeta<TooltipProps> = {\n ...getComponentNameAndImportMeta(\"Tooltip\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"Button\"),\n props: {\n children: {\n type: \"text\",\n value: \"Hover me\",\n },\n },\n },\n },\n label: {\n type: \"string\",\n defaultValue: \"Hi! I am a tooltip\",\n },\n placement: {\n type: \"choice\",\n options: [\n \"auto\",\n \"auto-start\",\n \"auto-end\",\n \"top\",\n \"top-start\",\n \"top-end\",\n \"bottom\",\n \"bottom-start\",\n \"bottom-end\",\n \"right\",\n \"right-start\",\n \"right-end\",\n \"left\",\n \"left-start\",\n \"left-end\",\n ],\n defaultValue: \"bottom\",\n },\n hasArrow: \"boolean\",\n arrowSize: {\n type: \"number\",\n defaultValue: 10,\n },\n arrowShadowColor: {\n type: \"string\",\n },\n arrowPadding: {\n type: \"number\",\n defaultValue: 8,\n },\n defaultIsOpen: \"boolean\",\n\n isDisabled: \"boolean\",\n offset: {\n type: \"array\",\n defaultValue: [0, 0],\n },\n closeOnClick: {\n type: \"boolean\",\n defaultValue: true,\n },\n closeDelay: {\n type: \"number\",\n defaultValue: 0,\n },\n },\n};\n","import {\n Accordion,\n AccordionButton,\n AccordionIcon,\n AccordionItem,\n AccordionPanel,\n AspectRatio,\n Avatar,\n AvatarBadge,\n AvatarGroup,\n Badge,\n Breadcrumb,\n BreadcrumbItem,\n BreadcrumbLink,\n BreadcrumbSeparator,\n Button,\n ButtonGroup,\n Checkbox,\n CheckboxGroup,\n Code,\n Divider,\n FormControl,\n FormErrorMessage,\n FormHelperText,\n FormLabel,\n Heading,\n Highlight,\n Image,\n Input,\n Kbd,\n ModalBody,\n ModalCloseButton,\n ModalContent,\n ModalFooter,\n ModalHeader,\n ModalOverlay,\n NumberDecrementStepper,\n NumberIncrementStepper,\n NumberInput,\n NumberInputField,\n NumberInputStepper,\n PinInput,\n PinInputField,\n Popover,\n PopoverArrow,\n PopoverBody,\n PopoverCloseButton,\n PopoverContent,\n PopoverHeader,\n PopoverTrigger,\n Progress,\n Radio,\n RadioGroup,\n Select,\n Stat,\n StatArrow,\n StatHelpText,\n StatLabel,\n StatNumber,\n Switch,\n Tab,\n Table,\n TableCaption,\n TableContainer,\n TabList,\n TabPanel,\n TabPanels,\n Tabs,\n Tbody,\n Td,\n Text,\n Tfoot,\n Th,\n Thead,\n Toast,\n Tooltip,\n Tr,\n} from \"@chakra-ui/react\";\nimport { Registerable } from \"./registerable\";\n\nimport registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport {\n accordionButtonMeta,\n accordionIconMeta,\n accordionItemMeta,\n accordionMeta,\n accordionPanelMeta,\n} from \"./registerAccordion\";\nimport { aspectRatioMeta } from \"./registerAspectRatio\";\nimport { avatarBadgeMeta, avatarGroupMeta, avatarMeta } from \"./registerAvatar\";\nimport { badgeMeta } from \"./registerBadge\";\nimport {\n breadcrumbItemMeta,\n breadcrumbLinkMeta,\n breadcrumbMeta,\n breadcrumbSeparatorMeta,\n} from \"./registerBreadcrumb\";\nimport { buttonGroupMeta, buttonMeta } from \"./registerButton\";\nimport { registerChakraProvider } from \"./registerChakraProvider\";\nimport { checkboxGroupMeta, checkboxMeta } from \"./registerCheckBox\";\nimport { codeMeta } from \"./registerCode\";\nimport { dividerMeta } from \"./registerDivider\";\nimport {\n formControlMeta,\n formErrorMessageMeta,\n formHelperTextMeta,\n formLabelMeta,\n} from \"./registerFormControl\";\nimport { headingMeta } from \"./registerHeading\";\nimport { highlightMeta } from \"./registerHighlight\";\nimport { imageMeta } from \"./registerImage\";\nimport { inputMeta } from \"./registerInput\";\nimport { kbdMeta } from \"./registerKbd\";\nimport {\n Modal,\n modalBodyMeta,\n modalCloseButtonMeta,\n modalContentMeta,\n modalFooterMeta,\n modalHeaderMeta,\n modalMeta,\n modalOverlayMeta,\n} from \"./registerModal\";\nimport {\n numberDecrementStepperMeta,\n numberIncrementStepperMeta,\n numberInputFieldMeta,\n numberInputMeta,\n numberInputStepperMeta,\n} from \"./registerNumberInput\";\nimport { pinInputFieldMeta, pinInputMeta } from \"./registerPinInput\";\nimport {\n popoverArrowMeta,\n popoverBodyMeta,\n popoverCloseButtonMeta,\n popoverContentMeta,\n popoverHeaderMeta,\n popoverMeta,\n popoverTriggerMeta,\n} from \"./registerPopover\";\nimport { progressMeta } from \"./registerProgress\";\nimport { radioGroupMeta, radioMeta } from \"./registerRadio\";\nimport { Option, optionMeta, selectMeta } from \"./registerSelect\";\nimport {\n statArrowMeta,\n statHelpTextMeta,\n statLabelMeta,\n statMeta,\n statNumberMeta,\n} from \"./registerStat\";\nimport { switchMeta } from \"./registerSwitch\";\nimport {\n tableCaptionMeta,\n tableContainerMeta,\n tableMeta,\n tbodyMeta,\n tdMeta,\n tfootMeta,\n theadMeta,\n thMeta,\n trMeta,\n} from \"./registerTable\";\nimport {\n tabListMeta,\n tabMeta,\n tabPanelMeta,\n tabPanelsMeta,\n tabsMeta,\n} from \"./registerTabs\";\nimport { textMeta } from \"./registerText\";\nimport { toastMeta } from \"./registerToast\";\nimport { tooltipMeta } from \"./registerTooltip\";\n\nexport * from \"./registerable\";\nexport * from \"./registerAccordion\";\nexport * from \"./registerAspectRatio\";\nexport * from \"./registerAvatar\";\nexport * from \"./registerBadge\";\nexport * from \"./registerBreadcrumb\";\nexport * from \"./registerButton\";\nexport * from \"./registerChakraProvider\";\nexport * from \"./registerCheckBox\";\nexport * from \"./registerCode\";\nexport * from \"./registerDivider\";\nexport * from \"./registerFormControl\";\nexport * from \"./registerHeading\";\nexport * from \"./registerHighlight\";\nexport * from \"./registerImage\";\nexport * from \"./registerInput\";\nexport * from \"./registerKbd\";\nexport * from \"./registerNumberInput\";\nexport * from \"./registerPinInput\";\nexport * from \"./registerPopover\";\nexport * from \"./registerProgress\";\nexport * from \"./registerRadio\";\nexport * from \"./registerSelect\";\nexport * from \"./registerStat\";\nexport * from \"./registerSwitch\";\nexport * from \"./registerTable\";\nexport * from \"./registerTabs\";\nexport * from \"./registerText\";\nexport * from \"./registerToast\";\nexport * from \"./registerTooltip\";\n\nexport function registerAll(loader?: Registerable) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n registerChakraProvider(loader);\n\n _registerComponent(Accordion, accordionMeta);\n _registerComponent(AccordionButton, accordionButtonMeta);\n _registerComponent(AccordionIcon, accordionIconMeta);\n _registerComponent(AccordionItem, accordionItemMeta);\n _registerComponent(AccordionPanel, accordionPanelMeta);\n _registerComponent(AspectRatio, aspectRatioMeta);\n _registerComponent(Avatar, avatarMeta);\n _registerComponent(AvatarBadge, avatarBadgeMeta);\n _registerComponent(AvatarGroup, avatarGroupMeta);\n _registerComponent(Badge, badgeMeta);\n _registerComponent(Breadcrumb, breadcrumbMeta);\n _registerComponent(BreadcrumbItem, breadcrumbItemMeta);\n _registerComponent(BreadcrumbLink, breadcrumbLinkMeta);\n _registerComponent(BreadcrumbSeparator, breadcrumbSeparatorMeta);\n _registerComponent(Button, buttonMeta);\n _registerComponent(ButtonGroup, buttonGroupMeta);\n _registerComponent(Checkbox, checkboxMeta);\n _registerComponent(CheckboxGroup, checkboxGroupMeta);\n _registerComponent(Code, codeMeta);\n _registerComponent(Divider, dividerMeta);\n _registerComponent(FormControl, formControlMeta);\n _registerComponent(FormErrorMessage, formErrorMessageMeta);\n _registerComponent(FormHelperText, formHelperTextMeta);\n _registerComponent(FormLabel, formLabelMeta);\n _registerComponent(Heading, headingMeta);\n _registerComponent(Highlight, highlightMeta);\n _registerComponent(Image, imageMeta);\n _registerComponent(Input, inputMeta);\n _registerComponent(Kbd, kbdMeta);\n _registerComponent(Modal, modalMeta);\n _registerComponent(ModalOverlay, modalOverlayMeta);\n _registerComponent(ModalContent, modalContentMeta);\n _registerComponent(ModalHeader, modalHeaderMeta);\n _registerComponent(ModalBody, modalBodyMeta);\n _registerComponent(ModalFooter, modalFooterMeta);\n _registerComponent(ModalCloseButton, modalCloseButtonMeta);\n _registerComponent(NumberInput, numberInputMeta);\n _registerComponent(NumberDecrementStepper, numberDecrementStepperMeta);\n _registerComponent(NumberIncrementStepper, numberIncrementStepperMeta);\n _registerComponent(NumberInputField, numberInputFieldMeta);\n _registerComponent(NumberInputStepper, numberInputStepperMeta);\n _registerComponent(Option, optionMeta);\n _registerComponent(Select, selectMeta);\n _registerComponent(PinInput, pinInputMeta);\n _registerComponent(PinInputField, pinInputFieldMeta);\n _registerComponent(Popover, popoverMeta);\n _registerComponent(PopoverBody, popoverBodyMeta);\n _registerComponent(PopoverArrow, popoverArrowMeta);\n _registerComponent(PopoverCloseButton, popoverCloseButtonMeta);\n _registerComponent(PopoverContent, popoverContentMeta);\n _registerComponent(PopoverHeader, popoverHeaderMeta);\n _registerComponent(PopoverTrigger, popoverTriggerMeta);\n _registerComponent(Progress, progressMeta);\n _registerComponent(Radio, radioMeta);\n _registerComponent(RadioGroup, radioGroupMeta);\n _registerComponent(Stat, statMeta);\n _registerComponent(StatArrow, statArrowMeta);\n _registerComponent(StatHelpText, statHelpTextMeta);\n _registerComponent(StatLabel, statLabelMeta);\n _registerComponent(StatNumber, statNumberMeta);\n _registerComponent(Switch, switchMeta);\n _registerComponent(Table, tableMeta);\n _registerComponent(TableCaption, tableCaptionMeta);\n _registerComponent(Tbody, tbodyMeta);\n _registerComponent(Thead, theadMeta);\n _registerComponent(Tfoot, tfootMeta);\n _registerComponent(Td, tdMeta);\n _registerComponent(Th, thMeta);\n _registerComponent(Tr, trMeta);\n _registerComponent(TableContainer, tableContainerMeta);\n _registerComponent(Text, textMeta);\n _registerComponent(Toast, toastMeta);\n _registerComponent(Tooltip, tooltipMeta);\n _registerComponent(TabList, tabListMeta);\n _registerComponent(Tab, tabMeta);\n _registerComponent(Tabs, tabsMeta);\n _registerComponent(TabPanel, tabPanelMeta);\n _registerComponent(TabPanels, tabPanelsMeta);\n}\n"],"names":["getPlasmicComponentName","componentName","getDisplayComponentName","getComponentNameAndImportMeta","parentComponentName","opts","name","displayName","importPath","importName","accordionMeta","props","allowMultiple","type","description","allowToggle","defaultIndex","reduceMotion","children","allowedComponents","defaultValue","accordionItemMeta","id","isDisabled","isFocusable","accordionButtonMeta","_expanded","defaultValueHint","bg","color","value","styles","textAlign","accordionPanelMeta","accordionIconMeta","aspectRatioMeta","defaultStyles","width","ratio","avatarBadgeMeta","boxSize","borderColor","avatarMeta","src","size","options","loading","showBorder","hidePlaceholder","avatarGroupMeta","max","spacing","badgeMeta","colorScheme","variant","breadcrumbItemMeta","isCurrentPage","isLastChild","seperator","breadcrumbLinkMeta","href","breadcrumbMeta","separator","breadcrumbSeparatorMeta","buttonGroupMeta","isAttached","buttonMeta","iconSpacing","isActive","isLoading","chakraProviderMeta","theme","registerChakraProvider","loader","customChakraProviderMeta","registerGlobalContext","doRegisterComponent","ChakraProvider","checkboxMeta","isChecked","isIndeterminate","isRequired","isInvalid","checkboxGroupMeta","codeMeta","dividerMeta","orientation","formControlMeta","label","isreadOnly","formLabelMeta","display","formHelperTextMeta","formErrorMessageMeta","headingMeta","noOfLines","highlightMeta","query","backgroundColor","px","py","borderRadius","imageMeta","fallbackSrc","alt","inputMeta","isReadOnly","errorBorderColor","focusBorderColor","kbdMeta","undefined","modalMeta","isOpen","isCentered","scrollBehavior","motionPreset","Modal","React","ChakraUIModal","onClose","modalOverlayMeta","modalContentMeta","modalHeaderMeta","modalBodyMeta","modalFooterMeta","modalCloseButtonMeta","numberInputMeta","inputMode","format","step","precision","min","allowMouseWheel","numberInputStepperMeta","numberDecrementStepperMeta","numberIncrementStepperMeta","numberInputFieldMeta","pinInputMeta","mask","manageFocus","autoFocus","opt","pinInputFieldMeta","popoverMeta","gutter","arrowPadding","arrowShadowColor","arrowSize","offset","closeDelay","placement","direction","trigger","isLazy","popoverContentMeta","popoverArrowMeta","popoverCloseButtonMeta","popoverHeaderMeta","popoverBodyMeta","popoverTriggerMeta","progressMeta","hasStripe","isAnimated","hidden","radioGroupMeta","gap","radioMeta","selectMeta","placeholder","isRequred","Option","className","optionMeta","statMeta","alignItems","padding","statHelpTextMeta","statArrowMeta","statNumberMeta","statLabelMeta","switchMeta","tableMeta","tableCaptionMeta","theadMeta","tbodyMeta","trMeta","tdMeta","isNumeric","thMeta","tableContainerMeta","overflowX","overflowY","whiteSpace","tfootMeta","tabListMeta","tabsMeta","align","index","isFitted","isManual","tabMeta","panelId","tabPanelsMeta","tabPanelMeta","textMeta","toastMeta","title","duration","isClosable","position","status","tooltipMeta","hasArrow","defaultIsOpen","closeOnClick","_registerComponent","Component","defaultMeta","registerComponent","Accordion","AccordionButton","AccordionIcon","AccordionItem","AccordionPanel","AspectRatio","Avatar","AvatarBadge","AvatarGroup","Badge","Breadcrumb","BreadcrumbItem","BreadcrumbLink","BreadcrumbSeparator","Button","ButtonGroup","Checkbox","CheckboxGroup","Code","Divider","FormControl","FormErrorMessage","FormHelperText","FormLabel","Heading","Highlight","Image","Input","Kbd","ModalOverlay","ModalContent","ModalHeader","ModalBody","ModalFooter","ModalCloseButton","NumberInput","NumberDecrementStepper","NumberIncrementStepper","NumberInputField","NumberInputStepper","Select","PinInput","PinInputField","Popover","PopoverBody","PopoverArrow","PopoverCloseButton","PopoverContent","PopoverHeader","PopoverTrigger","Progress","Radio","RadioGroup","Stat","StatArrow","StatHelpText","StatLabel","StatNumber","Switch","Table","TableCaption","Tbody","Thead","Tfoot","Td","Th","Tr","TableContainer","Text","Toast","Tooltip","TabList","Tab","Tabs","TabPanel","TabPanels","customKbdMeta"],"mappings":"2fAAO,IAEMA,EAA0B,SAACC,sBACzBA,GAEFC,EAA0B,SAACD,sBACzBA,GAEFE,EAAgC,SAC3CF,EACAG,EACAC,qBAKAC,KAAMN,EAAwBC,GAC9BM,2BAAaF,SAAAA,EAAME,eAAeL,EAAwBD,GAC1DO,0BAAYH,SAAAA,EAAMG,cAlBiB,mBAmBnCC,WAAYR,GACRG,EACA,CAAEA,oBAAqBJ,EAAwBI,IAC/C,KCTOM,OACRP,EAA8B,cACjCQ,MAAO,CACLC,cAAe,CACbC,KAAM,UACNC,YACE,uEAEJC,YAAa,CACXF,KAAM,UACNC,YACE,+DAEJE,aAAc,CACZH,KAAM,SACNC,YACE,uEAEJG,aAAc,CACZJ,KAAM,UACNC,YACE,+DAEJI,SAAU,CACRL,KAAM,OACNM,kBAAmB,CAACnB,EAAwB,kBAC5CoB,aAAc,CACZ,CAAEP,KAAM,YAAaP,KAAMN,EAAwB,kBACnD,CAAEa,KAAM,YAAaP,KAAMN,EAAwB,uBAM9CqB,OACRlB,EAA8B,gBAAiB,cAClDQ,MAAO,CACLW,GAAI,CACFT,KAAM,SACNC,YAAa,wCAEfS,WAAY,CACVV,KAAM,UACNC,YAAa,iDAEfU,YAAa,CACXX,KAAM,UACNC,YAAa,kDAEfI,SAAU,CACRL,KAAM,OACNM,kBAAmB,CACjBnB,EAAwB,mBACxBA,EAAwB,mBAE1BoB,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,oBAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,wBAO3ByB,OACRtB,EAA8B,kBAAmB,kBACpDQ,MAAO,CACLe,UAAW,CACTb,KAAM,SACNN,YAAa,gBACboB,iBAAkB,CAChBC,GAAI,SACJC,MAAO,UAGXX,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,OACNiB,MAAO,kBACPC,OAAQ,CACNC,UAAW,SAGf,CACEnB,KAAM,YACNP,KAAMN,EAAwB,uBAO3BiC,OACR9B,EAA8B,iBAAkB,kBACnDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,YACNP,KAAMN,EAAwB,QAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MACE,iPAQDI,OACR/B,EAA8B,gBAAiB,oBAClDQ,MAAO,KC/HIwB,OACRhC,EAA8B,gBACjCiC,cAAe,CACbC,MAAO,SAET1B,MAAO,CACL2B,MAAO,CACLzB,KAAM,SACNO,aAAc,OAEhBF,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,YACNP,KAAMN,EAAwB,cCVzBuC,OACRpC,EAA8B,cAAe,WAChDQ,MAAO,CACL6B,QAAS,CACP3B,KAAM,SACNO,aAAc,UAEhBQ,GAAI,CACFf,KAAM,SACNO,aAAc,aAEhBqB,YAAa,YAIJC,OACRvC,EAA8B,SAAU,gBAC3CQ,MAAO,CACLL,KAAM,CACJO,KAAM,SACNO,aAAc,kBAEhBuB,IAAK,CACH9B,KAAM,SACNO,aAAc,8BAEhBwB,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,MAAO,KAAM,KAAM,KAAM,KAAM,KAAM,MAAO,SAExDC,QAAS,CACPjC,KAAM,SACNgC,QAAS,CAAC,QAAS,SAErBE,WAAY,UACZ7B,SAAU,CACRL,KAAM,OACNmC,iBAAiB,EACjB7B,kBAAmB,CAACnB,EAAwB,gBAC5CoB,aAAc,CACZP,KAAM,YACNP,KAAMN,EAAwB,oBAMzBiD,OACR9C,EAA8B,gBACjCQ,MAAO,CACLiC,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,MAAO,KAAM,KAAM,KAAM,KAAM,KAAM,MAAO,SAExDK,IAAK,CACHrC,KAAM,SACNC,YAAa,4DAEfqC,QAAS,CACPtC,KAAM,SACNO,aAAc,YAEhBF,SAAU,CACRL,KAAM,OACNM,kBAAmB,CAACnB,EAAwB,WAC5CoB,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLL,KAAM,eACNqC,IAAK,+BAGT,CACE9B,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLL,KAAM,iBACNqC,IAAK,sCAGT,CACE9B,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLL,KAAM,aACNqC,IAAK,gCAGT,CACE9B,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLL,KAAM,gBACNqC,IAAK,iCAGT,CACE9B,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLL,KAAM,oBACNqC,IAAK,gCAGT,CACE9B,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLL,KAAM,mBACNqC,IAAK,8BAGT,CACE9B,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLL,KAAM,gBACNqC,IAAK,qCC9HJS,OACRjD,EAA8B,UACjCK,WAAY,mBACZG,MAAO,CACL0C,YAAa,CACXxC,KAAM,SACNgC,QAAS,CACP,aACA,aACA,OACA,MACA,SACA,SACA,QACA,OACA,OACA,OACA,SACA,OACA,WACA,WACA,YACA,WACA,UACA,YAEFzB,aAAc,QAEhBkC,QAAS,CACPzC,KAAM,SACNgC,QAAS,CAAC,QAAS,SAAU,WAC7BzB,aAAc,aCvBPmC,OACRpD,EAA8B,iBAAkB,eACnDQ,MAAO,CACL6C,cAAe,CACb3C,KAAM,WAER4C,YAAa,CACX5C,KAAM,WAER6C,UAAW,CACT7C,KAAM,SACNO,aAAc,KAEhB+B,QAAS,CACPtC,KAAM,SACNO,aAAc,OAEhBF,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,kBAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,yBASR6B,OACRxD,EAA8B,iBAAkB,mBACnDQ,MAAO,CACLiD,KAAM,CACJ/C,KAAM,SACNO,aAAc,KAEhBF,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,OACNiB,MAAO,aAOJ+B,OACR1D,EAA8B,eACjCQ,MAAO,CACLmD,UAAW,CACTjD,KAAM,SACNO,aAAc,KAEhB+B,QAAS,CACPtC,KAAM,SACNO,aAAc,OAEhBF,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,kBAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,YACNP,KAAMN,EAAwB,kBAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,YAMjB,CACEjB,KAAM,YACNP,KAAMN,EAAwB,kBAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,YACNP,KAAMN,EAAwB,kBAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,YAMjB,CACEjB,KAAM,YACNP,KAAMN,EAAwB,kBAC9BW,MAAO,CACL8C,aAAa,EACbD,eAAe,EACftC,SAAU,CACRL,KAAM,YACNP,KAAMN,EAAwB,kBAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,uBAWZiC,OACR5D,EAA8B,sBAAuB,eACxDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,SCvIFkC,OACR7D,EAA8B,gBACjCQ,MAAO,CACL0C,YAAa,CACXxC,KAAM,SACNgC,QAAS,CACP,aACA,aACA,OACA,MACA,SACA,SACA,QACA,OACA,OACA,OACA,SACA,OACA,WACA,WACA,YACA,WACA,UACA,aAGJD,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,MAC5BzB,aAAc,MAEhB6C,WAAY,CACVpD,KAAM,UACNO,cAAc,GAEhBG,WAAY,CACVV,KAAM,UACNO,cAAc,GAEhB+B,QAAS,CACPtC,KAAM,SACNO,aAAc,UAEhBF,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,cAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,mBASRoC,OACR/D,EAA8B,SAAU,gBAC3CQ,MAAO,CACLiC,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,OAE9BS,QAAS,CACPzC,KAAM,SACNgC,QAAS,CAAC,QAAS,UAAW,QAAS,OAAQ,YAC/CzB,aAAc,SAEhBiC,YAAa,CACXxC,KAAM,SACNgC,QAAS,CACP,aACA,aACA,OACA,MACA,SACA,SACA,QACA,OACA,OACA,OACA,SACA,OACA,WACA,WACA,YACA,WACA,UACA,aAGJsB,YAAa,SACbC,SAAU,CACRvD,KAAM,WAERU,WAAY,CACVV,KAAM,WAERwD,UAAW,CACTxD,KAAM,WAERK,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,cCzHFwC,OACRnE,EAA8B,mBACjCQ,MAAO,CACL4D,MAAO,qBAIKC,EACdC,EACAC,IAE0D,WACxDD,EACIA,EAAOE,4BAAPF,aACAE,0BACNC,CACEC,uBACAH,EAAAA,EAA4BJ,OChBnBQ,OACR3E,EAA8B,WAAY,kBAC7CQ,MAAO,CACL0C,YAAa,CACXxC,KAAM,SACNgC,QAAS,CACP,aACA,aACA,OACA,MACA,SACA,SACA,QACA,OACA,OACA,OACA,SACA,OACA,WACA,WACA,YACA,WACA,UACA,YAEFzB,aAAc,QAEhBwB,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,OAE9Bf,MAAO,CACLjB,KAAM,UAERsC,QAAS,CACPtC,KAAM,SACNO,aAAc,UAEhB2D,UAAW,CACTlE,KAAM,WAERmE,gBAAiB,CACfnE,KAAM,WAERU,WAAY,CACVV,KAAM,WAERoE,WAAY,CACVpE,KAAM,WAERqE,UAAW,CACTrE,KAAM,WAERK,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,gBAMFqD,OACRhF,EAA8B,kBACjCQ,MAAO,CACLiC,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,MAC5BzB,aAAc,MAEhBG,WAAY,CACVV,KAAM,WAERK,SAAU,CACRL,KAAM,OACNM,kBAAmB,CAACnB,EAAwB,aAC5CoB,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,YAC9BW,MAAO,CACLmB,MAAO,IACPZ,SAAU,CACRL,KAAM,OACNiB,MAAO,gBAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,YAC9BW,MAAO,CACLmB,MAAO,IACPZ,SAAU,CACRL,KAAM,OACNiB,MAAO,gBAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,YAC9BW,MAAO,CACLmB,MAAO,IACPZ,SAAU,CACRL,KAAM,OACNiB,MAAO,qBC9GRsD,OACRjF,EAA8B,SACjCQ,MAAO,CACL0C,YAAa,CACXxC,KAAM,SACNgC,QAAS,CACP,aACA,aACA,OACA,MACA,SACA,SACA,QACA,OACA,OACA,OACA,SACA,OACA,WACA,WACA,YACA,WACA,UACA,YAEFzB,aAAc,QAEhBkC,QAAS,CACPzC,KAAM,SACNgC,QAAS,CAAC,QAAS,SAAU,WAC7BzB,aAAc,UAEhBF,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,OACNiB,MAAO,aCrCJuD,OACRlF,EAA8B,YACjCQ,MAAO,CACL2E,YAAa,CACXzE,KAAM,SACNgC,QAAS,CAAC,WAAY,eAExBS,QAAS,CACPzC,KAAM,SACNgC,QAAS,CAAC,QAAS,cCDZ0C,OACRpF,EAA8B,gBACjCQ,MAAO,CACL6E,MAAO,SACPjE,WAAY,UACZ2D,UAAW,UACXD,WAAY,UACZQ,WAAY,UACZvE,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,cAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,eAO3B0F,OACRvF,EAA8B,YAAa,gBAC9CQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,QACPC,OAAQ,CACN4D,QAAS,eACTtD,MAAO,aAOJuD,OACRzF,EAA8B,iBAAkB,gBACnDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,qCAMF+D,OACR1F,EAA8B,mBAAoB,gBACrDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,iCCrEFgE,OACR3F,EAA8B,YACjCQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MACE,wEAGNc,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,MAAO,MAAO,MAAO,KAAM,KAAM,KAAM,KAAM,MACvDzB,aAAc,MAEhB2E,UAAW,CACTlF,KAAM,SACNO,aAAc,MClBP4E,OACR7F,EAA8B,cACjCQ,MAAO,CACLO,SAAU,CACRX,YAAa,OACbM,KAAM,SACNO,aAAc,0DAEhB6E,MAAO,CACLpF,KAAM,QACNO,aAAc,CAAC,YAAa,UAE9BW,OAAQ,CACNlB,KAAM,SACNO,aAAc,CACZ8E,gBAAiB,aACjBC,GAAI,QACJC,GAAI,QACJC,aAAc,aClBTC,OACRnG,EAA8B,UACjCQ,MAAO,CACLgC,IAAK,CACH9B,KAAM,SACNO,aAAc,8BAEhBmF,YAAa,CACX1F,KAAM,SACNO,aAAc,mCAEhBoF,IAAK,CACH3F,KAAM,SACNc,iBAAkB,qBAEpBmB,QAAS,CACPjC,KAAM,SACNgC,QAAS,CAAC,OAAQ,aCjBX4D,OACRtG,EAA8B,UACjCQ,MAAO,CACLiC,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,OAE9BS,QAAS,CACPzC,KAAM,SACNgC,QAAS,CAAC,UAAW,SAAU,UAAW,aAE5CtB,WAAY,CACVV,KAAM,WAERqE,UAAW,CACTrE,KAAM,WAER6F,WAAY,CACV7F,KAAM,WAERoE,WAAY,CACVpE,KAAM,WAER8F,iBAAkB,CAChB9F,KAAM,SACNO,aAAc,WAEhBwF,iBAAkB,CAChB/F,KAAM,SACNO,aAAc,eC1BPyF,OACR1G,EAA8B,WAAO2G,EAAW,CACjDvG,YAAa,4BAEfI,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,OACNiB,MAAO,UCAJiF,OACR5G,EAA8B,UACjCQ,MAAO,CACLqG,OAAQ,CACNnG,KAAM,UACNO,cAAc,GAEhB6F,WAAY,CACVpG,KAAM,UACNO,cAAc,GAEhB8F,eAAgB,CACdrG,KAAM,SACNgC,QAAS,CAAC,SAAU,WACpBzB,aAAc,UACdN,wOAMFqG,aAAc,CACZtG,KAAM,SACNgC,QAAS,CAAC,gBAAiB,eAAgB,QAAS,QACpDzB,aAAc,SAEhBF,SAAU,CACRL,KAAM,OACNM,kBAAmB,CACjBnB,EAAwB,gBACxBA,EAAwB,iBAE1BoB,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,iBAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,+BAOxBoH,EAAMzG,gBAElB0G,gBAACC,yBAAkB3G,GAAO4G,iBAAS5G,EAAM4G,WAAY,eAClD5G,EAAMO,UAIN,IAAMsG,OACRrH,EAA8B,eAAgB,UACjDQ,MAAO,CACLO,SAAU,UAIDuG,OACRtH,EAA8B,eAAgB,UACjDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNM,kBAAmB,CACjBnB,EAAwB,eACxBA,EAAwB,oBACxBA,EAAwB,aACxBA,EAAwB,gBAE1BoB,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,gBAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,cAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,qBAO3B0H,OACRvH,EAA8B,cAAe,iBAChDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,mBAgBF6F,OACRxH,EAA8B,YAAa,iBAC9CQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,omBAMK8F,OACRzH,EAA8B,cAAe,iBAChDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,oBAMF+F,OACR1H,EAA8B,mBAAoB,iBACrDQ,MAAO,CACLY,WAAY,aCjJHuG,OACR3H,EAA8B,gBACjCQ,MAAO,CACLiC,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,OAE9BS,QAAS,CACPzC,KAAM,SACNgC,QAAS,CAAC,UAAW,SAAU,UAAW,aAE5CkF,UAAW,CACTlH,KAAM,SACNgC,QAAS,CACP,OACA,SACA,OACA,MACA,MACA,QACA,UACA,YAGJmF,OAAQ,CACNnH,KAAM,UAERoH,KAAM,CACJpH,KAAM,UAERqH,UAAW,CACTrH,KAAM,UAERqC,IAAK,CACHrC,KAAM,UAERsH,IAAK,CACHtH,KAAM,UAER8F,iBAAkB,CAChB9F,KAAM,SACNO,aAAc,WAEhBwF,iBAAkB,CAChB/F,KAAM,SACNO,aAAc,YAEhBgH,gBAAiB,CACfvH,KAAM,WAERU,WAAY,CACVV,KAAM,WAERqE,UAAW,CACTrE,KAAM,WAER6F,WAAY,CACV7F,KAAM,WAERoE,WAAY,CACVpE,KAAM,WAGRK,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,qBAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,4BAO3BqI,OACRlI,EAA8B,qBAAsB,gBACvDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNM,kBAAmB,CACjBnB,EAAwB,0BACxBA,EAAwB,2BAE1BoB,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,2BAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,gCAO3BsI,OACRnI,EACD,yBACA,uBAEFQ,MAAO,KAGI4H,OACRpI,EACD,yBACA,uBAEFQ,MAAO,KAGI6H,OACRrI,EAA8B,mBAAoB,gBACrDQ,MAAO,KC9HI8H,OACRtI,EAA8B,aACjCQ,MAAO,CACLiC,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,OAE9BhC,KAAM,CACJA,KAAM,SACNgC,QAAS,CAAC,SAAU,iBAEtBS,QAAS,CACPzC,KAAM,SACNgC,QAAS,CAAC,UAAW,SAAU,UAAW,aAE5C6F,KAAM,CACJ7H,KAAM,UACNC,YACE,wEAEJ6H,YAAa,CACX9H,KAAM,UACNO,cAAc,EACdN,YACE,kFAEJ8H,UAAW,CACT/H,KAAM,UACNC,YAAa,qDAEf+H,IAAK,CACHhI,KAAM,UACNC,YAAa,gCAEf6F,iBAAkB,CAChB9F,KAAM,SACNO,aAAc,WAEhBwF,iBAAkB,CAChB/F,KAAM,SACNO,aAAc,YAEhBG,WAAY,CACVV,KAAM,WAERqE,UAAW,CACTrE,KAAM,WAGRK,SAAU,CACRL,KAAM,OACNM,kBAAmB,CAACnB,EAAwB,kBAC5CoB,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,kBAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,kBAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,kBAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,uBAO3B8I,QACR3I,EAA8B,gBAAiB,aAClDQ,MAAO,KCrEIoI,QACR5I,EAA8B,YACjCQ,MAAO,CACLqI,OAAQ,CACNnI,KAAM,SACNO,aAAc,GAEhB6H,aAAc,SACdC,iBAAkB,CAChBrI,KAAM,SACNO,aAAc,uBAEhB+H,UAAW,CACTtI,KAAM,UAERuI,OAAQ,CACNvI,KAAM,QACNO,aAAc,CAAC,EAAG,IAEpBiI,WAAY,SACZ/D,YAAa,CACXzE,KAAM,SACNgC,QAAS,CAAC,aAAc,aAE1ByG,UAAW,CACTzI,KAAM,SACNgC,QAAS,CAAC,MAAO,SAAU,OAAQ,SACnCzB,aAAc,UAEhBmI,UAAW,CACT1I,KAAM,SACNgC,QAAS,CAAC,MAAO,OACjBzB,aAAc,OAEhBoI,QAAS,CACP3I,KAAM,SACNgC,QAAS,CAAC,QAAS,SACnBzB,aAAc,SAEhBqI,OAAQ,CACN5I,KAAM,WAERmG,OAAQ,CACNnG,KAAM,WAERK,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,mBAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,wBAO3B0J,QACRvJ,EAA8B,iBAAkB,YACnDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,iBAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,uBAEhC,CACEa,KAAM,YACNP,KAAMN,EAAwB,iBAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,mBAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,eAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,wDASR6H,QACRxJ,EAA8B,eAAgB,mBACjDQ,MAAO,KAGIiJ,QACRzJ,EAA8B,qBAAsB,mBACvDQ,MAAO,KAGIkJ,QACR1J,EAA8B,gBAAiB,mBAClDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,qBAMFgI,QACR3J,EAA8B,cAAe,mBAChDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,qDAMFiI,QACR5J,EAA8B,iBAAkB,YACnDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,iBC7JNkI,QACR7J,EAA8B,aACjCQ,MAAO,CACL0C,YAAa,CACXxC,KAAM,SACNgC,QAAS,CACP,aACA,aACA,OACA,MACA,SACA,SACA,QACA,OACA,OACA,OACA,SACA,OACA,WACA,WACA,YACA,WACA,UACA,YAEFzB,aAAc,QAEhBwB,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,MAC5BzB,aAAc,MAEhB8B,IAAK,CACHrC,KAAM,SACNO,aAAc,KAEhB+G,IAAK,CACHtH,KAAM,SACNO,aAAc,GAEhBU,MAAO,SAEPkD,gBAAiB,CACfnE,KAAM,WAERoJ,UAAW,CACTpJ,KAAM,WAERqJ,WAAY,CACVrJ,KAAM,UACNsJ,OAAQ,SAACxJ,UAAWA,EAAMsJ,eC/CnBG,QACRjK,EAA8B,eACjCQ,MAAO,CACLmB,MAAO,CACLjB,KAAM,UAER+B,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,OAE9BtB,WAAY,CACVV,KAAM,WAERqE,UAAW,CACTrE,KAAM,WAER6F,WAAY,CACV7F,KAAM,WAERoE,WAAY,CACVpE,KAAM,WAERK,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OAENkB,OAAQ,CACNsI,IAAK,QAEPnJ,SAAU,CACR,CACEL,KAAM,YACNP,KAAMN,EAAwB,SAC9BW,MAAO,CAAEmB,MAAO,IAAKZ,SAAU,CAAEL,KAAM,OAAQiB,MAAO,aAExD,CACEjB,KAAM,YACNP,KAAMN,EAAwB,SAC9BW,MAAO,CAAEmB,MAAO,IAAKZ,SAAU,CAAEL,KAAM,OAAQiB,MAAO,aAExD,CACEjB,KAAM,YACNP,KAAMN,EAAwB,SAC9BW,MAAO,CAAEmB,MAAO,IAAKZ,SAAU,CAAEL,KAAM,OAAQiB,MAAO,mBAQrDwI,QACRnK,EAA8B,QAAS,eAC1CQ,MAAO,CACLmB,MAAO,CACLjB,KAAM,UAER+B,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,OAE9BM,QAAS,CACPtC,KAAM,SACNO,aAAc,UAEhB2D,UAAW,CACTlE,KAAM,WAERU,WAAY,CACVV,KAAM,WAERqE,UAAW,CACTrE,KAAM,WAER6F,WAAY,CACV7F,KAAM,WAERoE,WAAY,CACVpE,KAAM,WAERK,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,OACNiB,MAAO,cCrFJyI,QACRpK,EAA8B,WACjCQ,MAAO,CACLiC,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,KAAM,MAC5BzB,aAAc,MAEhBkC,QAAS,CACPzC,KAAM,SACNgC,QAAS,CAAC,UAAW,SAAU,UAAW,YAC1CzB,aAAc,WAEhBoJ,YAAa,CACX3J,KAAM,UAER8F,iBAAkB,CAChB9F,KAAM,SACNc,iBAAkB,WAEpBJ,WAAY,CACVV,KAAM,WAERqE,UAAW,CACTrE,KAAM,WAER6F,WAAY,CACV7F,KAAM,WAER4J,UAAW,CACT5J,KAAM,WAERK,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,eAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,eAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,6BAeL4I,GAAO/J,UAGnB0G,0BAAQsD,UAF6BhK,EAAxBgK,UAEiB7I,MAFOnB,EAA/BmB,OAA+BnB,EAAbO,cAQf0J,QACRzK,EAA8B,SAAU,SAAU,CACnDK,WAAY,oCAEdG,MAAO,CACLmB,MAAO,SACPZ,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,cC1FF+I,QACR1K,EAA8B,SACjCQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,aAC9BW,MAAO,CAAEO,SAAU,CAAEL,KAAM,OAAQiB,MAAO,oBAE5C,CACEjB,KAAM,YACNP,KAAMN,EAAwB,cAC9BW,MAAO,CAAEO,SAAU,CAAEL,KAAM,OAAQiB,MAAO,cAE5C,CACEjB,KAAM,YACNP,KAAMN,EAAwB,gBAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNkB,OAAQ,CACN+I,WAAY,SACZC,QAAS,OAEX7J,SAAU,CACR,CACEL,KAAM,YACNP,KAAMN,EAAwB,aAC9BW,MAAO,CAAEE,KAAM,aAEjB,CAAEA,KAAM,OAAQiB,MAAO,wBAU1BkJ,QACR7K,EAA8B,eAAgB,SACjDQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,OACNiB,MAAO,qBAOJmJ,QACR9K,EAA8B,YAAa,SAC9CQ,MAAO,CACLE,KAAM,CACJA,KAAM,SACNgC,QAAS,CAAC,WAAY,gBAKfqI,QACR/K,EAA8B,aAAc,SAC/CQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,OACNiB,MAAO,iBAOJqJ,QACRhL,EAA8B,YAAa,SAC9CQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,OACNiB,MAAO,kBCnGJsJ,QACRjL,EAA8B,WACjCQ,MAAO,CACLoE,UAAW,UACX1B,YAAa,CACXxC,KAAM,SACNgC,QAAS,CACP,aACA,aACA,OACA,MACA,SACA,SACA,QACA,OACA,OACA,OACA,SACA,OACA,WACA,WACA,YACA,WACA,UACA,YAEFzB,aAAc,QAEhBwB,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,MACtBzB,aAAc,MAEhB+B,QAAS,CACPtC,KAAM,SACNO,aAAc,UAEhBE,GAAI,SACJC,WAAY,UACZ2D,UAAW,UACXwB,WAAY,UACZzB,WAAY,aC5BHoG,QACRlL,EAA8B,QAAS,mBAC1CQ,MAAO,CACL0C,YAAa,CACXxC,KAAM,SACNgC,QAAS,CACP,aACA,aACA,OACA,MACA,SACA,SACA,QACA,OACA,OACA,OACA,SACA,OACA,WACA,WACA,YACA,WACA,UACA,YAEFzB,aAAc,QAEhBwB,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,MACtBzB,aAAc,MAEhBkC,QAAS,CACPzC,KAAM,SACNgC,QAAS,CAAC,SAAU,UAAW,YAC/BzB,aAAc,UAEhBF,SAAU,CACRL,KAAM,WAKCyK,QACRnL,EAA8B,eAAgB,UACjDQ,MAAO,CACL2I,UAAW,CACTzI,KAAM,SACNgC,QAAS,CAAC,MAAO,UACjBzB,aAAc,UAEhBF,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,6CAMFyJ,QACRpL,EAA8B,QAAS,UAC1CQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNM,kBAAmB,CACjBnB,EAAwB,MACxBA,EAAwB,WAMnBwL,QACRrL,EAA8B,QAAS,UAC1CQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNM,kBAAmB,CACjBnB,EAAwB,MACxBA,EAAwB,WAMnByL,QACRtL,EAA8B,KAAM,UACvCQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNM,kBAAmB,CACjBnB,EAAwB,MACxBA,EAAwB,WAMnB0L,QACRvL,EAA8B,KAAM,OACvCQ,MAAO,CACLgL,UAAW,UACXzK,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,kBAMF8J,QACRzL,EAA8B,KAAM,OACvCQ,MAAO,CACLgL,UAAW,UACXzK,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,kBAMF+J,QACR1L,EAA8B,mBACjCQ,MAAO,CACLmL,UAAW,CACTjL,KAAM,SACNgC,QAAS,CAAC,OAAQ,SAAU,SAAU,YAExCkJ,UAAW,CACTlL,KAAM,SACNgC,QAAS,CAAC,OAAQ,SAAU,SAAU,YAExCmJ,WAAY,CACVnL,KAAM,SACNgC,QAAS,CAAC,SAAU,SAAU,MAAO,WAAY,aAEnD3B,SAAU,CACRL,KAAM,OACNM,kBAAmB,CAACnB,EAAwB,UAC5CoB,aAAc,CACZP,KAAM,YACNP,KAAMN,EAAwB,SAC9BW,MAAO,CACLO,SAAU,CACR,CACEL,KAAM,YACNP,KAAMN,EAAwB,SAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,YACNP,KAAMN,EAAwB,MAC9BW,MAAO,CACLO,SAAU,CACR,CACEL,KAAM,YACNP,KAAMN,EAAwB,MAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,gBAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,MAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,UAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,MAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,sBASvB,CACEjB,KAAM,YACNP,KAAMN,EAAwB,SAC9BW,MAAO,CACLO,SAAU,CACR,CACEL,KAAM,YACNP,KAAMN,EAAwB,MAC9BW,MAAO,CACLO,SAAU,CACR,CACEL,KAAM,YACNP,KAAMN,EAAwB,MAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,YAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,MAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,sBAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,MAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,uBAiBxBmK,QACR9L,EAA8B,QAAS,UAC1CQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,MAC9BW,MAAO,CACLO,SAAU,CACR,CACEL,KAAM,YACNP,KAAMN,EAAwB,MAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,kBC7QdoK,QACR/L,EAA8B,UAAW,SAC5CQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNM,kBAAmB,CAACnB,EAAwB,YAKrCmM,QACRhM,EAA8B,SACjCQ,MAAO,CACLyL,MAAO,CACLvL,KAAM,SACNgC,QAAS,CAAC,QAAS,SAAU,QAE/BQ,YAAa,CACXxC,KAAM,SACNgC,QAAS,CACP,aACA,aACA,OACA,MACA,SACA,SACA,QACA,OACA,OACA,OACA,SACA,OACA,WACA,WACA,YACA,WACA,UACA,aAGJyC,YAAa,CACXzE,KAAM,SACNgC,QAAS,CAAC,aAAc,aAE1BD,KAAM,CACJ/B,KAAM,SACNgC,QAAS,CAAC,KAAM,KAAM,OAExBS,QAAS,CACPzC,KAAM,SACNgC,QAAS,CACP,OACA,WACA,mBACA,eACA,gBACA,YAEFzB,aAAc,QAEhBmI,UAAW,CACT1I,KAAM,SACNgC,QAAS,CAAC,MAAO,QAEnBwJ,MAAO,CACLxL,KAAM,UAERyL,SAAU,UACV7C,OAAQ,UACR8C,SAAU,UACVrL,SAAU,CACRL,KAAM,OACNM,kBAAmB,CACjBnB,EAAwB,WACxBA,EAAwB,cAE1BoB,aAAc,CACZ,CACEP,KAAM,YACNP,KAAMN,EAAwB,WAC9BW,MAAO,CACLO,SAAU,CACR,CACEL,KAAM,YACNP,KAAMN,EAAwB,OAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,WAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,OAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,WAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,OAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,cAOnB,CACEjB,KAAM,YACNP,KAAMN,EAAwB,aAC9BW,MAAO,CACLO,SAAU,CACR,CACEL,KAAM,YACNP,KAAMN,EAAwB,YAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,2BAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,YAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,2BAIb,CACEjB,KAAM,YACNP,KAAMN,EAAwB,YAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,mCAYd0K,QACRrM,EAA8B,MAAO,YACxCQ,MAAO,CACLW,GAAI,SACJC,WAAY,UACZkL,QAAS,SACTvL,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,WAMF4K,QACRvM,EAA8B,YAAa,SAC9CQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNM,kBAAmB,CAACnB,EAAwB,iBAKrC2M,QACRxM,EAA8B,WAAY,cAC7CQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,OACNiB,MAAO,yBCxMF8K,QACRzM,EAA8B,SACjCQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZ,CACEP,KAAM,OACNiB,MAAO,kBCRJ+K,QACR1M,EAA8B,UACjCQ,MAAO,CACLmM,MAAO,CACLjM,KAAM,SACNO,aAAc,eAEhBN,YAAa,CACXD,KAAM,SACNO,aAAc,qBAEhBkC,QAAS,CACPzC,KAAM,SACNgC,QAAS,CAAC,QAAS,SAAU,cAAe,eAE9CkK,SAAU,CACRlM,KAAM,SACNO,aAAc,KAEhB4L,WAAY,CACVnM,KAAM,WAERoM,SAAU,CACRpM,KAAM,SACNgC,QAAS,CACP,MACA,YACA,WACA,SACA,eACA,gBAGJqK,OAAQ,CACNrM,KAAM,SACNgC,QAAS,CAAC,OAAQ,UAAW,UAAW,QAAS,eChC1CsK,QACRhN,EAA8B,YACjCQ,MAAO,CACLO,SAAU,CACRL,KAAM,OACNO,aAAc,CACZP,KAAM,YACNP,KAAMN,EAAwB,UAC9BW,MAAO,CACLO,SAAU,CACRL,KAAM,OACNiB,MAAO,eAKf0D,MAAO,CACL3E,KAAM,SACNO,aAAc,sBAEhBkI,UAAW,CACTzI,KAAM,SACNgC,QAAS,CACP,OACA,aACA,WACA,MACA,YACA,UACA,SACA,eACA,aACA,QACA,cACA,YACA,OACA,aACA,YAEFzB,aAAc,UAEhBgM,SAAU,UACVjE,UAAW,CACTtI,KAAM,SACNO,aAAc,IAEhB8H,iBAAkB,CAChBrI,KAAM,UAERoI,aAAc,CACZpI,KAAM,SACNO,aAAc,GAEhBiM,cAAe,UAEf9L,WAAY,UACZ6H,OAAQ,CACNvI,KAAM,QACNO,aAAc,CAAC,EAAG,IAEpBkM,aAAc,CACZzM,KAAM,UACNO,cAAc,GAEhBiI,WAAY,CACVxI,KAAM,SACNO,aAAc,wyCCqIQqD,OACpB8I,EAAqB,SACzBC,EACAC,GAEIhJ,EACFA,EAAOiJ,kBAAkBF,EAAWC,GAEpCC,EAAkBF,EAAWC,IAGjCjJ,EAAuBC,GAEvB8I,EAAmBI,YAAWjN,GAC9B6M,EAAmBK,kBAAiBnM,GACpC8L,EAAmBM,gBAAe3L,GAClCqL,EAAmBO,gBAAezM,GAClCkM,EAAmBQ,iBAAgB9L,GACnCsL,EAAmBS,cAAa7L,GAChCoL,EAAmBU,SAAQvL,GAC3B6K,EAAmBW,cAAa3L,GAChCgL,EAAmBY,cAAalL,GAChCsK,EAAmBa,QAAOhL,GAC1BmK,EAAmBc,aAAYxK,GAC/B0J,EAAmBe,iBAAgB/K,GACnCgK,EAAmBgB,iBAAgB5K,GACnC4J,EAAmBiB,sBAAqBzK,GACxCwJ,EAAmBkB,SAAQvK,GAC3BqJ,EAAmBmB,cAAa1K,GAChCuJ,EAAmBoB,WAAU7J,GAC7ByI,EAAmBqB,gBAAezJ,GAClCoI,EAAmBsB,OAAMzJ,GACzBmI,EAAmBuB,UAASzJ,GAC5BkI,EAAmBwB,cAAaxJ,GAChCgI,EAAmByB,mBAAkBnJ,GACrC0H,EAAmB0B,iBAAgBrJ,GACnC2H,EAAmB2B,YAAWxJ,GAC9B6H,EAAmB4B,UAASrJ,GAC5ByH,EAAmB6B,YAAWpJ,GAC9BuH,EAAmB8B,QAAO/I,GAC1BiH,EAAmB+B,QAAO7I,GAC1B8G,EAAmBgC,MAAK1I,GACxB0G,EAAmBnG,EAAOL,GAC1BwG,EAAmBiC,eAAchI,GACjC+F,EAAmBkC,eAAchI,GACjC8F,EAAmBmC,cAAahI,GAChC6F,EAAmBoC,YAAWhI,GAC9B4F,EAAmBqC,cAAahI,GAChC2F,EAAmBsC,mBAAkBhI,GACrC0F,EAAmBuC,cAAahI,GAChCyF,EAAmBwC,yBAAwBzH,GAC3CiF,EAAmByC,yBAAwBzH,GAC3CgF,EAAmB0C,mBAAkBzH,GACrC+E,EAAmB2C,qBAAoB7H,GACvCkF,EAAmB7C,GAAQE,IAC3B2C,EAAmB4C,SAAQ5F,IAC3BgD,EAAmB6C,WAAU3H,GAC7B8E,EAAmB8C,gBAAevH,IAClCyE,EAAmB+C,UAASvH,IAC5BwE,EAAmBgD,cAAazG,IAChCyD,EAAmBiD,eAAc7G,IACjC4D,EAAmBkD,qBAAoB7G,IACvC2D,EAAmBmD,iBAAgBhH,IACnC6D,EAAmBoD,gBAAe9G,IAClC0D,EAAmBqD,iBAAgB7G,IACnCwD,EAAmBsD,WAAU7G,IAC7BuD,EAAmBuD,QAAOxG,IAC1BiD,EAAmBwD,aAAY3G,IAC/BmD,EAAmByD,OAAMnG,IACzB0C,EAAmB0D,YAAWhG,IAC9BsC,EAAmB2D,eAAclG,IACjCuC,EAAmB4D,YAAWhG,IAC9BoC,EAAmB6D,aAAYlG,IAC/BqC,EAAmB8D,SAAQjG,IAC3BmC,EAAmB+D,QAAOjG,IAC1BkC,EAAmBgE,eAAcjG,IACjCiC,EAAmBiE,QAAOhG,IAC1B+B,EAAmBkE,QAAOlG,IAC1BgC,EAAmBmE,QAAOzF,IAC1BsB,EAAmBoE,KAAIjG,IACvB6B,EAAmBqE,KAAIhG,IACvB2B,EAAmBsE,KAAIpG,IACvB8B,EAAmBuE,iBAAgBjG,IACnC0B,EAAmBwE,OAAMnF,IACzBW,EAAmByE,QAAOnF,IAC1BU,EAAmB0E,UAAS9E,IAC5BI,EAAmB2E,UAAShG,IAC5BqB,EAAmB4E,MAAK3F,IACxBe,EAAmB6E,OAAMjG,IACzBoB,EAAmB8E,WAAU1F,IAC7BY,EAAmB+E,YAAW5F,mEf/Q9BjI,EACA8N,IAEsD,WACpD9N,EAASA,EAAOiJ,wBAAPjJ,aAAoCiJ,0BAC/C9I,CAAoB2K,YAAKgD,EAAAA,EAAiB1L"}
|
|
1
|
+
{"version":3,"file":"plasmic-chakra-ui.cjs.production.min.js","sources":["../src/utils.ts","../src/registerAccordion.ts","../src/registerAspectRatio.ts","../src/registerAvatar.ts","../src/registerBadge.ts","../src/registerBreadcrumb.ts","../src/registerButton.ts","../src/registerChakraProvider.tsx","../src/registerCheckBox.ts","../src/registerCode.ts","../src/registerDivider.ts","../src/registerFormControl.ts","../src/registerHeading.ts","../src/registerHighlight.ts","../src/registerImage.ts","../src/registerInput.ts","../src/registerKbd.ts","../src/registerModal.tsx","../src/registerNumberInput.ts","../src/registerPinInput.ts","../src/registerPopover.ts","../src/registerProgress.ts","../src/registerRadio.ts","../src/registerSelect.tsx","../src/registerStat.ts","../src/registerSwitch.ts","../src/registerTable.ts","../src/registerTabs.ts","../src/registerText.ts","../src/registerToast.ts","../src/registerTooltip.ts","../src/index.ts"],"sourcesContent":["export const CHAKRA_UI_IMPORT_PATH = \"@chakra-ui/react\";\n\nexport const getPlasmicComponentName = (componentName: string) =>\n `chakra-ui-${componentName}`;\n\nexport const getDisplayComponentName = (componentName: string) =>\n `Chakra-UI ${componentName}`;\n\nexport const getComponentNameAndImportMeta = (\n componentName: string,\n parentComponentName?: string,\n opts?: {\n displayName?: string;\n importPath?: string;\n }\n) => ({\n name: getPlasmicComponentName(componentName),\n displayName: opts?.displayName ?? getDisplayComponentName(componentName),\n importPath: opts?.importPath ?? CHAKRA_UI_IMPORT_PATH,\n importName: componentName,\n ...(parentComponentName\n ? { parentComponentName: getPlasmicComponentName(parentComponentName) }\n : {}),\n});\n","import {\n AccordionButtonProps,\n AccordionItemProps,\n AccordionPanelProps,\n AccordionProps,\n IconProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const accordionMeta: ComponentMeta<AccordionProps> = {\n ...getComponentNameAndImportMeta(\"Accordion\"),\n props: {\n allowMultiple: {\n type: \"boolean\",\n description:\n \"If true, multiple accordion items can be expanded at the same time.\",\n },\n allowToggle: {\n type: \"boolean\",\n description:\n \"If true, an expanded accordion item can be collapsed again.\",\n },\n defaultIndex: {\n type: \"number\",\n description:\n \"The index of the accordion item that should be expanded by default.\",\n },\n reduceMotion: {\n type: \"boolean\",\n description:\n \"If true, height animation and transitions will be disabled.\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"AccordionItem\")],\n defaultValue: [\n { type: \"component\", name: getPlasmicComponentName(\"AccordionItem\") },\n { type: \"component\", name: getPlasmicComponentName(\"AccordionItem\") },\n ],\n },\n },\n};\n\nexport const accordionItemMeta: ComponentMeta<AccordionItemProps> = {\n ...getComponentNameAndImportMeta(\"AccordionItem\", \"Accordion\"),\n props: {\n id: {\n type: \"string\",\n description: \"The unique id of the accordion item.\",\n },\n isDisabled: {\n type: \"boolean\",\n description: \"If true, the accordion item will be disabled.\",\n },\n isFocusable: {\n type: \"boolean\",\n description: \"If true, the accordion item will be focusable.\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"AccordionButton\"),\n getPlasmicComponentName(\"AccordionPanel\"),\n ],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"AccordionButton\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"AccordionPanel\"),\n },\n ],\n },\n },\n};\n\nexport const accordionButtonMeta: ComponentMeta<AccordionButtonProps> = {\n ...getComponentNameAndImportMeta(\"AccordionButton\", \"AccordionItem\"),\n props: {\n _expanded: {\n type: \"object\",\n displayName: \"expandedStyle\",\n defaultValueHint: {\n bg: \"orange\",\n color: \"white\",\n },\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Section 1 title\",\n styles: {\n textAlign: \"left\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"AccordionIcon\"),\n },\n ],\n },\n },\n};\n\nexport const accordionPanelMeta: ComponentMeta<AccordionPanelProps> = {\n ...getComponentNameAndImportMeta(\"AccordionPanel\", \"AccordionItem\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"Text\"),\n props: {\n children: {\n type: \"text\",\n value:\n \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\",\n },\n },\n },\n },\n },\n};\n\nexport const accordionIconMeta: ComponentMeta<IconProps> = {\n ...getComponentNameAndImportMeta(\"AccordionIcon\", \"AccordionButton\"),\n props: {},\n};\n","import { AspectRatioProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const aspectRatioMeta: ComponentMeta<AspectRatioProps> = {\n ...getComponentNameAndImportMeta(\"AspectRatio\"),\n defaultStyles: {\n width: \"320px\",\n },\n props: {\n ratio: {\n type: \"number\",\n defaultValue: 1.333,\n },\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"Image\"),\n },\n },\n },\n};\n","import {\n AvatarBadgeProps,\n AvatarGroupProps,\n AvatarProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const avatarBadgeMeta: ComponentMeta<AvatarBadgeProps> = {\n ...getComponentNameAndImportMeta(\"AvatarBadge\", \"Avatar\"),\n props: {\n boxSize: {\n type: \"string\",\n defaultValue: \"1.25em\",\n },\n bg: {\n type: \"string\",\n defaultValue: \"green.500\",\n },\n borderColor: \"string\",\n },\n};\n\nexport const avatarMeta: ComponentMeta<AvatarProps> = {\n ...getComponentNameAndImportMeta(\"Avatar\", \"AvatarGroup\"),\n props: {\n name: {\n type: \"string\",\n defaultValue: \"Kola Tioluwani\",\n },\n src: {\n type: \"string\",\n defaultValue: \"https://bit.ly/dan-abramov\",\n },\n size: {\n type: \"choice\",\n options: [\"2xs\", \"xs\", \"sm\", \"md\", \"lg\", \"xl\", \"2xl\", \"full\"],\n },\n loading: {\n type: \"choice\",\n options: [\"eager\", \"lazy\"],\n },\n showBorder: \"boolean\",\n children: {\n type: \"slot\",\n hidePlaceholder: true,\n allowedComponents: [getPlasmicComponentName(\"AvatarBadge\")],\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"AvatarBadge\"),\n },\n },\n },\n};\n\nexport const avatarGroupMeta: ComponentMeta<AvatarGroupProps> = {\n ...getComponentNameAndImportMeta(\"AvatarGroup\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"2xs\", \"xs\", \"sm\", \"md\", \"lg\", \"xl\", \"2xl\", \"full\"],\n },\n max: {\n type: \"number\",\n description: \"The maximum number of avatars to show before truncating.\",\n },\n spacing: {\n type: \"string\",\n defaultValue: \"-0.75rem\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"Avatar\")],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Dan Abrahmov\",\n src: \"https://bit.ly/dan-abramov\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Kola Tioluwani\",\n src: \"https://bit.ly/tioluwani-kolawole\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Kent Dodds\",\n src: \"https://bit.ly/kent-c-dodds\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Ryan Florence\",\n src: \"https://bit.ly/ryan-florence\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Prosper Otemuyiwa\",\n src: \"https://bit.ly/prosper-baba\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Christian Nwamba\",\n src: \"https://bit.ly/code-beast\",\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Avatar\"),\n props: {\n name: \"Segun Adebayo\",\n src: \"https://bit.ly/sage-adebayo\",\n },\n },\n ],\n },\n },\n};\n","import { BadgeProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const badgeMeta: ComponentMeta<BadgeProps> = {\n ...getComponentNameAndImportMeta(\"Badge\"),\n importPath: \"@chakra-ui/react\",\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"gray\",\n },\n variant: {\n type: \"choice\",\n options: [\"solid\", \"subtle\", \"outline\"],\n defaultValue: \"subtle\",\n },\n },\n};\n","import {\n BreadcrumbItemProps,\n BreadcrumbLinkProps,\n BreadcrumbProps,\n BreadcrumbSeparatorProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const breadcrumbItemMeta: ComponentMeta<BreadcrumbItemProps> = {\n ...getComponentNameAndImportMeta(\"BreadcrumbItem\", \"Breadcrumb\"),\n props: {\n isCurrentPage: {\n type: \"boolean\",\n },\n isLastChild: {\n type: \"boolean\",\n },\n seperator: {\n type: \"string\",\n defaultValue: \"/\",\n },\n spacing: {\n type: \"string\",\n defaultValue: \"8px\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbLink\"),\n props: {\n children: {\n type: \"text\",\n value: \"BreadcrumbItem\",\n },\n },\n },\n ],\n },\n },\n};\n\nexport const breadcrumbLinkMeta: ComponentMeta<BreadcrumbLinkProps> = {\n ...getComponentNameAndImportMeta(\"BreadcrumbLink\", \"BreadcrumbItem\"),\n props: {\n href: {\n type: \"string\",\n defaultValue: \"#\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Home\",\n },\n ],\n },\n },\n};\n\nexport const breadcrumbMeta: ComponentMeta<BreadcrumbProps> = {\n ...getComponentNameAndImportMeta(\"Breadcrumb\"),\n props: {\n separator: {\n type: \"string\",\n defaultValue: \"/\",\n },\n spacing: {\n type: \"string\",\n defaultValue: \"8px\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbItem\"),\n props: {\n children: {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbLink\"),\n props: {\n children: {\n type: \"text\",\n value: \"Home\",\n },\n },\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbItem\"),\n props: {\n children: {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbLink\"),\n props: {\n children: {\n type: \"text\",\n value: \"Docs\",\n },\n },\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbItem\"),\n props: {\n isLastChild: true,\n isCurrentPage: true,\n children: {\n type: \"component\",\n name: getPlasmicComponentName(\"BreadcrumbLink\"),\n props: {\n children: {\n type: \"text\",\n value: \"Breadcrumb\",\n },\n },\n },\n },\n },\n ],\n },\n },\n};\n\nexport const breadcrumbSeparatorMeta: ComponentMeta<BreadcrumbSeparatorProps> = {\n ...getComponentNameAndImportMeta(\"BreadcrumbSeparator\", \"Breadcrumb\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"/\",\n },\n },\n },\n};\n","import { ButtonGroupProps, ButtonProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const buttonGroupMeta: ComponentMeta<ButtonGroupProps> = {\n ...getComponentNameAndImportMeta(\"ButtonGroup\"),\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n },\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n defaultValue: \"md\",\n },\n isAttached: {\n type: \"boolean\",\n defaultValue: false,\n },\n isDisabled: {\n type: \"boolean\",\n defaultValue: false,\n },\n spacing: {\n type: \"string\",\n defaultValue: \"0.5rem\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Button\"),\n props: {\n children: {\n type: \"text\",\n value: \"Button 1\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Button\"),\n props: {\n children: {\n type: \"text\",\n value: \"Button 2\",\n },\n },\n },\n ],\n },\n },\n};\n\nexport const buttonMeta: ComponentMeta<ButtonProps> = {\n ...getComponentNameAndImportMeta(\"Button\", \"ButtonGroup\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n variant: {\n type: \"choice\",\n options: [\"ghost\", \"outline\", \"solid\", \"link\", \"unstyled\"],\n defaultValue: \"solid\",\n },\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n },\n iconSpacing: \"number\",\n isActive: {\n type: \"boolean\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isLoading: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Button\",\n },\n },\n },\n};\n","import { ChakraProvider, ChakraProviderProps } from \"@chakra-ui/react\";\nimport { GlobalContextMeta } from \"@plasmicapp/host\";\nimport registerGlobalContext from \"@plasmicapp/host/registerGlobalContext\";\nimport { Registerable } from \"./registerable\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const chakraProviderMeta: GlobalContextMeta<ChakraProviderProps> = {\n ...getComponentNameAndImportMeta(\"ChakraProvider\"),\n props: {\n theme: \"object\",\n },\n};\n\nexport function registerChakraProvider(\n loader?: Registerable,\n customChakraProviderMeta?: GlobalContextMeta<ChakraProviderProps>\n) {\n const doRegisterComponent: typeof registerGlobalContext = (...args) =>\n loader\n ? loader.registerGlobalContext(...args)\n : registerGlobalContext(...args);\n doRegisterComponent(\n ChakraProvider,\n customChakraProviderMeta ?? chakraProviderMeta\n );\n}\n","import { CheckboxGroupProps, CheckboxProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const checkboxMeta: ComponentMeta<CheckboxProps> = {\n ...getComponentNameAndImportMeta(\"Checkbox\", \"CheckboxGroup\"),\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"blue\",\n },\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n value: {\n type: \"string\",\n },\n spacing: {\n type: \"string\",\n defaultValue: \"0.5rem\",\n },\n isChecked: {\n type: \"boolean\",\n },\n isIndeterminate: {\n type: \"boolean\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isRequired: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Checkbox\",\n },\n },\n },\n};\n\nexport const checkboxGroupMeta: ComponentMeta<CheckboxGroupProps> = {\n ...getComponentNameAndImportMeta(\"CheckboxGroup\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n defaultValue: \"md\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"Checkbox\")],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Checkbox\"),\n props: {\n value: \"1\",\n children: {\n type: \"text\",\n value: \"Checkbox 1\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Checkbox\"),\n props: {\n value: \"2\",\n children: {\n type: \"text\",\n value: \"Checkbox 2\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Checkbox\"),\n props: {\n value: \"3\",\n children: {\n type: \"text\",\n value: \"Checkbox 3\",\n },\n },\n },\n ],\n },\n },\n};\n","import { CodeProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const codeMeta: ComponentMeta<CodeProps> = {\n ...getComponentNameAndImportMeta(\"Code\"),\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"gray\",\n },\n variant: {\n type: \"choice\",\n options: [\"solid\", \"subtle\", \"outline\"],\n defaultValue: \"subtle\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Code\",\n },\n ],\n },\n },\n};\n","import { DividerProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const dividerMeta: ComponentMeta<DividerProps> = {\n ...getComponentNameAndImportMeta(\"Divider\"),\n props: {\n orientation: {\n type: \"choice\",\n options: [\"vertical\", \"horizontal\"],\n },\n variant: {\n type: \"choice\",\n options: [\"solid\", \"dashed\"],\n },\n },\n};\n","import {\n FormControlProps,\n FormErrorMessageProps,\n FormLabelProps,\n HelpTextProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const formControlMeta: ComponentMeta<FormControlProps> = {\n ...getComponentNameAndImportMeta(\"FormControl\"),\n props: {\n label: \"string\",\n isDisabled: \"boolean\",\n isInvalid: \"boolean\",\n isRequired: \"boolean\",\n isreadOnly: \"boolean\",\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"FormLabel\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Input\"),\n },\n ],\n },\n },\n};\n\nexport const formLabelMeta: ComponentMeta<FormLabelProps> = {\n ...getComponentNameAndImportMeta(\"FormLabel\", \"FormControl\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Label\",\n styles: {\n display: \"inline-block\",\n width: \"auto\",\n },\n },\n },\n },\n};\n\nexport const formHelperTextMeta: ComponentMeta<HelpTextProps> = {\n ...getComponentNameAndImportMeta(\"FormHelperText\", \"FormControl\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"We'll never share your email.\",\n },\n },\n },\n};\n\nexport const formErrorMessageMeta: ComponentMeta<FormErrorMessageProps> = {\n ...getComponentNameAndImportMeta(\"FormErrorMessage\", \"FormControl\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"This is an error message.\",\n },\n },\n },\n};\n","import { HeadingProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const headingMeta: ComponentMeta<HeadingProps> = {\n ...getComponentNameAndImportMeta(\"Heading\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value:\n \"Basic text writing, including headings, body text, lists, and more.\",\n },\n },\n size: {\n type: \"choice\",\n options: [\"4xl\", \"3xl\", \"2xl\", \"xl\", \"lg\", \"md\", \"sm\", \"xs\"],\n defaultValue: \"xl\",\n },\n noOfLines: {\n type: \"number\",\n defaultValue: 1,\n },\n },\n};\n","import { HighlightProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const highlightMeta: ComponentMeta<HighlightProps> = {\n ...getComponentNameAndImportMeta(\"Highlight\"),\n props: {\n children: {\n displayName: \"text\",\n type: \"string\",\n defaultValue: \"With the Highlight component, you can spotlight words.\",\n },\n query: {\n type: \"array\",\n defaultValue: [\"Spotlight\", \"words\"],\n },\n styles: {\n type: \"object\",\n defaultValue: {\n backgroundColor: \"orange.100\",\n px: \"0.3em\",\n py: \"0.1em\",\n borderRadius: \"0.3em\",\n },\n },\n },\n};\n","import { ImageProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const imageMeta: ComponentMeta<ImageProps> = {\n ...getComponentNameAndImportMeta(\"Image\"),\n props: {\n src: {\n type: \"string\",\n defaultValue: \"https://bit.ly/naruto-sage\",\n },\n fallbackSrc: {\n type: \"string\",\n defaultValue: \"https://via.placeholder.com/150\",\n },\n alt: {\n type: \"string\",\n defaultValueHint: \"name of the image\",\n },\n loading: {\n type: \"choice\",\n options: [\"lazy\", \"eager\"],\n },\n },\n};\n","import { InputProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const inputMeta: ComponentMeta<InputProps> = {\n ...getComponentNameAndImportMeta(\"Input\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n variant: {\n type: \"choice\",\n options: [\"outline\", \"filled\", \"flushed\", \"unstyled\"],\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n isReadOnly: {\n type: \"boolean\",\n },\n isRequired: {\n type: \"boolean\",\n },\n errorBorderColor: {\n type: \"string\",\n defaultValue: \"red.500\",\n },\n focusBorderColor: {\n type: \"string\",\n defaultValue: \"blue.500\",\n },\n },\n};\n","import { Kbd, KbdProps } from \"@chakra-ui/react\";\nimport registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport { Registerable } from \"./registerable\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const kbdMeta: ComponentMeta<KbdProps> = {\n ...getComponentNameAndImportMeta(\"Kbd\", undefined, {\n displayName: \"Chakra-UI Keyboard Key\",\n }),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"⌘\",\n },\n ],\n },\n },\n};\n\nexport function registerKbd(\n loader?: Registerable,\n customKbdMeta?: ComponentMeta<KbdProps>\n) {\n const doRegisterComponent: typeof registerComponent = (...args) =>\n loader ? loader.registerComponent(...args) : registerComponent(...args);\n doRegisterComponent(Kbd, customKbdMeta ?? kbdMeta);\n}\n","import {\n CloseButtonProps,\n Modal as ChakraUIModal,\n ModalBodyProps,\n ModalContentProps,\n ModalFooterProps,\n ModalHeaderProps,\n ModalOverlayProps,\n ModalProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport React from \"react\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const modalMeta: ComponentMeta<ModalProps> = {\n ...getComponentNameAndImportMeta(\"Modal\"),\n props: {\n isOpen: {\n type: \"boolean\",\n defaultValue: true,\n },\n isCentered: {\n type: \"boolean\",\n defaultValue: false,\n },\n scrollBehavior: {\n type: \"choice\",\n options: [\"inside\", \"outside\"],\n defaultValue: \"outside\",\n description: `\n Where scroll behavior should originate.\n - If set to 'inside', scroll only occurs within the ModalBody.\n - If set to 'outside', the entire ModalContent will scroll within the viewport.\n `,\n },\n motionPreset: {\n type: \"choice\",\n options: [\"slideInBottom\", \"slideInRight\", \"scale\", \"none\"],\n defaultValue: \"scale\",\n },\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"ModalOverlay\"),\n getPlasmicComponentName(\"ModalContent\"),\n ],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"ModalOverlay\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"ModalContent\"),\n },\n ],\n },\n },\n};\n\nexport function Modal(props: ModalProps) {\n return (\n <ChakraUIModal {...props} onClose={props.onClose ?? (() => {})}>\n {props.children}\n </ChakraUIModal>\n );\n}\nexport const modalOverlayMeta: ComponentMeta<ModalOverlayProps> = {\n ...getComponentNameAndImportMeta(\"ModalOverlay\", \"Modal\"),\n props: {\n children: \"slot\",\n },\n};\n\nexport const modalContentMeta: ComponentMeta<ModalContentProps> = {\n ...getComponentNameAndImportMeta(\"ModalContent\", \"Modal\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"ModalHeader\"),\n getPlasmicComponentName(\"ModalCloseButton\"),\n getPlasmicComponentName(\"ModalBody\"),\n getPlasmicComponentName(\"ModalFooter\"),\n ],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"ModalHeader\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"ModalBody\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"ModalFooter\"),\n },\n ],\n },\n },\n};\n\nexport const modalHeaderMeta: ComponentMeta<ModalHeaderProps> = {\n ...getComponentNameAndImportMeta(\"ModalHeader\", \"ModalContent\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Modal Title\",\n },\n },\n },\n};\n\nconst LOREM_IPSUM_TEXT = `\n Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem\n Ipsum has been the industry's standard dummy text ever since the 1500s, when an\n unknown printer took a galley of type and scrambled it to make a type specimen book.\n It has survived not only five centuries, but also the leap into electronic typesetting,\n remaining essentially unchanged. It was popularised in the 1960s with the release of\n Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing\n software like Aldus PageMaker including versions of Lorem Ipsum.\n`;\n\nexport const modalBodyMeta: ComponentMeta<ModalBodyProps> = {\n ...getComponentNameAndImportMeta(\"ModalBody\", \"ModalContent\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: LOREM_IPSUM_TEXT,\n },\n },\n },\n};\n\nexport const modalFooterMeta: ComponentMeta<ModalFooterProps> = {\n ...getComponentNameAndImportMeta(\"ModalFooter\", \"ModalContent\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Modal Footer\",\n },\n },\n },\n};\n\nexport const modalCloseButtonMeta: ComponentMeta<CloseButtonProps> = {\n ...getComponentNameAndImportMeta(\"ModalCloseButton\", \"ModalContent\"),\n props: {\n isDisabled: \"boolean\",\n },\n};\n","import {\n NumberDecrementStepperProps,\n NumberIncrementStepperProps,\n NumberInputFieldProps,\n NumberInputProps,\n NumberInputStepperProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const numberInputMeta: ComponentMeta<NumberInputProps> = {\n ...getComponentNameAndImportMeta(\"NumberInput\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n variant: {\n type: \"choice\",\n options: [\"outline\", \"filled\", \"flushed\", \"unstyled\"],\n },\n inputMode: {\n type: \"choice\",\n options: [\n \"text\",\n \"search\",\n \"none\",\n \"tel\",\n \"url\",\n \"email\",\n \"numeric\",\n \"decimal\",\n ],\n },\n format: {\n type: \"string\",\n },\n step: {\n type: \"number\",\n },\n precision: {\n type: \"number\",\n },\n max: {\n type: \"number\",\n },\n min: {\n type: \"number\",\n },\n errorBorderColor: {\n type: \"string\",\n defaultValue: \"red.500\",\n },\n focusBorderColor: {\n type: \"string\",\n defaultValue: \"blue.500\",\n },\n allowMouseWheel: {\n type: \"boolean\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n isReadOnly: {\n type: \"boolean\",\n },\n isRequired: {\n type: \"boolean\",\n },\n\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"NumberInputField\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"NumberInputStepper\"),\n },\n ],\n },\n },\n};\n\nexport const numberInputStepperMeta: ComponentMeta<NumberInputStepperProps> = {\n ...getComponentNameAndImportMeta(\"NumberInputStepper\", \"NumberInput\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"NumberIncrementStepper\"),\n getPlasmicComponentName(\"NumberDecrementStepper\"),\n ],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"NumberIncrementStepper\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"NumberDecrementStepper\"),\n },\n ],\n },\n },\n};\n\nexport const numberDecrementStepperMeta: ComponentMeta<NumberDecrementStepperProps> = {\n ...getComponentNameAndImportMeta(\n \"NumberDecrementStepper\",\n \"NumberInputStepper\"\n ),\n props: {},\n};\n\nexport const numberIncrementStepperMeta: ComponentMeta<NumberIncrementStepperProps> = {\n ...getComponentNameAndImportMeta(\n \"NumberIncrementStepper\",\n \"NumberInputStepper\"\n ),\n props: {},\n};\n\nexport const numberInputFieldMeta: ComponentMeta<NumberInputFieldProps> = {\n ...getComponentNameAndImportMeta(\"NumberInputField\", \"NumberInput\"),\n props: {},\n};\n","import { PinInputFieldProps, PinInputProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const pinInputMeta: ComponentMeta<PinInputProps> = {\n ...getComponentNameAndImportMeta(\"PinInput\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n type: {\n type: \"choice\",\n options: [\"number\", \"alphanumeric\"],\n },\n variant: {\n type: \"choice\",\n options: [\"outline\", \"filled\", \"flushed\", \"unstyled\"],\n },\n mask: {\n type: \"boolean\",\n description:\n \"Whether the pin input's value should be masked like 'type=password'.\",\n },\n manageFocus: {\n type: \"boolean\",\n defaultValue: true,\n description:\n \"Whether the pin input should move automatically to the next input once filled.\",\n },\n autoFocus: {\n type: \"boolean\",\n description: \"Whether the pin input should be focused on mount.\",\n },\n opt: {\n type: \"boolean\",\n description: \"autocomplete='one-time-code'\",\n },\n errorBorderColor: {\n type: \"string\",\n defaultValue: \"red.500\",\n },\n focusBorderColor: {\n type: \"string\",\n defaultValue: \"blue.500\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"PinInputField\")],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PinInputField\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PinInputField\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PinInputField\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PinInputField\"),\n },\n ],\n },\n },\n};\n\nexport const pinInputFieldMeta: ComponentMeta<PinInputFieldProps> = {\n ...getComponentNameAndImportMeta(\"PinInputField\", \"PinInput\"),\n props: {},\n};\n","import {\n PopoverArrowProps,\n PopoverBodyProps,\n PopoverCloseButtonProps,\n PopoverContentProps,\n PopoverHeaderProps,\n PopoverProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const popoverMeta: ComponentMeta<PopoverProps> = {\n ...getComponentNameAndImportMeta(\"Popover\"),\n props: {\n gutter: {\n type: \"number\",\n defaultValue: 8,\n },\n arrowPadding: \"number\",\n arrowShadowColor: {\n type: \"string\",\n defaultValue: \"rgba(0, 0, 0, 0.15)\",\n },\n arrowSize: {\n type: \"number\",\n },\n offset: {\n type: \"array\",\n defaultValue: [0, 0],\n },\n closeDelay: \"number\",\n orientation: {\n type: \"choice\",\n options: [\"horizontal\", \"vertical\"],\n },\n placement: {\n type: \"choice\",\n options: [\"top\", \"bottom\", \"left\", \"right\"],\n defaultValue: \"bottom\",\n },\n direction: {\n type: \"choice\",\n options: [\"ltr\", \"rtl\"],\n defaultValue: \"ltr\",\n },\n trigger: {\n type: \"choice\",\n options: [\"click\", \"hover\"],\n defaultValue: \"click\",\n },\n isLazy: {\n type: \"boolean\",\n },\n isOpen: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverTrigger\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverContent\"),\n },\n ],\n },\n },\n};\n\nexport const popoverContentMeta: ComponentMeta<PopoverContentProps> = {\n ...getComponentNameAndImportMeta(\"PopoverContent\", \"Popover\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverArrow\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverCloseButton\"),\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverHeader\"),\n props: {\n children: {\n type: \"text\",\n value: \"Confirmation!\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"PopoverBody\"),\n props: {\n children: {\n type: \"text\",\n value: \"Are you sure you want to have that milkshake?\",\n },\n },\n },\n ],\n },\n },\n};\n\nexport const popoverArrowMeta: ComponentMeta<PopoverArrowProps> = {\n ...getComponentNameAndImportMeta(\"PopoverArrow\", \"PopoverContent\"),\n props: {},\n};\n\nexport const popoverCloseButtonMeta: ComponentMeta<PopoverCloseButtonProps> = {\n ...getComponentNameAndImportMeta(\"PopoverCloseButton\", \"PopoverContent\"),\n props: {},\n};\n\nexport const popoverHeaderMeta: ComponentMeta<PopoverHeaderProps> = {\n ...getComponentNameAndImportMeta(\"PopoverHeader\", \"PopoverContent\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Confirmation!\",\n },\n },\n },\n};\n\nexport const popoverBodyMeta: ComponentMeta<PopoverBodyProps> = {\n ...getComponentNameAndImportMeta(\"PopoverBody\", \"PopoverContent\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Are you sure you want to have that milkshake?\",\n },\n },\n },\n};\n\nexport const popoverTriggerMeta: ComponentMeta<PopoverTriggerProps> = {\n ...getComponentNameAndImportMeta(\"PopoverTrigger\", \"Popover\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"Button\"),\n props: {\n children: {\n type: \"text\",\n value: \"Trigger\",\n },\n },\n },\n },\n },\n};\n\nexport interface PopoverTriggerProps {\n children: React.ReactNode;\n}\n","import { ProgressProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const progressMeta: ComponentMeta<ProgressProps> = {\n ...getComponentNameAndImportMeta(\"Progress\"),\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"blue\",\n },\n size: {\n type: \"choice\",\n options: [\"xs\", \"sm\", \"md\", \"lg\"],\n defaultValue: \"md\",\n },\n max: {\n type: \"number\",\n defaultValue: 100,\n },\n min: {\n type: \"number\",\n defaultValue: 0,\n },\n value: \"number\",\n\n isIndeterminate: {\n type: \"boolean\",\n },\n hasStripe: {\n type: \"boolean\",\n },\n isAnimated: {\n type: \"boolean\",\n hidden: (props) => !props.hasStripe,\n },\n },\n};\n","import { RadioGroupProps, RadioProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const radioGroupMeta: ComponentMeta<RadioGroupProps> = {\n ...getComponentNameAndImportMeta(\"RadioGroup\"),\n props: {\n value: {\n type: \"string\",\n },\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n isReadOnly: {\n type: \"boolean\",\n },\n isRequired: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"hbox\",\n\n styles: {\n gap: \"12px\",\n },\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Radio\"),\n props: { value: \"1\", children: { type: \"text\", value: \"Radio 1\" } },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Radio\"),\n props: { value: \"2\", children: { type: \"text\", value: \"Radio 2\" } },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Radio\"),\n props: { value: \"3\", children: { type: \"text\", value: \"Radio 3\" } },\n },\n ],\n },\n },\n },\n};\n\nexport const radioMeta: ComponentMeta<RadioProps> = {\n ...getComponentNameAndImportMeta(\"Radio\", \"RadioGroup\"),\n props: {\n value: {\n type: \"string\",\n },\n size: {\n type: \"choice\",\n options: [\"xl\", \"sm\", \"md\", \"lg\"],\n },\n spacing: {\n type: \"string\",\n defaultValue: \"0.5rem\",\n },\n isChecked: {\n type: \"boolean\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n isReadOnly: {\n type: \"boolean\",\n },\n isRequired: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Radio\",\n },\n ],\n },\n },\n};\n","import { SelectProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport React from \"react\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const selectMeta: ComponentMeta<SelectProps> = {\n ...getComponentNameAndImportMeta(\"Select\"),\n props: {\n size: {\n type: \"choice\",\n options: [\"lg\", \"md\", \"sm\", \"xs\"],\n defaultValue: \"md\",\n },\n variant: {\n type: \"choice\",\n options: [\"outline\", \"filled\", \"flushed\", \"unstyled\"],\n defaultValue: \"outline\",\n },\n placeholder: {\n type: \"string\",\n },\n errorBorderColor: {\n type: \"string\",\n defaultValueHint: \"red.500\",\n },\n isDisabled: {\n type: \"boolean\",\n },\n isInvalid: {\n type: \"boolean\",\n },\n isReadOnly: {\n type: \"boolean\",\n },\n isRequred: {\n type: \"boolean\",\n },\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Option\"),\n props: {\n children: {\n type: \"text\",\n value: \"Option 01\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Option\"),\n props: {\n children: {\n type: \"text\",\n value: \"Option 02\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Option\"),\n props: {\n children: {\n type: \"text\",\n value: \"Option 03\",\n },\n },\n },\n ],\n },\n },\n};\n\nexport interface OptionProps {\n value: string;\n className?: string;\n children: any;\n}\n\nexport function Option(props: OptionProps) {\n const { value, className, children } = props;\n return (\n <option className={className} value={value}>\n {children}\n </option>\n );\n}\n\nexport const optionMeta: ComponentMeta<OptionProps> = {\n ...getComponentNameAndImportMeta(\"Option\", \"Select\", {\n importPath: \"@plasmicpkgs/plasmic-chakra-ui\",\n }),\n props: {\n value: \"string\",\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Option\",\n },\n },\n },\n};\n","import {\n StatArrowProps,\n StatHelpTextProps,\n StatLabelProps,\n StatNumberProps,\n StatProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const statMeta: ComponentMeta<StatProps> = {\n ...getComponentNameAndImportMeta(\"Stat\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"StatLabel\"),\n props: { children: { type: \"text\", value: \"Collected Fees\" } },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"StatNumber\"),\n props: { children: { type: \"text\", value: \"£345,670\" } },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"StatHelpText\"),\n props: {\n children: {\n type: \"hbox\",\n styles: {\n alignItems: \"center\",\n padding: \"0px\",\n },\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"StatArrow\"),\n props: { type: \"increase\" },\n },\n { type: \"text\", value: \"Last 7 days\" },\n ],\n },\n },\n },\n ],\n },\n },\n};\n\nexport const statHelpTextMeta: ComponentMeta<StatHelpTextProps> = {\n ...getComponentNameAndImportMeta(\"StatHelpText\", \"Stat\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"StatHelpText\",\n },\n ],\n },\n },\n};\n\nexport const statArrowMeta: ComponentMeta<StatArrowProps> = {\n ...getComponentNameAndImportMeta(\"StatArrow\", \"Stat\"),\n props: {\n type: {\n type: \"choice\",\n options: [\"increase\", \"decrease\"],\n },\n },\n};\n\nexport const statNumberMeta: ComponentMeta<StatNumberProps> = {\n ...getComponentNameAndImportMeta(\"StatNumber\", \"Stat\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"£345,670\",\n },\n ],\n },\n },\n};\n\nexport const statLabelMeta: ComponentMeta<StatLabelProps> = {\n ...getComponentNameAndImportMeta(\"StatLabel\", \"Stat\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"StatLabel\",\n },\n ],\n },\n },\n};\n","import { SwitchProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const switchMeta: ComponentMeta<SwitchProps> = {\n ...getComponentNameAndImportMeta(\"Switch\"),\n props: {\n isChecked: \"boolean\",\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"blue\",\n },\n size: {\n type: \"choice\",\n options: [\"sm\", \"md\", \"lg\"],\n defaultValue: \"md\",\n },\n spacing: {\n type: \"string\",\n defaultValue: \"0.5rem\",\n },\n id: \"string\",\n isDisabled: \"boolean\",\n isInvalid: \"boolean\",\n isReadOnly: \"boolean\",\n isRequired: \"boolean\",\n },\n};\n","import {\n TableBodyProps,\n TableCaptionProps,\n TableCellProps,\n TableColumnHeaderProps,\n TableContainerProps,\n TableFooterProps,\n TableHeadProps,\n TableProps,\n TableRowProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const tableMeta: ComponentMeta<TableProps> = {\n ...getComponentNameAndImportMeta(\"Table\", \"TableContainer\"),\n props: {\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n defaultValue: \"gray\",\n },\n size: {\n type: \"choice\",\n options: [\"sm\", \"md\", \"lg\"],\n defaultValue: \"md\",\n },\n variant: {\n type: \"choice\",\n options: [\"simple\", \"striped\", \"unstyled\"],\n defaultValue: \"simple\",\n },\n children: {\n type: \"slot\",\n },\n },\n};\n\nexport const tableCaptionMeta: ComponentMeta<TableCaptionProps> = {\n ...getComponentNameAndImportMeta(\"TableCaption\", \"Table\"),\n props: {\n placement: {\n type: \"choice\",\n options: [\"top\", \"bottom\"],\n defaultValue: \"bottom\",\n },\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Imperial to metric conversion factors\",\n },\n },\n },\n};\n\nexport const theadMeta: ComponentMeta<TableHeadProps> = {\n ...getComponentNameAndImportMeta(\"Thead\", \"Table\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"Th\"),\n getPlasmicComponentName(\"Tr\"),\n ],\n },\n },\n};\n\nexport const tbodyMeta: ComponentMeta<TableBodyProps> = {\n ...getComponentNameAndImportMeta(\"Tbody\", \"Table\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"Td\"),\n getPlasmicComponentName(\"Tr\"),\n ],\n },\n },\n};\n\nexport const trMeta: ComponentMeta<TableRowProps> = {\n ...getComponentNameAndImportMeta(\"Tr\", \"Table\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"Td\"),\n getPlasmicComponentName(\"Th\"),\n ],\n },\n },\n};\n\nexport const tdMeta: ComponentMeta<TableCellProps> = {\n ...getComponentNameAndImportMeta(\"Td\", \"Tr\"),\n props: {\n isNumeric: \"boolean\",\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Table Cell\",\n },\n },\n },\n};\n\nexport const thMeta: ComponentMeta<TableColumnHeaderProps> = {\n ...getComponentNameAndImportMeta(\"Th\", \"Tr\"),\n props: {\n isNumeric: \"boolean\",\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Table Cell\",\n },\n },\n },\n};\n\nexport const tableContainerMeta: ComponentMeta<TableContainerProps> = {\n ...getComponentNameAndImportMeta(\"TableContainer\"),\n props: {\n overflowX: {\n type: \"choice\",\n options: [\"auto\", \"scroll\", \"hidden\", \"visible\"],\n },\n overflowY: {\n type: \"choice\",\n options: [\"auto\", \"scroll\", \"hidden\", \"visible\"],\n },\n whiteSpace: {\n type: \"choice\",\n options: [\"normal\", \"nowrap\", \"pre\", \"pre-line\", \"pre-wrap\"],\n },\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"Table\")],\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"Table\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Thead\"),\n props: {\n children: {\n type: \"component\",\n name: getPlasmicComponentName(\"Tr\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Th\"),\n props: {\n children: {\n type: \"text\",\n value: \"TO CONVERT\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Th\"),\n props: {\n children: {\n type: \"text\",\n value: \"INTO\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Th\"),\n props: {\n children: {\n type: \"text\",\n value: \"MULTIPLY BY\",\n },\n },\n },\n ],\n },\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tbody\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tr\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Td\"),\n props: {\n children: {\n type: \"text\",\n value: \"inches\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Td\"),\n props: {\n children: {\n type: \"text\",\n value: \"millimetres (mm)\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Td\"),\n props: {\n children: {\n type: \"text\",\n value: \"25.4\",\n },\n },\n },\n ],\n },\n },\n ],\n },\n },\n ],\n },\n },\n },\n },\n};\n\nexport const tfootMeta: ComponentMeta<TableFooterProps> = {\n ...getComponentNameAndImportMeta(\"Tfoot\", \"Table\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tr\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Th\"),\n props: {\n children: {\n type: \"text\",\n value: \"Name\",\n },\n },\n },\n ],\n },\n },\n ],\n },\n },\n};\n","import {\n TabListProps,\n TabPanelProps,\n TabPanelsProps,\n TabProps,\n TabsProps,\n} from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const tabListMeta: ComponentMeta<TabListProps> = {\n ...getComponentNameAndImportMeta(\"TabList\", \"Tabs\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"Tab\")],\n },\n },\n};\n\nexport const tabsMeta: ComponentMeta<TabsProps> = {\n ...getComponentNameAndImportMeta(\"Tabs\"),\n props: {\n align: {\n type: \"choice\",\n options: [\"start\", \"center\", \"end\"],\n },\n colorScheme: {\n type: \"choice\",\n options: [\n \"whiteAlpha\",\n \"blackAlpha\",\n \"gray\",\n \"red\",\n \"orange\",\n \"yellow\",\n \"green\",\n \"teal\",\n \"blue\",\n \"cyan\",\n \"purple\",\n \"pink\",\n \"linkedin\",\n \"facebook\",\n \"messenger\",\n \"whatsapp\",\n \"twitter\",\n \"telegram\",\n ],\n },\n orientation: {\n type: \"choice\",\n options: [\"horizontal\", \"vertical\"],\n },\n size: {\n type: \"choice\",\n options: [\"sm\", \"md\", \"lg\"],\n },\n variant: {\n type: \"choice\",\n options: [\n \"line\",\n \"enclosed\",\n \"enclosed-colored\",\n \"soft-rounded\",\n \"solid-rounded\",\n \"unstyled\",\n ],\n defaultValue: \"line\",\n },\n direction: {\n type: \"choice\",\n options: [\"ltr\", \"rtl\"],\n },\n index: {\n type: \"number\",\n },\n isFitted: \"boolean\",\n isLazy: \"boolean\",\n isManual: \"boolean\",\n children: {\n type: \"slot\",\n allowedComponents: [\n getPlasmicComponentName(\"TabList\"),\n getPlasmicComponentName(\"TabPanels\"),\n ],\n defaultValue: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"TabList\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tab\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 1\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tab\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 2\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"Tab\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 3\",\n },\n },\n },\n ],\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"TabPanels\"),\n props: {\n children: [\n {\n type: \"component\",\n name: getPlasmicComponentName(\"TabPanel\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 1's Panel Content\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"TabPanel\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 2's Panel Content\",\n },\n },\n },\n {\n type: \"component\",\n name: getPlasmicComponentName(\"TabPanel\"),\n props: {\n children: {\n type: \"text\",\n value: \"Tab 3's Panel Content\",\n },\n },\n },\n ],\n },\n },\n ],\n },\n },\n};\n\nexport const tabMeta: ComponentMeta<TabProps> = {\n ...getComponentNameAndImportMeta(\"Tab\", \"TabList\"),\n props: {\n id: \"string\",\n isDisabled: \"boolean\",\n panelId: \"string\",\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Tab\",\n },\n },\n },\n};\n\nexport const tabPanelsMeta: ComponentMeta<TabPanelsProps> = {\n ...getComponentNameAndImportMeta(\"TabPanels\", \"Tabs\"),\n props: {\n children: {\n type: \"slot\",\n allowedComponents: [getPlasmicComponentName(\"TabPanel\")],\n },\n },\n};\n\nexport const tabPanelMeta: ComponentMeta<TabPanelProps> = {\n ...getComponentNameAndImportMeta(\"TabPanel\", \"TabPanels\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"text\",\n value: \"Tab Panel Content\",\n },\n },\n },\n};\n","import { TextProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const textMeta: ComponentMeta<TextProps> = {\n ...getComponentNameAndImportMeta(\"Text\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: [\n {\n type: \"text\",\n value: \"Some Text\",\n },\n ],\n },\n },\n};\n","import { ToastProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport { getComponentNameAndImportMeta } from \"./utils\";\n\nexport const toastMeta: ComponentMeta<ToastProps> = {\n ...getComponentNameAndImportMeta(\"Toast\"),\n props: {\n title: {\n type: \"string\",\n defaultValue: \"Toast Title\",\n },\n description: {\n type: \"string\",\n defaultValue: \"Toast description\",\n },\n variant: {\n type: \"choice\",\n options: [\"solid\", \"subtle\", \"left-accent\", \"top-accent\"],\n },\n duration: {\n type: \"number\",\n defaultValue: 5000,\n },\n isClosable: {\n type: \"boolean\",\n },\n position: {\n type: \"choice\",\n options: [\n \"top\",\n \"top-right\",\n \"top-left\",\n \"bottom\",\n \"bottom-right\",\n \"bottom-left\",\n ],\n },\n status: {\n type: \"choice\",\n options: [\"info\", \"success\", \"warning\", \"error\", \"loading\"],\n },\n },\n};\n","import { TooltipProps } from \"@chakra-ui/react\";\nimport { ComponentMeta } from \"@plasmicapp/host/registerComponent\";\nimport {\n getComponentNameAndImportMeta,\n getPlasmicComponentName,\n} from \"./utils\";\n\nexport const tooltipMeta: ComponentMeta<TooltipProps> = {\n ...getComponentNameAndImportMeta(\"Tooltip\"),\n props: {\n children: {\n type: \"slot\",\n defaultValue: {\n type: \"component\",\n name: getPlasmicComponentName(\"Button\"),\n props: {\n children: {\n type: \"text\",\n value: \"Hover me\",\n },\n },\n },\n },\n label: {\n type: \"string\",\n defaultValue: \"Hi! I am a tooltip\",\n },\n placement: {\n type: \"choice\",\n options: [\n \"auto\",\n \"auto-start\",\n \"auto-end\",\n \"top\",\n \"top-start\",\n \"top-end\",\n \"bottom\",\n \"bottom-start\",\n \"bottom-end\",\n \"right\",\n \"right-start\",\n \"right-end\",\n \"left\",\n \"left-start\",\n \"left-end\",\n ],\n defaultValue: \"bottom\",\n },\n hasArrow: \"boolean\",\n arrowSize: {\n type: \"number\",\n defaultValue: 10,\n },\n arrowShadowColor: {\n type: \"string\",\n },\n arrowPadding: {\n type: \"number\",\n defaultValue: 8,\n },\n defaultIsOpen: \"boolean\",\n\n isDisabled: \"boolean\",\n offset: {\n type: \"array\",\n defaultValue: [0, 0],\n },\n closeOnClick: {\n type: \"boolean\",\n defaultValue: true,\n },\n closeDelay: {\n type: \"number\",\n defaultValue: 0,\n },\n },\n};\n","import {\n Accordion,\n AccordionButton,\n AccordionIcon,\n AccordionItem,\n AccordionPanel,\n AspectRatio,\n Avatar,\n AvatarBadge,\n AvatarGroup,\n Badge,\n Breadcrumb,\n BreadcrumbItem,\n BreadcrumbLink,\n BreadcrumbSeparator,\n Button,\n ButtonGroup,\n Checkbox,\n CheckboxGroup,\n Code,\n Divider,\n FormControl,\n FormErrorMessage,\n FormHelperText,\n FormLabel,\n Heading,\n Highlight,\n Image,\n Input,\n Kbd,\n ModalBody,\n ModalCloseButton,\n ModalContent,\n ModalFooter,\n ModalHeader,\n ModalOverlay,\n NumberDecrementStepper,\n NumberIncrementStepper,\n NumberInput,\n NumberInputField,\n NumberInputStepper,\n PinInput,\n PinInputField,\n Popover,\n PopoverArrow,\n PopoverBody,\n PopoverCloseButton,\n PopoverContent,\n PopoverHeader,\n PopoverTrigger,\n Progress,\n Radio,\n RadioGroup,\n Select,\n Stat,\n StatArrow,\n StatHelpText,\n StatLabel,\n StatNumber,\n Switch,\n Tab,\n Table,\n TableCaption,\n TableContainer,\n TabList,\n TabPanel,\n TabPanels,\n Tabs,\n Tbody,\n Td,\n Text,\n Tfoot,\n Th,\n Thead,\n Toast,\n Tooltip,\n Tr,\n} from \"@chakra-ui/react\";\nimport { Registerable } from \"./registerable\";\n\nimport registerComponent, {\n ComponentMeta,\n} from \"@plasmicapp/host/registerComponent\";\nimport {\n accordionButtonMeta,\n accordionIconMeta,\n accordionItemMeta,\n accordionMeta,\n accordionPanelMeta,\n} from \"./registerAccordion\";\nimport { aspectRatioMeta } from \"./registerAspectRatio\";\nimport { avatarBadgeMeta, avatarGroupMeta, avatarMeta } from \"./registerAvatar\";\nimport { badgeMeta } from \"./registerBadge\";\nimport {\n breadcrumbItemMeta,\n breadcrumbLinkMeta,\n breadcrumbMeta,\n breadcrumbSeparatorMeta,\n} from \"./registerBreadcrumb\";\nimport { buttonGroupMeta, buttonMeta } from \"./registerButton\";\nimport { registerChakraProvider } from \"./registerChakraProvider\";\nimport { checkboxGroupMeta, checkboxMeta } from \"./registerCheckBox\";\nimport { codeMeta } from \"./registerCode\";\nimport { dividerMeta } from \"./registerDivider\";\nimport {\n formControlMeta,\n formErrorMessageMeta,\n formHelperTextMeta,\n formLabelMeta,\n} from \"./registerFormControl\";\nimport { headingMeta } from \"./registerHeading\";\nimport { highlightMeta } from \"./registerHighlight\";\nimport { imageMeta } from \"./registerImage\";\nimport { inputMeta } from \"./registerInput\";\nimport { kbdMeta } from \"./registerKbd\";\nimport {\n Modal,\n modalBodyMeta,\n modalCloseButtonMeta,\n modalContentMeta,\n modalFooterMeta,\n modalHeaderMeta,\n modalMeta,\n modalOverlayMeta,\n} from \"./registerModal\";\nimport {\n numberDecrementStepperMeta,\n numberIncrementStepperMeta,\n numberInputFieldMeta,\n numberInputMeta,\n numberInputStepperMeta,\n} from \"./registerNumberInput\";\nimport { pinInputFieldMeta, pinInputMeta } from \"./registerPinInput\";\nimport {\n popoverArrowMeta,\n popoverBodyMeta,\n popoverCloseButtonMeta,\n popoverContentMeta,\n popoverHeaderMeta,\n popoverMeta,\n popoverTriggerMeta,\n} from \"./registerPopover\";\nimport { progressMeta } from \"./registerProgress\";\nimport { radioGroupMeta, radioMeta } from \"./registerRadio\";\nimport { Option, optionMeta, selectMeta } from \"./registerSelect\";\nimport {\n statArrowMeta,\n statHelpTextMeta,\n statLabelMeta,\n statMeta,\n statNumberMeta,\n} from \"./registerStat\";\nimport { switchMeta } from \"./registerSwitch\";\nimport {\n tableCaptionMeta,\n tableContainerMeta,\n tableMeta,\n tbodyMeta,\n tdMeta,\n tfootMeta,\n theadMeta,\n thMeta,\n trMeta,\n} from \"./registerTable\";\nimport {\n tabListMeta,\n tabMeta,\n tabPanelMeta,\n tabPanelsMeta,\n tabsMeta,\n} from \"./registerTabs\";\nimport { textMeta } from \"./registerText\";\nimport { toastMeta } from \"./registerToast\";\nimport { tooltipMeta } from \"./registerTooltip\";\n\nexport * from \"./registerable\";\nexport * from \"./registerAccordion\";\nexport * from \"./registerAspectRatio\";\nexport * from \"./registerAvatar\";\nexport * from \"./registerBadge\";\nexport * from \"./registerBreadcrumb\";\nexport * from \"./registerButton\";\nexport * from \"./registerChakraProvider\";\nexport * from \"./registerCheckBox\";\nexport * from \"./registerCode\";\nexport * from \"./registerDivider\";\nexport * from \"./registerFormControl\";\nexport * from \"./registerHeading\";\nexport * from \"./registerHighlight\";\nexport * from \"./registerImage\";\nexport * from \"./registerInput\";\nexport * from \"./registerKbd\";\nexport * from \"./registerNumberInput\";\nexport * from \"./registerPinInput\";\nexport * from \"./registerPopover\";\nexport * from \"./registerProgress\";\nexport * from \"./registerRadio\";\nexport * from \"./registerSelect\";\nexport * from \"./registerStat\";\nexport * from \"./registerSwitch\";\nexport * from \"./registerTable\";\nexport * from \"./registerTabs\";\nexport * from \"./registerText\";\nexport * from \"./registerToast\";\nexport * from \"./registerTooltip\";\n\nexport function registerAll(loader?: Registerable) {\n const _registerComponent = <T extends React.ComponentType<any>>(\n Component: T,\n defaultMeta: ComponentMeta<React.ComponentProps<T>>\n ) => {\n if (loader) {\n loader.registerComponent(Component, defaultMeta);\n } else {\n registerComponent(Component, defaultMeta);\n }\n };\n registerChakraProvider(loader);\n\n _registerComponent(Accordion, accordionMeta);\n _registerComponent(AccordionButton, accordionButtonMeta);\n _registerComponent(AccordionIcon, accordionIconMeta);\n _registerComponent(AccordionItem, accordionItemMeta);\n _registerComponent(AccordionPanel, accordionPanelMeta);\n _registerComponent(AspectRatio, aspectRatioMeta);\n _registerComponent(Avatar, avatarMeta);\n _registerComponent(AvatarBadge, avatarBadgeMeta);\n _registerComponent(AvatarGroup, avatarGroupMeta);\n _registerComponent(Badge, badgeMeta);\n _registerComponent(Breadcrumb, breadcrumbMeta);\n _registerComponent(BreadcrumbItem, breadcrumbItemMeta);\n _registerComponent(BreadcrumbLink, breadcrumbLinkMeta);\n _registerComponent(BreadcrumbSeparator, breadcrumbSeparatorMeta);\n _registerComponent(Button, buttonMeta);\n _registerComponent(ButtonGroup, buttonGroupMeta);\n _registerComponent(Checkbox, checkboxMeta);\n _registerComponent(CheckboxGroup, checkboxGroupMeta);\n _registerComponent(Code, codeMeta);\n _registerComponent(Divider, dividerMeta);\n _registerComponent(FormControl, formControlMeta);\n _registerComponent(FormErrorMessage, formErrorMessageMeta);\n _registerComponent(FormHelperText, formHelperTextMeta);\n _registerComponent(FormLabel, formLabelMeta);\n _registerComponent(Heading, headingMeta);\n _registerComponent(Highlight, highlightMeta);\n _registerComponent(Image, imageMeta);\n _registerComponent(Input, inputMeta);\n _registerComponent(Kbd, kbdMeta);\n _registerComponent(Modal, modalMeta);\n _registerComponent(ModalOverlay, modalOverlayMeta);\n _registerComponent(ModalContent, modalContentMeta);\n _registerComponent(ModalHeader, modalHeaderMeta);\n _registerComponent(ModalBody, modalBodyMeta);\n _registerComponent(ModalFooter, modalFooterMeta);\n _registerComponent(ModalCloseButton, modalCloseButtonMeta);\n _registerComponent(NumberInput, numberInputMeta);\n _registerComponent(NumberDecrementStepper, numberDecrementStepperMeta);\n _registerComponent(NumberIncrementStepper, numberIncrementStepperMeta);\n _registerComponent(NumberInputField, numberInputFieldMeta);\n _registerComponent(NumberInputStepper, numberInputStepperMeta);\n _registerComponent(Option, optionMeta);\n _registerComponent(Select, selectMeta);\n _registerComponent(PinInput, pinInputMeta);\n _registerComponent(PinInputField, pinInputFieldMeta);\n _registerComponent(Popover, popoverMeta);\n _registerComponent(PopoverBody, popoverBodyMeta);\n _registerComponent(PopoverArrow, popoverArrowMeta);\n _registerComponent(PopoverCloseButton, popoverCloseButtonMeta);\n _registerComponent(PopoverContent, popoverContentMeta);\n _registerComponent(PopoverHeader, popoverHeaderMeta);\n _registerComponent(PopoverTrigger, popoverTriggerMeta);\n _registerComponent(Progress, progressMeta);\n _registerComponent(Radio, radioMeta);\n _registerComponent(RadioGroup, radioGroupMeta);\n _registerComponent(Stat, statMeta);\n _registerComponent(StatArrow, statArrowMeta);\n _registerComponent(StatHelpText, statHelpTextMeta);\n _registerComponent(StatLabel, statLabelMeta);\n _registerComponent(StatNumber, statNumberMeta);\n _registerComponent(Switch, switchMeta);\n _registerComponent(Table, tableMeta);\n _registerComponent(TableCaption, tableCaptionMeta);\n _registerComponent(Tbody, tbodyMeta);\n _registerComponent(Thead, theadMeta);\n _registerComponent(Tfoot, tfootMeta);\n _registerComponent(Td, tdMeta);\n _registerComponent(Th, thMeta);\n _registerComponent(Tr, trMeta);\n _registerComponent(TableContainer, tableContainerMeta);\n _registerComponent(Text, textMeta);\n _registerComponent(Toast, toastMeta);\n _registerComponent(Tooltip, tooltipMeta);\n _registerComponent(TabList, tabListMeta);\n _registerComponent(Tab, tabMeta);\n _registerComponent(Tabs, tabsMeta);\n _registerComponent(TabPanel, tabPanelMeta);\n _registerComponent(TabPanels, tabPanelsMeta);\n}\n"],"names":["getPlasmicComponentName","componentName","getDisplayComponentName","getComponentNameAndImportMeta","parentComponentName","opts","name","displayName","importPath","importName","accordionMeta","props","allowMultiple","type","description","allowToggle","defaultIndex","reduceMotion","children","allowedComponents","defaultValue","accordionItemMeta","id","isDisabled","isFocusable","accordionButtonMeta","_expanded","defaultValueHint","bg","color","value","styles","textAlign","accordionPanelMeta","accordionIconMeta","aspectRatioMeta","defaultStyles","width","ratio","avatarBadgeMeta","boxSize","borderColor","avatarMeta","src","size","options","loading","showBorder","hidePlaceholder","avatarGroupMeta","max","spacing","badgeMeta","colorScheme","variant","breadcrumbItemMeta","isCurrentPage","isLastChild","seperator","breadcrumbLinkMeta","href","breadcrumbMeta","separator","breadcrumbSeparatorMeta","buttonGroupMeta","isAttached","buttonMeta","iconSpacing","isActive","isLoading","chakraProviderMeta","theme","registerChakraProvider","loader","customChakraProviderMeta","registerGlobalContext","doRegisterComponent","ChakraProvider","checkboxMeta","isChecked","isIndeterminate","isRequired","isInvalid","checkboxGroupMeta","codeMeta","dividerMeta","orientation","formControlMeta","label","isreadOnly","formLabelMeta","display","formHelperTextMeta","formErrorMessageMeta","headingMeta","noOfLines","highlightMeta","query","backgroundColor","px","py","borderRadius","imageMeta","fallbackSrc","alt","inputMeta","isReadOnly","errorBorderColor","focusBorderColor","kbdMeta","undefined","modalMeta","isOpen","isCentered","scrollBehavior","motionPreset","Modal","React","ChakraUIModal","onClose","modalOverlayMeta","modalContentMeta","modalHeaderMeta","modalBodyMeta","modalFooterMeta","modalCloseButtonMeta","numberInputMeta","inputMode","format","step","precision","min","allowMouseWheel","numberInputStepperMeta","numberDecrementStepperMeta","numberIncrementStepperMeta","numberInputFieldMeta","pinInputMeta","mask","manageFocus","autoFocus","opt","pinInputFieldMeta","popoverMeta","gutter","arrowPadding","arrowShadowColor","arrowSize","offset","closeDelay","placement","direction","trigger","isLazy","popoverContentMeta","popoverArrowMeta","popoverCloseButtonMeta","popoverHeaderMeta","popoverBodyMeta","popoverTriggerMeta","progressMeta","hasStripe","isAnimated","hidden","radioGroupMeta","gap","radioMeta","selectMeta","placeholder","isRequred","Option","className","optionMeta","statMeta","alignItems","padding","statHelpTextMeta","statArrowMeta","statNumberMeta","statLabelMeta","switchMeta","tableMeta","tableCaptionMeta","theadMeta","tbodyMeta","trMeta","tdMeta","isNumeric","thMeta","tableContainerMeta","overflowX","overflowY","whiteSpace","tfootMeta","tabListMeta","tabsMeta","align","index","isFitted","isManual","tabMeta","panelId","tabPanelsMeta","tabPanelMeta","textMeta","toastMeta","title","duration","isClosable","position","status","tooltipMeta","hasArrow","defaultIsOpen","closeOnClick","_registerComponent","Component","defaultMeta","registerComponent","Accordion","AccordionButton","AccordionIcon","AccordionItem","AccordionPanel","AspectRatio","Avatar","AvatarBadge","AvatarGroup","Badge","Breadcrumb","BreadcrumbItem","BreadcrumbLink","BreadcrumbSeparator","Button","ButtonGroup","Checkbox","CheckboxGroup","Code","Divider","FormControl","FormErrorMessage","FormHelperText","FormLabel","Heading","Highlight","Image","Input","Kbd","ModalOverlay","ModalContent","ModalHeader","ModalBody","ModalFooter","ModalCloseButton","NumberInput","NumberDecrementStepper","NumberIncrementStepper","NumberInputField","NumberInputStepper","Select","PinInput","PinInputField","Popover","PopoverBody","PopoverArrow","PopoverCloseButton","PopoverContent","PopoverHeader","PopoverTrigger","Progress","Radio","RadioGroup","Stat","StatArrow","StatHelpText","StatLabel","StatNumber","Switch","Table","TableCaption","Tbody","Thead","Tfoot","Td","Th","Tr","TableContainer","Text","Toast","Tooltip","TabList","Tab","Tabs","TabPanel","TabPanels","customKbdMeta"],"mappings":"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"}
|