@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/dist/chunks/autolink.mjs
CHANGED
|
@@ -29,10 +29,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
29
29
|
};
|
|
30
30
|
}
|
|
31
31
|
});
|
|
32
|
-
const externalLink = "
|
|
33
|
-
const externalLink_decorated = "
|
|
32
|
+
const externalLink = "_externalLink_pbE0W";
|
|
33
|
+
const externalLink_decorated = "_externalLink_decorated_AvzkD";
|
|
34
34
|
const style0 = {
|
|
35
|
-
"material-design-icon": "_material-design-
|
|
35
|
+
"material-design-icon": "_material-design-icon_Fq-2a",
|
|
36
36
|
externalLink,
|
|
37
37
|
externalLink_decorated
|
|
38
38
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
|
3
|
+
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Returns array of used non-standard tokens.
|
|
7
|
+
*
|
|
8
|
+
* @param format The format string.
|
|
9
|
+
*/
|
|
10
|
+
export declare function checkForNonStandardTokens(format: string): string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextcloud/vue",
|
|
3
|
-
"version": "9.13.
|
|
3
|
+
"version": "9.13.1",
|
|
4
4
|
"description": "Nextcloud vue components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vuejs",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
},
|
|
123
123
|
"devDependencies": {
|
|
124
124
|
"@babel/plugin-syntax-import-assertions": "^7.29.7",
|
|
125
|
-
"@babel/plugin-transform-typescript": "^7.29.
|
|
125
|
+
"@babel/plugin-transform-typescript": "^7.29.9",
|
|
126
126
|
"@babel/preset-typescript": "^7.29.7",
|
|
127
127
|
"@fontsource/roboto": "^5.3.0",
|
|
128
128
|
"@mdi/js": "^7.4.47",
|
|
@@ -138,19 +138,19 @@
|
|
|
138
138
|
"@playwright/experimental-ct-vue": "^1.62.1",
|
|
139
139
|
"@playwright/test": "^1.63.0",
|
|
140
140
|
"@types/gettext-parser": "^9.0.0",
|
|
141
|
-
"@types/node": "^26.
|
|
141
|
+
"@types/node": "^26.6.2",
|
|
142
142
|
"@types/webpack-env": "^1.18.8",
|
|
143
|
-
"@vitest/coverage-v8": "^5.0.
|
|
143
|
+
"@vitest/coverage-v8": "^5.0.1",
|
|
144
144
|
"@vue/test-utils": "^2.4.6",
|
|
145
145
|
"@vue/tsconfig": "^0.9.1",
|
|
146
146
|
"babel-loader-exclude-node-modules-except": "^1.2.4",
|
|
147
147
|
"core-js": "^3.50.0",
|
|
148
|
-
"eslint": "^10.
|
|
148
|
+
"eslint": "^10.11.0",
|
|
149
149
|
"file-loader": "^6.2.0",
|
|
150
150
|
"gettext-extractor": "^4.0.6",
|
|
151
151
|
"gettext-parser": "^9.1.1",
|
|
152
152
|
"glob": "^13.0.6",
|
|
153
|
-
"jsdom": "^30.0
|
|
153
|
+
"jsdom": "^30.1.0",
|
|
154
154
|
"remark-gfm": "^4.0.1",
|
|
155
155
|
"resolve-url-loader": "^5.0.0",
|
|
156
156
|
"sass": "^1.104.1",
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
"vue-material-design-icons": "^5.3.1",
|
|
164
164
|
"vue-styleguidist": "^4.72.4",
|
|
165
165
|
"vue-tsc": "^3.3.11",
|
|
166
|
-
"webpack": "^5.111.
|
|
166
|
+
"webpack": "^5.111.1",
|
|
167
167
|
"webpack-merge": "^6.0.1"
|
|
168
168
|
},
|
|
169
169
|
"peerDependencies": {
|