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.
@@ -0,0 +1,8 @@
1
+ // Entry types that also register global components for Volar/TS
2
+ /// <reference types="./dist/index.d.ts" />
3
+ /// <reference path="./dist/global-components.d.ts" />
4
+
5
+ export * from './dist/index.d.ts'
6
+
7
+
8
+
@@ -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 '@/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'
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.5",
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": "./dist/global-components.d.ts",
8
+ "types": "./components.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
- "types": "./dist/global-components.d.ts",
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"
@@ -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 '@/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'
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