@ptlm-azulejo/segmented-control 0.0.1-alpha.44 → 0.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ptlm-azulejo/segmented-control",
3
- "version": "0.0.1-alpha.44",
3
+ "version": "0.0.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.umd.cjs",
6
6
  "module": "./dist/index.js",
@@ -23,20 +23,18 @@
23
23
  "access": "public",
24
24
  "registry": "https://registry.npmjs.org"
25
25
  },
26
- "files": [
27
- "dist/*"
28
- ],
26
+ "files": ["dist/*"],
29
27
  "dependencies": {
30
28
  "@vueuse/core": "^13.0.0",
31
29
  "motion-v": "^1.0.0"
32
30
  },
33
31
  "devDependencies": {
34
- "@ptlm-azulejo/themes": "*",
35
32
  "@storybook/addon-essentials": "^7.0.0",
36
33
  "@storybook/addon-interactions": "^7.0.0",
37
- "@storybook/test": "^7.0.0",
38
34
  "@storybook/vue3": "^7.0.0",
39
35
  "@storybook/vue3-vite": "^7.0.0",
36
+ "@ptlm-azulejo/themes": "*",
37
+ "@storybook/test": "^7.0.0",
40
38
  "@tailwindcss/vite": "^4.0.0",
41
39
  "storybook": "^7.0.0",
42
40
  "tailwindcss": "^4.0.0",
package/CHANGELOG.md DELETED
@@ -1,18 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [Unreleased]
7
-
8
- ### Features
9
-
10
- - Add `AzSegmentedControl` — ADS2 segmented control (toggle group) with `v-model`, `items`, `size` (`s` / `m`), `fullWidth`, per-segment `disabled`, typed `:ui` overrides, keyboard navigation (arrows, Home/End), and motion-v `layout` selection indicator (bundled — no extra install).
11
-
12
- ### Bug Fixes
13
-
14
- - Remove redundant type and pattern comments; keep prop JSDoc for Storybook.
15
- - Drop Nuxt UI reference from Storybook `ui` argType description.
16
- - Fix keyboard roving tabindex when the first segment or current selection is disabled.
17
- - Move focus to the newly selected segment after arrow/Home/End navigation.
18
- - Guard empty `items` (no invalid grid template, hide sliding indicator).