diff --git a/apps/admin-components.shim.ts b/apps/admin-components.shim.ts deleted file mode 100644 index c98b5a3d..00000000 --- a/apps/admin-components.shim.ts +++ /dev/null @@ -1,198 +0,0 @@ -/* eslint-disable @typescript-eslint/naming-convention,@typescript-eslint/ban-types,@typescript-eslint/no-unnecessary-type-arguments,@typescript-eslint/no-explicit-any */ -// noinspection ES6PreferShortImport - -import { - type ComponentOptionsMixin, - type ComputedOptions, - type DefineComponent as RealDefineComponent, - type ExtractDefaultPropTypes, - type MethodOptions, - type SlotsType, -} from 'vue'; -import {type PublicProps} from '@vue/runtime-core'; -import { - type BadgeProps, - type BadgeSlots, - type BoxEmits, - type BoxProps, - type BoxSlots, - type ButtonEmits, - type ButtonGroupProps, - type ButtonGroupSlots, - type ButtonProps, - type ButtonSlots, - type ColProps, - type ColSlots, - type ConceptBoxWrapperProps, - type DropdownButtonProps, - type DropdownButtonSlots, - type FormGroupProps, - type FormGroupSlots, - type HeadingProps, - type HeadingSlots, - type IconProps, - type ImageProps, - type LinkEmits, - type LinkProps, - type LinkSlots, - type LoaderProps, - type ModalProps, - type ModalSlots, - type NotificationProps, - type PluginSettingsWrapperProps, - type RowProps, - type RowSlots, - type SettingsDividerProps, - type ShipmentLabelWrapperProps, - type ShipmentLabelWrapperSlots, - type TableColProps, - type TableColSlots, - type TableProps, - type TableRowProps, - type TableRowSlots, - type TableSlots, - type TabNavButtonEmits, - type TabNavButtonProps, - type TabNavButtonWrapperProps, - type TabNavButtonWrapperSlots, - type TabNavContentWrapperProps, - type TabNavContentWrapperSlots, -} from './admin/src/types/components.types'; -import { - type CheckboxGroupEmits, - type CheckboxGroupProps, - type CheckboxInputEmits, - type CheckboxInputProps, - type CodeEditorEmits, - type CodeEditorProps, - type CurrencyInputEmits, - type CurrencyInputProps, - type DropOffInputEmits, - type DropOffInputProps, - type MultiSelectInputEmits, - type MultiSelectInputProps, - type NumberInputEmits, - type NumberInputProps, - type RadioGroupEmits, - type RadioGroupProps, - type RadioInputEmits, - type RadioInputProps, - type SelectInputEmits, - type SelectInputProps, - type ShippingMethodsInputEmits, - type ShippingMethodsInputProps, - type TextAreaEmits, - type TextAreaProps, - type TextInputEmits, - type TextInputProps, - type TimeInputEmits, - type TimeInputProps, - type ToggleInputEmits, - type ToggleInputProps, - type TriStateInputEmits, - type TriStateInputProps, -} from './admin/src/types/components-form.types'; - -/** - * @note This file should NOT be imported. Its purpose is to resolve the global pdk components in your IDE. - * - * @see createRegisterComponentsPlugin - */ - -type DefineComponent = {}> = RealDefineComponent< - Props, - Emits, - {}, - ComputedOptions, - MethodOptions, - ComponentOptionsMixin, - {}, - {}, - string, - PublicProps, - Props, - ExtractDefaultPropTypes, - SlotsType ->; - -export declare const PdkBadge: DefineComponent; - -export declare const PdkBox: DefineComponent; - -export declare const PdkButton: DefineComponent; - -export declare const PdkButtonGroup: DefineComponent; - -export declare const PdkCheckboxGroup: DefineComponent; - -export declare const PdkCheckboxInput: DefineComponent; - -export declare const PdkCodeEditor: DefineComponent; - -export declare const PdkCol: DefineComponent; - -export declare const PdkConceptBoxWrapper: DefineComponent; - -export declare const PdkCurrencyInput: DefineComponent; - -export declare const PdkDropOffInput: DefineComponent; - -export declare const PdkDropdownButton: DefineComponent; - -export declare const PdkFormGroup: DefineComponent; - -export declare const PdkHeading: DefineComponent; - -export declare const PdkIcon: DefineComponent; - -export declare const PdkImage: DefineComponent; - -export declare const PdkLink: DefineComponent; - -export declare const PdkLoader: DefineComponent; - -export declare const PdkModal: DefineComponent; - -export declare const PdkMultiSelectInput: DefineComponent; - -export declare const PdkNotification: DefineComponent; - -export declare const PdkNumberInput: DefineComponent; - -export declare const PdkPluginSettingsWrapper: DefineComponent; - -export declare const PdkRadioGroup: DefineComponent; - -export declare const PdkRadioInput: DefineComponent; - -export declare const PdkRow: DefineComponent; - -export declare const PdkSelectInput: DefineComponent; - -export declare const PdkSettingsDivider: DefineComponent; - -export declare const PdkShipmentLabelWrapper: DefineComponent; - -export declare const PdkShippingMethodsInput: DefineComponent; - -export declare const PdkTabNavButton: DefineComponent; - -export declare const PdkTabNavButtonWrapper: DefineComponent; - -export declare const PdkTabNavContentWrapper: DefineComponent; - -export declare const PdkTable: DefineComponent; - -export declare const PdkTableCol: DefineComponent; - -export declare const PdkTableRow: DefineComponent; - -export declare const PdkTextArea: DefineComponent; - -export declare const PdkTextInput: DefineComponent; - -export declare const PdkTimeInput: DefineComponent; - -export declare const PdkToggleInput: DefineComponent; - -export declare const PdkTriStateInput: DefineComponent; diff --git a/apps/admin-preset-bootstrap4/src/global-components.shim.ts b/apps/admin-preset-bootstrap4/src/global-components.shim.ts deleted file mode 100644 index ac0601b2..00000000 --- a/apps/admin-preset-bootstrap4/src/global-components.shim.ts +++ /dev/null @@ -1,97 +0,0 @@ -// noinspection DuplicatedCode - -import {createApp} from 'vue'; -import { - PdkBadge, - PdkBox, - PdkButton, - PdkButtonGroup, - PdkCheckboxGroup, - PdkCheckboxInput, - PdkCodeEditor, - PdkCol, - PdkConceptBoxWrapper, - PdkCurrencyInput, - PdkDropdownButton, - PdkDropOffInput, - PdkFormGroup, - PdkHeading, - PdkIcon, - PdkImage, - PdkLink, - PdkLoader, - PdkModal, - PdkMultiSelectInput, - PdkNotification, - PdkNumberInput, - PdkPluginSettingsWrapper, - PdkRadioGroup, - PdkRadioInput, - PdkRow, - PdkSelectInput, - PdkSettingsDivider, - PdkShipmentLabelWrapper, - PdkShippingMethodsInput, - PdkTable, - PdkTableCol, - PdkTableRow, - PdkTabNavButton, - PdkTabNavButtonWrapper, - PdkTabNavContentWrapper, - PdkTextArea, - PdkTextInput, - PdkTimeInput, - PdkToggleInput, - PdkTriStateInput, -} from '../../admin-components.shim'; - -/** - * DO NOT IMPORT! - * - * This lets your IDE know about the global pdk admin components and resolve its types. They're not actually registered - * this way and this code is not really used. - * - * @see createRegisterComponentsPlugin - */ -createApp({}) - .component('PdkBadge', PdkBadge) - .component('PdkBox', PdkBox) - .component('PdkButton', PdkButton) - .component('PdkButtonGroup', PdkButtonGroup) - .component('PdkCheckboxGroup', PdkCheckboxGroup) - .component('PdkCheckboxInput', PdkCheckboxInput) - .component('PdkCodeEditor', PdkCodeEditor) - .component('PdkCol', PdkCol) - .component('PdkConceptBoxWrapper', PdkConceptBoxWrapper) - .component('PdkCurrencyInput', PdkCurrencyInput) - .component('PdkDropOffInput', PdkDropOffInput) - .component('PdkDropdownButton', PdkDropdownButton) - .component('PdkFormGroup', PdkFormGroup) - .component('PdkHeading', PdkHeading) - .component('PdkIcon', PdkIcon) - .component('PdkImage', PdkImage) - .component('PdkLink', PdkLink) - .component('PdkLoader', PdkLoader) - .component('PdkModal', PdkModal) - .component('PdkMultiSelectInput', PdkMultiSelectInput) - .component('PdkNotification', PdkNotification) - .component('PdkNumberInput', PdkNumberInput) - .component('PdkPluginSettingsWrapper', PdkPluginSettingsWrapper) - .component('PdkRadioGroup', PdkRadioGroup) - .component('PdkRadioInput', PdkRadioInput) - .component('PdkRow', PdkRow) - .component('PdkSelectInput', PdkSelectInput) - .component('PdkSettingsDivider', PdkSettingsDivider) - .component('PdkShipmentLabelWrapper', PdkShipmentLabelWrapper) - .component('PdkShippingMethodsInput', PdkShippingMethodsInput) - .component('PdkTabNavButton', PdkTabNavButton) - .component('PdkTabNavButtonWrapper', PdkTabNavButtonWrapper) - .component('PdkTabNavContentWrapper', PdkTabNavContentWrapper) - .component('PdkTable', PdkTable) - .component('PdkTableCol', PdkTableCol) - .component('PdkTableRow', PdkTableRow) - .component('PdkTextArea', PdkTextArea) - .component('PdkTextInput', PdkTextInput) - .component('PdkTimeInput', PdkTimeInput) - .component('PdkToggleInput', PdkToggleInput) - .component('PdkTriStateInput', PdkTriStateInput); diff --git a/apps/admin-preset-dashicons/src/global-components.shim.ts b/apps/admin-preset-dashicons/src/global-components.shim.ts deleted file mode 100644 index ac0601b2..00000000 --- a/apps/admin-preset-dashicons/src/global-components.shim.ts +++ /dev/null @@ -1,97 +0,0 @@ -// noinspection DuplicatedCode - -import {createApp} from 'vue'; -import { - PdkBadge, - PdkBox, - PdkButton, - PdkButtonGroup, - PdkCheckboxGroup, - PdkCheckboxInput, - PdkCodeEditor, - PdkCol, - PdkConceptBoxWrapper, - PdkCurrencyInput, - PdkDropdownButton, - PdkDropOffInput, - PdkFormGroup, - PdkHeading, - PdkIcon, - PdkImage, - PdkLink, - PdkLoader, - PdkModal, - PdkMultiSelectInput, - PdkNotification, - PdkNumberInput, - PdkPluginSettingsWrapper, - PdkRadioGroup, - PdkRadioInput, - PdkRow, - PdkSelectInput, - PdkSettingsDivider, - PdkShipmentLabelWrapper, - PdkShippingMethodsInput, - PdkTable, - PdkTableCol, - PdkTableRow, - PdkTabNavButton, - PdkTabNavButtonWrapper, - PdkTabNavContentWrapper, - PdkTextArea, - PdkTextInput, - PdkTimeInput, - PdkToggleInput, - PdkTriStateInput, -} from '../../admin-components.shim'; - -/** - * DO NOT IMPORT! - * - * This lets your IDE know about the global pdk admin components and resolve its types. They're not actually registered - * this way and this code is not really used. - * - * @see createRegisterComponentsPlugin - */ -createApp({}) - .component('PdkBadge', PdkBadge) - .component('PdkBox', PdkBox) - .component('PdkButton', PdkButton) - .component('PdkButtonGroup', PdkButtonGroup) - .component('PdkCheckboxGroup', PdkCheckboxGroup) - .component('PdkCheckboxInput', PdkCheckboxInput) - .component('PdkCodeEditor', PdkCodeEditor) - .component('PdkCol', PdkCol) - .component('PdkConceptBoxWrapper', PdkConceptBoxWrapper) - .component('PdkCurrencyInput', PdkCurrencyInput) - .component('PdkDropOffInput', PdkDropOffInput) - .component('PdkDropdownButton', PdkDropdownButton) - .component('PdkFormGroup', PdkFormGroup) - .component('PdkHeading', PdkHeading) - .component('PdkIcon', PdkIcon) - .component('PdkImage', PdkImage) - .component('PdkLink', PdkLink) - .component('PdkLoader', PdkLoader) - .component('PdkModal', PdkModal) - .component('PdkMultiSelectInput', PdkMultiSelectInput) - .component('PdkNotification', PdkNotification) - .component('PdkNumberInput', PdkNumberInput) - .component('PdkPluginSettingsWrapper', PdkPluginSettingsWrapper) - .component('PdkRadioGroup', PdkRadioGroup) - .component('PdkRadioInput', PdkRadioInput) - .component('PdkRow', PdkRow) - .component('PdkSelectInput', PdkSelectInput) - .component('PdkSettingsDivider', PdkSettingsDivider) - .component('PdkShipmentLabelWrapper', PdkShipmentLabelWrapper) - .component('PdkShippingMethodsInput', PdkShippingMethodsInput) - .component('PdkTabNavButton', PdkTabNavButton) - .component('PdkTabNavButtonWrapper', PdkTabNavButtonWrapper) - .component('PdkTabNavContentWrapper', PdkTabNavContentWrapper) - .component('PdkTable', PdkTable) - .component('PdkTableCol', PdkTableCol) - .component('PdkTableRow', PdkTableRow) - .component('PdkTextArea', PdkTextArea) - .component('PdkTextInput', PdkTextInput) - .component('PdkTimeInput', PdkTimeInput) - .component('PdkToggleInput', PdkToggleInput) - .component('PdkTriStateInput', PdkTriStateInput); diff --git a/apps/admin-preset-default/src/global-components.shim.ts b/apps/admin-preset-default/src/global-components.shim.ts deleted file mode 100644 index ac0601b2..00000000 --- a/apps/admin-preset-default/src/global-components.shim.ts +++ /dev/null @@ -1,97 +0,0 @@ -// noinspection DuplicatedCode - -import {createApp} from 'vue'; -import { - PdkBadge, - PdkBox, - PdkButton, - PdkButtonGroup, - PdkCheckboxGroup, - PdkCheckboxInput, - PdkCodeEditor, - PdkCol, - PdkConceptBoxWrapper, - PdkCurrencyInput, - PdkDropdownButton, - PdkDropOffInput, - PdkFormGroup, - PdkHeading, - PdkIcon, - PdkImage, - PdkLink, - PdkLoader, - PdkModal, - PdkMultiSelectInput, - PdkNotification, - PdkNumberInput, - PdkPluginSettingsWrapper, - PdkRadioGroup, - PdkRadioInput, - PdkRow, - PdkSelectInput, - PdkSettingsDivider, - PdkShipmentLabelWrapper, - PdkShippingMethodsInput, - PdkTable, - PdkTableCol, - PdkTableRow, - PdkTabNavButton, - PdkTabNavButtonWrapper, - PdkTabNavContentWrapper, - PdkTextArea, - PdkTextInput, - PdkTimeInput, - PdkToggleInput, - PdkTriStateInput, -} from '../../admin-components.shim'; - -/** - * DO NOT IMPORT! - * - * This lets your IDE know about the global pdk admin components and resolve its types. They're not actually registered - * this way and this code is not really used. - * - * @see createRegisterComponentsPlugin - */ -createApp({}) - .component('PdkBadge', PdkBadge) - .component('PdkBox', PdkBox) - .component('PdkButton', PdkButton) - .component('PdkButtonGroup', PdkButtonGroup) - .component('PdkCheckboxGroup', PdkCheckboxGroup) - .component('PdkCheckboxInput', PdkCheckboxInput) - .component('PdkCodeEditor', PdkCodeEditor) - .component('PdkCol', PdkCol) - .component('PdkConceptBoxWrapper', PdkConceptBoxWrapper) - .component('PdkCurrencyInput', PdkCurrencyInput) - .component('PdkDropOffInput', PdkDropOffInput) - .component('PdkDropdownButton', PdkDropdownButton) - .component('PdkFormGroup', PdkFormGroup) - .component('PdkHeading', PdkHeading) - .component('PdkIcon', PdkIcon) - .component('PdkImage', PdkImage) - .component('PdkLink', PdkLink) - .component('PdkLoader', PdkLoader) - .component('PdkModal', PdkModal) - .component('PdkMultiSelectInput', PdkMultiSelectInput) - .component('PdkNotification', PdkNotification) - .component('PdkNumberInput', PdkNumberInput) - .component('PdkPluginSettingsWrapper', PdkPluginSettingsWrapper) - .component('PdkRadioGroup', PdkRadioGroup) - .component('PdkRadioInput', PdkRadioInput) - .component('PdkRow', PdkRow) - .component('PdkSelectInput', PdkSelectInput) - .component('PdkSettingsDivider', PdkSettingsDivider) - .component('PdkShipmentLabelWrapper', PdkShipmentLabelWrapper) - .component('PdkShippingMethodsInput', PdkShippingMethodsInput) - .component('PdkTabNavButton', PdkTabNavButton) - .component('PdkTabNavButtonWrapper', PdkTabNavButtonWrapper) - .component('PdkTabNavContentWrapper', PdkTabNavContentWrapper) - .component('PdkTable', PdkTable) - .component('PdkTableCol', PdkTableCol) - .component('PdkTableRow', PdkTableRow) - .component('PdkTextArea', PdkTextArea) - .component('PdkTextInput', PdkTextInput) - .component('PdkTimeInput', PdkTimeInput) - .component('PdkToggleInput', PdkToggleInput) - .component('PdkTriStateInput', PdkTriStateInput); diff --git a/apps/admin-preset-fontawesome/src/global-components.shim.ts b/apps/admin-preset-fontawesome/src/global-components.shim.ts deleted file mode 100644 index ac0601b2..00000000 --- a/apps/admin-preset-fontawesome/src/global-components.shim.ts +++ /dev/null @@ -1,97 +0,0 @@ -// noinspection DuplicatedCode - -import {createApp} from 'vue'; -import { - PdkBadge, - PdkBox, - PdkButton, - PdkButtonGroup, - PdkCheckboxGroup, - PdkCheckboxInput, - PdkCodeEditor, - PdkCol, - PdkConceptBoxWrapper, - PdkCurrencyInput, - PdkDropdownButton, - PdkDropOffInput, - PdkFormGroup, - PdkHeading, - PdkIcon, - PdkImage, - PdkLink, - PdkLoader, - PdkModal, - PdkMultiSelectInput, - PdkNotification, - PdkNumberInput, - PdkPluginSettingsWrapper, - PdkRadioGroup, - PdkRadioInput, - PdkRow, - PdkSelectInput, - PdkSettingsDivider, - PdkShipmentLabelWrapper, - PdkShippingMethodsInput, - PdkTable, - PdkTableCol, - PdkTableRow, - PdkTabNavButton, - PdkTabNavButtonWrapper, - PdkTabNavContentWrapper, - PdkTextArea, - PdkTextInput, - PdkTimeInput, - PdkToggleInput, - PdkTriStateInput, -} from '../../admin-components.shim'; - -/** - * DO NOT IMPORT! - * - * This lets your IDE know about the global pdk admin components and resolve its types. They're not actually registered - * this way and this code is not really used. - * - * @see createRegisterComponentsPlugin - */ -createApp({}) - .component('PdkBadge', PdkBadge) - .component('PdkBox', PdkBox) - .component('PdkButton', PdkButton) - .component('PdkButtonGroup', PdkButtonGroup) - .component('PdkCheckboxGroup', PdkCheckboxGroup) - .component('PdkCheckboxInput', PdkCheckboxInput) - .component('PdkCodeEditor', PdkCodeEditor) - .component('PdkCol', PdkCol) - .component('PdkConceptBoxWrapper', PdkConceptBoxWrapper) - .component('PdkCurrencyInput', PdkCurrencyInput) - .component('PdkDropOffInput', PdkDropOffInput) - .component('PdkDropdownButton', PdkDropdownButton) - .component('PdkFormGroup', PdkFormGroup) - .component('PdkHeading', PdkHeading) - .component('PdkIcon', PdkIcon) - .component('PdkImage', PdkImage) - .component('PdkLink', PdkLink) - .component('PdkLoader', PdkLoader) - .component('PdkModal', PdkModal) - .component('PdkMultiSelectInput', PdkMultiSelectInput) - .component('PdkNotification', PdkNotification) - .component('PdkNumberInput', PdkNumberInput) - .component('PdkPluginSettingsWrapper', PdkPluginSettingsWrapper) - .component('PdkRadioGroup', PdkRadioGroup) - .component('PdkRadioInput', PdkRadioInput) - .component('PdkRow', PdkRow) - .component('PdkSelectInput', PdkSelectInput) - .component('PdkSettingsDivider', PdkSettingsDivider) - .component('PdkShipmentLabelWrapper', PdkShipmentLabelWrapper) - .component('PdkShippingMethodsInput', PdkShippingMethodsInput) - .component('PdkTabNavButton', PdkTabNavButton) - .component('PdkTabNavButtonWrapper', PdkTabNavButtonWrapper) - .component('PdkTabNavContentWrapper', PdkTabNavContentWrapper) - .component('PdkTable', PdkTable) - .component('PdkTableCol', PdkTableCol) - .component('PdkTableRow', PdkTableRow) - .component('PdkTextArea', PdkTextArea) - .component('PdkTextInput', PdkTextInput) - .component('PdkTimeInput', PdkTimeInput) - .component('PdkToggleInput', PdkToggleInput) - .component('PdkTriStateInput', PdkTriStateInput); diff --git a/apps/admin/src/global-components.shim.ts b/apps/admin/src/global-components.shim.ts deleted file mode 100644 index ac0601b2..00000000 --- a/apps/admin/src/global-components.shim.ts +++ /dev/null @@ -1,97 +0,0 @@ -// noinspection DuplicatedCode - -import {createApp} from 'vue'; -import { - PdkBadge, - PdkBox, - PdkButton, - PdkButtonGroup, - PdkCheckboxGroup, - PdkCheckboxInput, - PdkCodeEditor, - PdkCol, - PdkConceptBoxWrapper, - PdkCurrencyInput, - PdkDropdownButton, - PdkDropOffInput, - PdkFormGroup, - PdkHeading, - PdkIcon, - PdkImage, - PdkLink, - PdkLoader, - PdkModal, - PdkMultiSelectInput, - PdkNotification, - PdkNumberInput, - PdkPluginSettingsWrapper, - PdkRadioGroup, - PdkRadioInput, - PdkRow, - PdkSelectInput, - PdkSettingsDivider, - PdkShipmentLabelWrapper, - PdkShippingMethodsInput, - PdkTable, - PdkTableCol, - PdkTableRow, - PdkTabNavButton, - PdkTabNavButtonWrapper, - PdkTabNavContentWrapper, - PdkTextArea, - PdkTextInput, - PdkTimeInput, - PdkToggleInput, - PdkTriStateInput, -} from '../../admin-components.shim'; - -/** - * DO NOT IMPORT! - * - * This lets your IDE know about the global pdk admin components and resolve its types. They're not actually registered - * this way and this code is not really used. - * - * @see createRegisterComponentsPlugin - */ -createApp({}) - .component('PdkBadge', PdkBadge) - .component('PdkBox', PdkBox) - .component('PdkButton', PdkButton) - .component('PdkButtonGroup', PdkButtonGroup) - .component('PdkCheckboxGroup', PdkCheckboxGroup) - .component('PdkCheckboxInput', PdkCheckboxInput) - .component('PdkCodeEditor', PdkCodeEditor) - .component('PdkCol', PdkCol) - .component('PdkConceptBoxWrapper', PdkConceptBoxWrapper) - .component('PdkCurrencyInput', PdkCurrencyInput) - .component('PdkDropOffInput', PdkDropOffInput) - .component('PdkDropdownButton', PdkDropdownButton) - .component('PdkFormGroup', PdkFormGroup) - .component('PdkHeading', PdkHeading) - .component('PdkIcon', PdkIcon) - .component('PdkImage', PdkImage) - .component('PdkLink', PdkLink) - .component('PdkLoader', PdkLoader) - .component('PdkModal', PdkModal) - .component('PdkMultiSelectInput', PdkMultiSelectInput) - .component('PdkNotification', PdkNotification) - .component('PdkNumberInput', PdkNumberInput) - .component('PdkPluginSettingsWrapper', PdkPluginSettingsWrapper) - .component('PdkRadioGroup', PdkRadioGroup) - .component('PdkRadioInput', PdkRadioInput) - .component('PdkRow', PdkRow) - .component('PdkSelectInput', PdkSelectInput) - .component('PdkSettingsDivider', PdkSettingsDivider) - .component('PdkShipmentLabelWrapper', PdkShipmentLabelWrapper) - .component('PdkShippingMethodsInput', PdkShippingMethodsInput) - .component('PdkTabNavButton', PdkTabNavButton) - .component('PdkTabNavButtonWrapper', PdkTabNavButtonWrapper) - .component('PdkTabNavContentWrapper', PdkTabNavContentWrapper) - .component('PdkTable', PdkTable) - .component('PdkTableCol', PdkTableCol) - .component('PdkTableRow', PdkTableRow) - .component('PdkTextArea', PdkTextArea) - .component('PdkTextInput', PdkTextInput) - .component('PdkTimeInput', PdkTimeInput) - .component('PdkToggleInput', PdkToggleInput) - .component('PdkTriStateInput', PdkTriStateInput);