fds-vue-core 4.7.3 → 4.8.0
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/README.md +5 -5
- package/dist/fds-vue-core.cjs.js +1568 -590
- package/dist/fds-vue-core.cjs.js.map +1 -1
- package/dist/fds-vue-core.css +1 -1
- package/dist/fds-vue-core.es.js +1568 -590
- package/dist/fds-vue-core.es.js.map +1 -1
- package/package.json +21 -31
- package/scripts/release.sh +66 -0
- package/scripts/sync-vscode-settings.mjs +1 -1
- package/src/components/FdsSearchSelectPro/FdsSearchSelectPro.stories.ts +515 -0
- package/src/components/FdsSearchSelectPro/FdsSearchSelectPro.vue +792 -0
- package/src/components/FdsSearchSelectPro/types.ts +49 -0
- package/src/components/FdsSearchSelectPro/useSearchSelectProItems.ts +268 -0
- package/src/docs/Usage.md +10 -10
- package/src/index.ts +4 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ FDS Vue Core is a Vue 3 component library that provides design tokens, icons, an
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
8
|
+
pnpm add fds-vue-core
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Peer Dependencies
|
|
@@ -13,7 +13,7 @@ yarn add fds-vue-core
|
|
|
13
13
|
Make sure you have the required peer dependencies installed:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
|
|
16
|
+
pnpm add vue@^3.5.0
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Postinstall Script
|
|
@@ -24,12 +24,12 @@ To automatically sync VS Code settings when installing or updating `fds-vue-core
|
|
|
24
24
|
{
|
|
25
25
|
"scripts": {
|
|
26
26
|
"sync:vscode:settings": "node node_modules/fds-vue-core/scripts/sync-vscode-settings.mjs || true",
|
|
27
|
-
"postinstall": "
|
|
27
|
+
"postinstall": "pnpm run sync:vscode:settings"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
This will automatically sync VS Code settings after every `
|
|
32
|
+
This will automatically sync VS Code settings after every `pnpm install`. The `|| true` ensures the install doesn't fail if the script encounters any issues.
|
|
33
33
|
|
|
34
34
|
## Setup
|
|
35
35
|
|
|
@@ -140,7 +140,7 @@ All components are fully typed. Type definitions are included in the package.
|
|
|
140
140
|
|
|
141
141
|
- [Usage Guide](./src/docs/Usage.md) - Detailed usage instructions
|
|
142
142
|
- [Configuration Files](./CONFIG.md) - TypeScript, ESLint, Prettier, and VS Code configuration
|
|
143
|
-
- [Storybook](./) - Component API documentation and examples (run `
|
|
143
|
+
- [Storybook](./) - Component API documentation and examples (run `pnpm storybook`)
|
|
144
144
|
|
|
145
145
|
### Publish to npm
|
|
146
146
|
|