sit-onyx 1.4.0-dev-20251112123258 → 1.4.0-dev-20251112131902
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/dist/i18n/locales/de-DE.json +2 -1
- package/dist/i18n/locales/en-US.json +2 -1
- package/dist/i18n/locales/en-US.json.d.ts +2 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm-bundler.js +3 -1
- package/dist/index.esm-bundler.js.map +1 -1
- package/dist/index.js +3 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -188,5 +188,6 @@ export * from './types/index.js';
|
|
|
188
188
|
export { createOnyx } from './utils/plugin.js';
|
|
189
189
|
export * from './components/illustrations/index.js';
|
|
190
190
|
export * from './composables/themeTransition.js';
|
|
191
|
+
export * from './utils/attrs.js';
|
|
191
192
|
export * from './utils/router.js';
|
|
192
193
|
export { normalizedIncludes } from './utils/strings.js';
|
|
@@ -358,7 +358,7 @@ const calendar = { "todayButton": { "label": "Today", "tooltip": "Jump to today"
|
|
|
358
358
|
const flyoutMenu = { "moreActions": "More actions", "toggleActions": { "click": "Click to toggle action visibility", "hover": "Hover/Focus to toggle action visibility" } };
|
|
359
359
|
const slider = { "decreaseValueBy": "Decrease value by {n}", "increaseValueBy": "Increase value by {n}", "changeValue": "Change value" };
|
|
360
360
|
const codeTabs = { "label": "Code snippets", "copySnippet": "Copy code", "copied": "Copied!", "failed": "Failed!", "tabLabel": "Code" };
|
|
361
|
-
const globalSearch = { "label": "Global search", "searchResults": "Search results", "input": { "label": "Search for content", "placeholder": "Search..." }, "shortcuts": { "move": "Navigate", "select": "Select" } };
|
|
361
|
+
const globalSearch = { "label": "Global search", "searchResults": "Search results", "input": { "label": "Search for content", "placeholder": "Search..." }, "shortcuts": { "move": "Navigate", "select": "Select" }, "system": "System" };
|
|
362
362
|
const enUS = {
|
|
363
363
|
yes,
|
|
364
364
|
no,
|
|
@@ -16132,6 +16132,7 @@ export {
|
|
|
16132
16132
|
createToastProvider,
|
|
16133
16133
|
extractLinkProps,
|
|
16134
16134
|
isInternalLink,
|
|
16135
|
+
mergeVueProps,
|
|
16135
16136
|
normalizedIncludes,
|
|
16136
16137
|
provideI18n,
|
|
16137
16138
|
provideSkeletonContext,
|
|
@@ -16142,6 +16143,7 @@ export {
|
|
|
16142
16143
|
useGlobalFAB,
|
|
16143
16144
|
useLink,
|
|
16144
16145
|
useNotification,
|
|
16146
|
+
useRootAttrs,
|
|
16145
16147
|
useScrollEnd,
|
|
16146
16148
|
useSkeletonContext,
|
|
16147
16149
|
useThemeTransition,
|