fds-vue-core 2.1.5 → 2.1.6
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/components.d.ts +8 -0
- package/dist/global-components.d.ts +28 -28
- package/package.json +4 -3
- package/src/global-components.ts +28 -28
package/components.d.ts
ADDED
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
import type { DefineComponent } from 'vue'
|
|
2
2
|
// Import prop types directly from their source modules to avoid circular deps with index.ts
|
|
3
|
-
import type { FdsTreeViewProps } from '
|
|
4
|
-
import type { FdsButtonBaseProps } from '
|
|
5
|
-
import type { FdsCopyButtonProps } from '
|
|
6
|
-
import type { FdsIconButtonProps } from '
|
|
7
|
-
import type { FdsIconProps } from '
|
|
8
|
-
import type { FdsSpinnerProps } from '
|
|
9
|
-
import type { FdsRadioProps } from '
|
|
10
|
-
import type { FdsInputProps } from '
|
|
11
|
-
import type { FdsCheckboxProps } from '
|
|
12
|
-
import type { FdsTextareaProps } from '
|
|
13
|
-
import type { FdsSelectProps } from '
|
|
14
|
-
import type { FdsTableProps } from '
|
|
15
|
-
import type { FdsTableHeadProps } from '
|
|
16
|
-
import type { FdsContentBlockProps } from '
|
|
17
|
-
import type { FdsBlockInfoProps } from '
|
|
18
|
-
import type { FdsAlertBlockProps } from '
|
|
19
|
-
import type { FdsExpanderBlockProps } from '
|
|
20
|
-
import type { FdsInteractionBlockProps } from '
|
|
21
|
-
import type { FdsStickerProps } from '
|
|
22
|
-
import type { FdsTabsProps } from '
|
|
23
|
-
import type { FdsTabsItemProps } from '
|
|
24
|
-
import type { FdsModalProps } from '
|
|
25
|
-
import type { FdsPaginationProps } from '
|
|
26
|
-
import type { FdsSearchSelectProps } from '
|
|
27
|
-
import type { FdsTruncatedTextProps } from '
|
|
28
|
-
import type { FdsHeadingProps } from '
|
|
29
|
-
import type { FdsTextProps } from '
|
|
30
|
-
import type { FdsListHeadingProps } from '
|
|
3
|
+
import type { FdsTreeViewProps } from './components/FdsTreeView/types'
|
|
4
|
+
import type { FdsButtonBaseProps } from './components/Buttons/ButtonBaseProps'
|
|
5
|
+
import type { FdsCopyButtonProps } from './components/Buttons/FdsButtonCopy/types'
|
|
6
|
+
import type { FdsIconButtonProps } from './components/Buttons/FdsButtonIcon/types'
|
|
7
|
+
import type { FdsIconProps } from './components/FdsIcon/types'
|
|
8
|
+
import type { FdsSpinnerProps } from './components/FdsSpinner/types'
|
|
9
|
+
import type { FdsRadioProps } from './components/Form/FdsRadio/types'
|
|
10
|
+
import type { FdsInputProps } from './components/Form/FdsInput/types'
|
|
11
|
+
import type { FdsCheckboxProps } from './components/Form/FdsCheckbox/types'
|
|
12
|
+
import type { FdsTextareaProps } from './components/Form/FdsTextarea/types'
|
|
13
|
+
import type { FdsSelectProps } from './components/Form/FdsSelect/types'
|
|
14
|
+
import type { FdsTableProps } from './components/Table/FdsTable/types'
|
|
15
|
+
import type { FdsTableHeadProps } from './components/Table/FdsTableHead/types'
|
|
16
|
+
import type { FdsContentBlockProps } from './components/Blocks/FdsBlockContent/types'
|
|
17
|
+
import type { FdsBlockInfoProps } from './components/Blocks/FdsBlockInfo/types'
|
|
18
|
+
import type { FdsAlertBlockProps } from './components/Blocks/FdsBlockAlert/types'
|
|
19
|
+
import type { FdsExpanderBlockProps } from './components/Blocks/FdsBlockExpander/types'
|
|
20
|
+
import type { FdsInteractionBlockProps } from './components/Blocks/FdsBlockLink/types'
|
|
21
|
+
import type { FdsStickerProps } from './components/FdsSticker/types'
|
|
22
|
+
import type { FdsTabsProps } from './components/Tabs/FdsTabs/types'
|
|
23
|
+
import type { FdsTabsItemProps } from './components/Tabs/FdsTabsItem/types'
|
|
24
|
+
import type { FdsModalProps } from './components/FdsModal/types'
|
|
25
|
+
import type { FdsPaginationProps } from './components/FdsPagination/types'
|
|
26
|
+
import type { FdsSearchSelectProps } from './components/FdsSearchSelect/types'
|
|
27
|
+
import type { FdsTruncatedTextProps } from './components/FdsTruncatedText/types'
|
|
28
|
+
import type { FdsHeadingProps } from './components/Typography/FdsHeading/types'
|
|
29
|
+
import type { FdsTextProps } from './components/Typography/FdsText/types'
|
|
30
|
+
import type { FdsListHeadingProps } from './components/Typography/FdsListHeading/types'
|
|
31
31
|
|
|
32
32
|
// Derive button prop types from base props
|
|
33
33
|
type FdsButtonPrimaryProps = FdsButtonBaseProps
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fds-vue-core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.6",
|
|
4
4
|
"description": "FDS Vue Core Component Library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/fds-vue-core.cjs.js",
|
|
7
7
|
"module": "./dist/fds-vue-core.es.js",
|
|
8
|
-
"types": "./
|
|
8
|
+
"types": "./components.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
-
"types": "./
|
|
11
|
+
"types": "./components.d.ts",
|
|
12
12
|
"import": "./dist/fds-vue-core.es.js",
|
|
13
13
|
"require": "./dist/fds-vue-core.cjs.js"
|
|
14
14
|
},
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"files": [
|
|
30
30
|
"dist",
|
|
31
31
|
"src",
|
|
32
|
+
"components.d.ts",
|
|
32
33
|
"tailwind.preset.cjs",
|
|
33
34
|
"configs",
|
|
34
35
|
"scripts"
|
package/src/global-components.ts
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
import type { DefineComponent } from 'vue'
|
|
2
2
|
// Import prop types directly from their source modules to avoid circular deps with index.ts
|
|
3
|
-
import type { FdsTreeViewProps } from '
|
|
4
|
-
import type { FdsButtonBaseProps } from '
|
|
5
|
-
import type { FdsCopyButtonProps } from '
|
|
6
|
-
import type { FdsIconButtonProps } from '
|
|
7
|
-
import type { FdsIconProps } from '
|
|
8
|
-
import type { FdsSpinnerProps } from '
|
|
9
|
-
import type { FdsRadioProps } from '
|
|
10
|
-
import type { FdsInputProps } from '
|
|
11
|
-
import type { FdsCheckboxProps } from '
|
|
12
|
-
import type { FdsTextareaProps } from '
|
|
13
|
-
import type { FdsSelectProps } from '
|
|
14
|
-
import type { FdsTableProps } from '
|
|
15
|
-
import type { FdsTableHeadProps } from '
|
|
16
|
-
import type { FdsContentBlockProps } from '
|
|
17
|
-
import type { FdsBlockInfoProps } from '
|
|
18
|
-
import type { FdsAlertBlockProps } from '
|
|
19
|
-
import type { FdsExpanderBlockProps } from '
|
|
20
|
-
import type { FdsInteractionBlockProps } from '
|
|
21
|
-
import type { FdsStickerProps } from '
|
|
22
|
-
import type { FdsTabsProps } from '
|
|
23
|
-
import type { FdsTabsItemProps } from '
|
|
24
|
-
import type { FdsModalProps } from '
|
|
25
|
-
import type { FdsPaginationProps } from '
|
|
26
|
-
import type { FdsSearchSelectProps } from '
|
|
27
|
-
import type { FdsTruncatedTextProps } from '
|
|
28
|
-
import type { FdsHeadingProps } from '
|
|
29
|
-
import type { FdsTextProps } from '
|
|
30
|
-
import type { FdsListHeadingProps } from '
|
|
3
|
+
import type { FdsTreeViewProps } from './components/FdsTreeView/types'
|
|
4
|
+
import type { FdsButtonBaseProps } from './components/Buttons/ButtonBaseProps'
|
|
5
|
+
import type { FdsCopyButtonProps } from './components/Buttons/FdsButtonCopy/types'
|
|
6
|
+
import type { FdsIconButtonProps } from './components/Buttons/FdsButtonIcon/types'
|
|
7
|
+
import type { FdsIconProps } from './components/FdsIcon/types'
|
|
8
|
+
import type { FdsSpinnerProps } from './components/FdsSpinner/types'
|
|
9
|
+
import type { FdsRadioProps } from './components/Form/FdsRadio/types'
|
|
10
|
+
import type { FdsInputProps } from './components/Form/FdsInput/types'
|
|
11
|
+
import type { FdsCheckboxProps } from './components/Form/FdsCheckbox/types'
|
|
12
|
+
import type { FdsTextareaProps } from './components/Form/FdsTextarea/types'
|
|
13
|
+
import type { FdsSelectProps } from './components/Form/FdsSelect/types'
|
|
14
|
+
import type { FdsTableProps } from './components/Table/FdsTable/types'
|
|
15
|
+
import type { FdsTableHeadProps } from './components/Table/FdsTableHead/types'
|
|
16
|
+
import type { FdsContentBlockProps } from './components/Blocks/FdsBlockContent/types'
|
|
17
|
+
import type { FdsBlockInfoProps } from './components/Blocks/FdsBlockInfo/types'
|
|
18
|
+
import type { FdsAlertBlockProps } from './components/Blocks/FdsBlockAlert/types'
|
|
19
|
+
import type { FdsExpanderBlockProps } from './components/Blocks/FdsBlockExpander/types'
|
|
20
|
+
import type { FdsInteractionBlockProps } from './components/Blocks/FdsBlockLink/types'
|
|
21
|
+
import type { FdsStickerProps } from './components/FdsSticker/types'
|
|
22
|
+
import type { FdsTabsProps } from './components/Tabs/FdsTabs/types'
|
|
23
|
+
import type { FdsTabsItemProps } from './components/Tabs/FdsTabsItem/types'
|
|
24
|
+
import type { FdsModalProps } from './components/FdsModal/types'
|
|
25
|
+
import type { FdsPaginationProps } from './components/FdsPagination/types'
|
|
26
|
+
import type { FdsSearchSelectProps } from './components/FdsSearchSelect/types'
|
|
27
|
+
import type { FdsTruncatedTextProps } from './components/FdsTruncatedText/types'
|
|
28
|
+
import type { FdsHeadingProps } from './components/Typography/FdsHeading/types'
|
|
29
|
+
import type { FdsTextProps } from './components/Typography/FdsText/types'
|
|
30
|
+
import type { FdsListHeadingProps } from './components/Typography/FdsListHeading/types'
|
|
31
31
|
|
|
32
32
|
// Derive button prop types from base props
|
|
33
33
|
type FdsButtonPrimaryProps = FdsButtonBaseProps
|