@nextcloud/vue 9.13.0 → 9.13.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/CHANGELOG.md +13 -0
- package/dist/assets/NcAppNavigationSettings.css +6 -6
- package/dist/assets/NcAppSettingsDialog.css +3 -3
- package/dist/assets/NcAppSettingsShortcutsSection.css +1 -1
- package/dist/assets/NcAppSidebar.css +28 -28
- package/dist/assets/NcAssistantButton.css +9 -9
- package/dist/assets/NcAssistantContent.css +3 -3
- package/dist/assets/NcAssistantIcon.css +4 -4
- package/dist/assets/NcBlurHash.css +2 -2
- package/dist/assets/NcDateTimePicker.css +234 -234
- package/dist/assets/NcFilePicker.css +1 -1
- package/dist/assets/NcFormBox.css +11 -11
- package/dist/assets/NcFormBoxButton.css +2 -2
- package/dist/assets/NcFormBoxItem.css +15 -15
- package/dist/assets/NcFormBoxSwitch.css +2 -2
- package/dist/assets/NcFormGroup.css +7 -7
- package/dist/assets/NcHotkey.css +8 -8
- package/dist/assets/NcHotkeyList.css +2 -2
- package/dist/assets/NcIconToggleSwitch.css +4 -4
- package/dist/assets/NcKbd.css +3 -3
- package/dist/assets/NcModal.css +71 -64
- package/dist/assets/NcPopover.css +16 -16
- package/dist/assets/NcRadioGroup.css +2 -2
- package/dist/assets/NcRadioGroupButton.css +14 -14
- package/dist/assets/NcReferenceWidget.css +24 -23
- package/dist/assets/NcRichContenteditable.css +17 -17
- package/dist/assets/NcSelect.css +8 -13
- package/dist/assets/NcUploadPicker.css +7 -7
- package/dist/assets/autolink.css +3 -3
- package/dist/chunks/NcAppNavigationSettings.mjs +6 -6
- package/dist/chunks/NcAppSettingsDialog.mjs +3 -3
- package/dist/chunks/NcAppSettingsShortcutsSection.mjs +1 -1
- package/dist/chunks/NcAppSidebar.mjs +12 -12
- package/dist/chunks/NcAssistantButton.mjs +7 -7
- package/dist/chunks/NcAssistantContent.mjs +3 -3
- package/dist/chunks/NcAssistantIcon.mjs +4 -4
- package/dist/chunks/NcBlurHash.mjs +2 -2
- package/dist/chunks/NcDateTimePicker.mjs +39 -1
- package/dist/chunks/NcDateTimePicker.mjs.map +1 -1
- package/dist/chunks/NcFilePicker.mjs +1 -1
- package/dist/chunks/NcFormBox.mjs +5 -5
- package/dist/chunks/NcFormBoxButton.mjs +2 -2
- package/dist/chunks/NcFormBoxItem.mjs +8 -8
- package/dist/chunks/NcFormBoxSwitch.mjs +2 -2
- package/dist/chunks/NcFormGroup.mjs +7 -7
- package/dist/chunks/NcHotkey.mjs +4 -4
- package/dist/chunks/NcHotkeyList.mjs +2 -2
- package/dist/chunks/NcIconToggleSwitch.mjs +2 -2
- package/dist/chunks/NcKbd.mjs +2 -2
- package/dist/chunks/NcModal.mjs +6 -9
- package/dist/chunks/NcModal.mjs.map +1 -1
- package/dist/chunks/NcPopover.mjs +2 -2
- package/dist/chunks/NcPopover.mjs.map +1 -1
- package/dist/chunks/NcRadioGroup.mjs +2 -2
- package/dist/chunks/NcRadioGroupButton.mjs +6 -6
- package/dist/chunks/NcReferenceWidget.mjs +2 -2
- package/dist/chunks/NcReferenceWidget.mjs.map +1 -1
- package/dist/chunks/NcRichContenteditable.mjs +10 -10
- package/dist/chunks/NcSelect.mjs.map +1 -1
- package/dist/chunks/NcUploadPicker.mjs +6 -6
- package/dist/chunks/_l10n.mjs +3 -3
- package/dist/chunks/autolink.mjs +3 -3
- package/dist/components/NcDateTimePicker/formatValidation.d.ts +10 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@
|
|
|
7
7
|
|
|
8
8
|
All notable changes to this project will be documented in this file.
|
|
9
9
|
|
|
10
|
+
## [v9.13.1](https://github.com/nextcloud-libraries/nextcloud-vue/tree/v9.13.1) (2026-09-24)
|
|
11
|
+
[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-vue/compare/v9.13.0...v9.13.1)
|
|
12
|
+
|
|
13
|
+
### 🐛 Fixed bugs
|
|
14
|
+
* fix(NcPopover): `afterShow` and `afterHide` events are not fired with `floating-vue` >= 5.3.0 [\#8994](https://github.com/nextcloud-libraries/nextcloud-vue/pull/8994) \([rotdrop](https://github.com/rotdrop)\)
|
|
15
|
+
* fix(NcModal): center the slideshow progress ring [\#8990](https://github.com/nextcloud-libraries/nextcloud-vue/pull/8990) \([skjnldsv](https://github.com/skjnldsv)\)
|
|
16
|
+
* fix(NcSelect): new style variables are lost when `appendToBody` breaking `z-index` [\#8996](https://github.com/nextcloud-libraries/nextcloud-vue/pull/8996) \([ShGKme](https://github.com/ShGKme)\)
|
|
17
|
+
* fix(NcDateTimePicker): warn about usage of non-standard formatting tokens [\#8934](https://github.com/nextcloud-libraries/nextcloud-vue/pull/8934) \([odzhychko](https://github.com/odzhychko)\)
|
|
18
|
+
* fix(NcReferenceWidget): show description even on smaller embeds [\#8545](https://github.com/nextcloud-libraries/nextcloud-vue/pull/8545) \([tyzbit](https://github.com/tyzbit)\)
|
|
19
|
+
|
|
20
|
+
### Other changes
|
|
21
|
+
* Updated translations
|
|
22
|
+
|
|
10
23
|
## [v9.13.0](https://github.com/nextcloud-libraries/nextcloud-vue/tree/v9.13.0) (2026-09-17)
|
|
11
24
|
[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-vue/compare/v9.12.0...v9.13.0)
|
|
12
25
|
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
|
|
2
|
-
.
|
|
2
|
+
._container_zi17B {
|
|
3
3
|
margin-top: auto;
|
|
4
4
|
padding: var(--default-grid-baseline);
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
._header_XIMX6 {
|
|
7
7
|
margin-block: 0 var(--default-grid-baseline);
|
|
8
8
|
margin-inline: var(--default-grid-baseline);
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
/* Overwrite the padding to match NcAppNavigationItem */
|
|
12
|
-
.
|
|
12
|
+
._button_Nq9sk {
|
|
13
13
|
padding-inline: 0 calc((var(--default-clickable-area) - 16px) / 2) !important;
|
|
14
14
|
.button-vue__text {
|
|
15
15
|
font-weight: var(--font-weight-default, normal);
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
|
-
.
|
|
18
|
+
._content_c4AKU {
|
|
19
19
|
display: block;
|
|
20
20
|
padding: 10px;
|
|
21
21
|
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
max-height: 300px;
|
|
27
27
|
overflow-y: auto;
|
|
28
28
|
}
|
|
29
|
-
.
|
|
29
|
+
._animationActive_yi5Xn {
|
|
30
30
|
transition-duration: var(--animation-slow);
|
|
31
31
|
transition-property: max-height, padding;
|
|
32
32
|
overflow-y: hidden !important;
|
|
33
33
|
}
|
|
34
|
-
.
|
|
34
|
+
._animationStop_IUQ5r {
|
|
35
35
|
max-height: 0 !important;
|
|
36
36
|
padding: 0 10px !important;
|
|
37
37
|
}
|
|
@@ -9,20 +9,20 @@
|
|
|
9
9
|
/*
|
|
10
10
|
* Ensure proper alignment of the vue material icons
|
|
11
11
|
*/
|
|
12
|
-
._material-design-
|
|
12
|
+
._material-design-icon_hQ2c6 {
|
|
13
13
|
display: flex;
|
|
14
14
|
align-self: center;
|
|
15
15
|
justify-self: center;
|
|
16
16
|
align-items: center;
|
|
17
17
|
justify-content: center;
|
|
18
18
|
}
|
|
19
|
-
.
|
|
19
|
+
._appSettingsDialogVersion_zdiMg {
|
|
20
20
|
--form-element-label-offset: calc(var(--border-radius-element) + var(--default-grid-baseline));
|
|
21
21
|
color: var(--color-text-maxcontrast);
|
|
22
22
|
margin-block-end: calc(8 * var(--default-grid-baseline));
|
|
23
23
|
margin-inline: var(--form-element-label-offset);
|
|
24
24
|
}
|
|
25
|
-
.
|
|
25
|
+
._appSettingsDialogVersion__legacy_S2z5e {
|
|
26
26
|
margin-inline: 0;
|
|
27
27
|
}/**
|
|
28
28
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
/*
|
|
10
10
|
* Ensure proper alignment of the vue material icons
|
|
11
11
|
*/
|
|
12
|
-
._material-design-
|
|
12
|
+
._material-design-icon_HlGlF {
|
|
13
13
|
display: flex;
|
|
14
14
|
align-self: center;
|
|
15
15
|
justify-self: center;
|
|
16
16
|
align-items: center;
|
|
17
17
|
justify-content: center;
|
|
18
18
|
}
|
|
19
|
-
.
|
|
19
|
+
._sidebarTabsButton_84y6N {
|
|
20
20
|
border: none;
|
|
21
21
|
color: var(--color-main-text);
|
|
22
22
|
font-size: var(--default-font-size);
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
gap: var(--default-grid-baseline);
|
|
27
27
|
min-width: var(--default-clickable-area);
|
|
28
28
|
}
|
|
29
|
-
.
|
|
29
|
+
._sidebarTabsButton_84y6N * {
|
|
30
30
|
cursor: pointer;
|
|
31
31
|
}
|
|
32
|
-
.
|
|
32
|
+
._sidebarTabsButton_84y6N:not(._sidebarTabsButton_legacy_hAgzM) {
|
|
33
33
|
position: relative;
|
|
34
34
|
border-radius: var(--border-radius-element);
|
|
35
35
|
background-color: var(--color-main-background);
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
padding-block-end: calc(var(--default-grid-baseline) * 2);
|
|
38
38
|
transition: background-color var(--animation-quick);
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
._sidebarTabsButton_84y6N:not(._sidebarTabsButton_legacy_hAgzM)::after {
|
|
41
41
|
content: "";
|
|
42
42
|
position: absolute;
|
|
43
43
|
bottom: 0;
|
|
@@ -50,82 +50,82 @@
|
|
|
50
50
|
transform: translateX(-50%);
|
|
51
51
|
transition: width var(--animation-quick), opacity var(--animation-quick);
|
|
52
52
|
}
|
|
53
|
-
.
|
|
53
|
+
._sidebarTabsButton_84y6N:not(._sidebarTabsButton_legacy_hAgzM):hover {
|
|
54
54
|
background-color: var(--color-background-hover);
|
|
55
55
|
}
|
|
56
|
-
.
|
|
56
|
+
._sidebarTabsButton_84y6N:not(._sidebarTabsButton_legacy_hAgzM):focus-visible {
|
|
57
57
|
outline: 2px solid var(--color-main-text);
|
|
58
58
|
outline-offset: 2px;
|
|
59
59
|
}
|
|
60
|
-
.
|
|
60
|
+
._sidebarTabsButton_legacy_hAgzM {
|
|
61
61
|
border-bottom: var(--default-grid-baseline) solid transparent !important;
|
|
62
62
|
border-radius: var(--border-radius-small);
|
|
63
63
|
background-color: var(--color-main-background);
|
|
64
64
|
padding: var(--border-radius-small);
|
|
65
65
|
transition: background-color var(--animation-quick), border-bottom-color var(--animation-quick);
|
|
66
66
|
}
|
|
67
|
-
.
|
|
67
|
+
._sidebarTabsButton_legacy_hAgzM:hover {
|
|
68
68
|
background-color: var(--color-background-hover) !important;
|
|
69
69
|
}
|
|
70
|
-
.
|
|
70
|
+
._sidebarTabsButton_legacy_hAgzM:active, ._sidebarTabsButton_legacy_hAgzM:focus {
|
|
71
71
|
background-color: var(--color-main-background) !important;
|
|
72
72
|
}
|
|
73
|
-
.
|
|
73
|
+
._sidebarTabsButton_selected_3SBK3 {
|
|
74
74
|
cursor: default;
|
|
75
75
|
}
|
|
76
|
-
.
|
|
76
|
+
._sidebarTabsButton_selected_3SBK3 * {
|
|
77
77
|
cursor: default;
|
|
78
78
|
}
|
|
79
|
-
.
|
|
79
|
+
._sidebarTabsButton_84y6N:not(._sidebarTabsButton_legacy_hAgzM)._sidebarTabsButton_selected_3SBK3 {
|
|
80
80
|
background-color: color-mix(in srgb, var(--color-primary-element) 8%, transparent);
|
|
81
81
|
}
|
|
82
|
-
.
|
|
82
|
+
._sidebarTabsButton_84y6N:not(._sidebarTabsButton_legacy_hAgzM)._sidebarTabsButton_selected_3SBK3::after {
|
|
83
83
|
width: 80%;
|
|
84
84
|
opacity: 1;
|
|
85
85
|
}
|
|
86
|
-
.
|
|
86
|
+
._sidebarTabsButton_84y6N:not(._sidebarTabsButton_legacy_hAgzM)._sidebarTabsButton_selected_3SBK3:hover {
|
|
87
87
|
background-color: color-mix(in srgb, var(--color-primary-element) 8%, transparent);
|
|
88
88
|
}
|
|
89
|
-
.
|
|
89
|
+
._sidebarTabsButton_animatedHighlight_aM1Xk:not(._sidebarTabsButton_legacy_hAgzM) {
|
|
90
90
|
background-color: transparent;
|
|
91
91
|
}
|
|
92
|
-
.
|
|
92
|
+
._sidebarTabsButton_animatedHighlight_aM1Xk:not(._sidebarTabsButton_legacy_hAgzM):hover {
|
|
93
93
|
background-color: transparent;
|
|
94
94
|
}
|
|
95
|
-
.
|
|
95
|
+
._sidebarTabsButton_legacy_hAgzM._sidebarTabsButton_selected_3SBK3 {
|
|
96
96
|
border-bottom-color: var(--color-primary-element) !important;
|
|
97
97
|
border-bottom-left-radius: 0;
|
|
98
98
|
border-bottom-right-radius: 0;
|
|
99
99
|
}
|
|
100
|
-
.
|
|
100
|
+
._sidebarTabsButton_legacy_hAgzM._sidebarTabsButton_selected_3SBK3:hover {
|
|
101
101
|
background-color: var(--color-primary-element-light-hover) !important;
|
|
102
102
|
color: var(--color-primary-element-light-text) !important;
|
|
103
103
|
}
|
|
104
|
-
.
|
|
104
|
+
._sidebarTabsButton__name_ZY51V {
|
|
105
105
|
font-weight: var(--font-weight-element, normal);
|
|
106
106
|
overflow: hidden;
|
|
107
107
|
text-overflow: ellipsis;
|
|
108
108
|
text-wrap: nowrap;
|
|
109
109
|
}
|
|
110
|
-
.
|
|
110
|
+
._sidebarTabsButton_legacy_hAgzM._sidebarTabsButton_selected_3SBK3 ._sidebarTabsButton__name_ZY51V {
|
|
111
111
|
font-weight: var(--font-weight-element, bold);
|
|
112
112
|
}
|
|
113
|
-
.
|
|
113
|
+
._sidebarTabsButton__icon_N8gq1 {
|
|
114
114
|
display: inline-grid;
|
|
115
115
|
place-items: center;
|
|
116
116
|
}
|
|
117
|
-
.
|
|
117
|
+
._sidebarTabsButton__iconLayer_7Lq7Y {
|
|
118
118
|
grid-area: 1/1;
|
|
119
119
|
display: inline-flex;
|
|
120
120
|
transition: opacity var(--animation-slow) ease-in-out;
|
|
121
121
|
}
|
|
122
|
-
.
|
|
122
|
+
._sidebarTabsButton__iconLayer_hidden_kU-q2 {
|
|
123
123
|
opacity: 0;
|
|
124
124
|
}
|
|
125
|
-
.
|
|
126
|
-
animation: _sidebar-tab-icon-
|
|
125
|
+
._sidebarTabsButton__icon_pop_S4IPa {
|
|
126
|
+
animation: _sidebar-tab-icon-pop_jtQ54 var(--animation-slow) ease-in-out;
|
|
127
127
|
}
|
|
128
|
-
@keyframes _sidebar-tab-icon-
|
|
128
|
+
@keyframes _sidebar-tab-icon-pop_jtQ54 {
|
|
129
129
|
0% {
|
|
130
130
|
transform: scale(1);
|
|
131
131
|
}
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
transform: scale(1);
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
|
-
.
|
|
139
|
+
._sidebarTabsButton__legacyIcon_jX-vn {
|
|
140
140
|
background-size: 20px;
|
|
141
141
|
display: flex;
|
|
142
142
|
align-items: center;
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
/*
|
|
10
10
|
* Ensure proper alignment of the vue material icons
|
|
11
11
|
*/
|
|
12
|
-
._material-design-
|
|
12
|
+
._material-design-icon_Ht5PM {
|
|
13
13
|
display: flex;
|
|
14
14
|
align-self: center;
|
|
15
15
|
justify-self: center;
|
|
16
16
|
align-items: center;
|
|
17
17
|
justify-content: center;
|
|
18
18
|
}
|
|
19
|
-
.
|
|
19
|
+
._assistantButton_INrLY {
|
|
20
20
|
--assistant-button-color: var(--color-element-assistant, linear-gradient(238deg, #A569D3 12%, #00679E 39%, #422083 86%));
|
|
21
21
|
--assistant-button-background-color: var(--color-background-assistant, #F6F5FF);
|
|
22
22
|
background-image: var(--color-border-assistant, linear-gradient(125deg, #7398FE 50%, #6104A4 125%));
|
|
@@ -26,28 +26,28 @@
|
|
|
26
26
|
padding-inline: 1px;
|
|
27
27
|
padding-block: 1px 2px;
|
|
28
28
|
}
|
|
29
|
-
.
|
|
29
|
+
._assistantButton_disabled_XbO66 {
|
|
30
30
|
filter: saturate(0.5);
|
|
31
31
|
opacity: 0.5;
|
|
32
32
|
}
|
|
33
|
-
.
|
|
33
|
+
._assistantButton_primary_tmvoO {
|
|
34
34
|
--assistant-button-color: white;
|
|
35
35
|
--assistant-button-background-color: var(--color-element-assistant,linear-gradient(238deg, #A569D3 12%, #00679E 39%, #422083 86%));
|
|
36
36
|
}
|
|
37
|
-
.
|
|
38
|
-
.
|
|
37
|
+
._assistantButton_primary_tmvoO ._assistantButton__icon_DL-Fv,
|
|
38
|
+
._assistantButton_primary_tmvoO ._assistantButton__text_w9n-j {
|
|
39
39
|
color: white !important;
|
|
40
40
|
}
|
|
41
|
-
.
|
|
41
|
+
._assistantButton__button_e4Hlc {
|
|
42
42
|
--button-size: calc(var(--default-clickable-area) - 3px) !important;
|
|
43
43
|
background-color: var(--assistant-button-background-color) !important;
|
|
44
44
|
background-image: var(--assistant-button-background-color) !important;
|
|
45
45
|
border: none !important;
|
|
46
46
|
}
|
|
47
|
-
.
|
|
47
|
+
._assistantButton__button_e4Hlc:hover {
|
|
48
48
|
filter: brightness(120%);
|
|
49
49
|
}
|
|
50
|
-
.
|
|
50
|
+
._assistantButton__text_w9n-j {
|
|
51
51
|
background-image: var(--assistant-button-color);
|
|
52
52
|
color: transparent !important;
|
|
53
53
|
background-clip: text;
|
|
@@ -9,19 +9,19 @@
|
|
|
9
9
|
/*
|
|
10
10
|
* Ensure proper alignment of the vue material icons
|
|
11
11
|
*/
|
|
12
|
-
._material-design-
|
|
12
|
+
._material-design-icon_QPrJl {
|
|
13
13
|
display: flex;
|
|
14
14
|
align-self: center;
|
|
15
15
|
justify-self: center;
|
|
16
16
|
align-items: center;
|
|
17
17
|
justify-content: center;
|
|
18
18
|
}
|
|
19
|
-
.
|
|
19
|
+
._assistantContent_fwJqA {
|
|
20
20
|
background-image: var(--color-border-assistant, linear-gradient(125deg, #7398FE 50%, #6104A4 125%));
|
|
21
21
|
border-radius: var(--border-radius-container);
|
|
22
22
|
padding: 2px;
|
|
23
23
|
}
|
|
24
|
-
.
|
|
24
|
+
._assistantContent__inner_6BPbA {
|
|
25
25
|
background-color: var(--color-background-assistant, #F6F5FF);
|
|
26
26
|
border-radius: calc(var(--border-radius-container) - 1px);
|
|
27
27
|
color: var(--color-main-text);
|
|
@@ -9,24 +9,24 @@
|
|
|
9
9
|
/*
|
|
10
10
|
* Ensure proper alignment of the vue material icons
|
|
11
11
|
*/
|
|
12
|
-
._material-design-
|
|
12
|
+
._material-design-icon_LHjr0 {
|
|
13
13
|
display: flex;
|
|
14
14
|
align-self: center;
|
|
15
15
|
justify-self: center;
|
|
16
16
|
align-items: center;
|
|
17
17
|
justify-content: center;
|
|
18
18
|
}
|
|
19
|
-
.
|
|
19
|
+
._assistantIcon_15w88 {
|
|
20
20
|
display: inline-flex;
|
|
21
21
|
align-items: center;
|
|
22
22
|
justify-content: center;
|
|
23
23
|
}
|
|
24
|
-
.
|
|
24
|
+
._assistantIcon_15w88:not(._assistantIcon_inline_i05Rb) {
|
|
25
25
|
display: flex;
|
|
26
26
|
min-height: var(--default-clickable-area);
|
|
27
27
|
min-width: var(--default-clickable-area);
|
|
28
28
|
}
|
|
29
|
-
.
|
|
29
|
+
._assistantIcon__svg_q9--x {
|
|
30
30
|
display: inline-block;
|
|
31
31
|
width: var(--v6629513e);
|
|
32
32
|
height: var(--v6629513e);
|