prismify-ui 0.1.0-alpha.12 → 0.1.0-alpha.13
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/CHANGELOG.md +14 -0
- package/README.md +1 -1
- package/dist/components/navigation/PfNavigationMenu/index.vue.d.ts +2 -0
- package/dist/prismify-ui.cjs +2 -2
- package/dist/prismify-ui.cjs.map +1 -1
- package/dist/prismify-ui.js +8190 -8181
- package/dist/prismify-ui.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/styles/index.scss +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.0-alpha.13] - 2026-04-10
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- **PfNavigationMenu**: added **`collapsedSquare`** prop to support square trigger/link controls in collapsed vertical navigation.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- **PfNavigationMenu (labels)**: empty labels are no longer rendered for section rows, top-level items, and child items.
|
|
18
|
+
- **PfNavigationMenu (vertical child list layout)**: when menu orientation is vertical, child lists now force vertical orientation so submenu items are no longer laid out as horizontal two-column content.
|
|
19
|
+
- **PfNavigationMenu (collapsed vertical alignment)**: improved collapsed vertical link/trigger sizing and centering so icon-only items are no longer visually shifted to the right.
|
|
20
|
+
- **PfDashboardSidebar (collapsed spacing)**: collapsed desktop sidebar now removes horizontal paddings in header/body/footer and centers header/footer content for cleaner compact alignment.
|
|
21
|
+
- **Global styles**: applied **`box-sizing: border-box`** to all elements (including pseudo-elements) from the shared style entry for consistent sizing across Prismify components.
|
|
22
|
+
|
|
9
23
|
## [0.1.0-alpha.12] - 2026-04-10
|
|
10
24
|
|
|
11
25
|
### Added
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# prismify-ui v0.1.0-alpha.
|
|
1
|
+
# prismify-ui v0.1.0-alpha.13
|
|
2
2
|
|
|
3
3
|
[](https://github.com/koirodev/prismify-ui/actions/workflows/test.yml) [](https://github.com/koirodev/prismify-ui/actions/workflows/build.yml)
|
|
4
4
|
|
|
@@ -110,6 +110,7 @@ type __VLS_Props = {
|
|
|
110
110
|
labelKey?: string;
|
|
111
111
|
modelValue?: string | string[];
|
|
112
112
|
defaultValue?: string | string[];
|
|
113
|
+
collapsedSquare?: boolean;
|
|
113
114
|
tooltip?: boolean;
|
|
114
115
|
popover?: boolean;
|
|
115
116
|
ui?: PfNavigationMenuUi;
|
|
@@ -170,6 +171,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
170
171
|
highlightColor: PfNavigationMenuColor;
|
|
171
172
|
externalIcon: boolean | PfIconName;
|
|
172
173
|
arrow: boolean;
|
|
174
|
+
collapsedSquare: boolean;
|
|
173
175
|
popover: boolean;
|
|
174
176
|
disableHoverTrigger: boolean;
|
|
175
177
|
disableClickTrigger: boolean;
|