sit-onyx 1.0.0-beta.113 → 1.0.0-beta.115
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/components/OnyxBottomBar/OnyxBottomBar.vue.d.ts +2 -2
- package/dist/components/OnyxHeadline/types.d.ts +1 -3
- package/dist/i18n/locales/de-DE.json +4 -0
- package/dist/i18n/locales/en-US.json +4 -0
- package/dist/index.cjs +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +600 -590
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/src/i18n/locales/de-DE.json +4 -0
- package/src/i18n/locales/en-US.json +4 -0
|
@@ -9,7 +9,7 @@ declare function __VLS_template(): {
|
|
|
9
9
|
/**
|
|
10
10
|
* Bottom bar content. This slot is right aligned and should be used by buttons and icon buttons.
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
default?(): unknown;
|
|
13
13
|
}> & {
|
|
14
14
|
/**
|
|
15
15
|
* Bottom bar content. This slot is left aligned and should be used by buttons and icon buttons.
|
|
@@ -18,7 +18,7 @@ declare function __VLS_template(): {
|
|
|
18
18
|
/**
|
|
19
19
|
* Bottom bar content. This slot is right aligned and should be used by buttons and icon buttons.
|
|
20
20
|
*/
|
|
21
|
-
|
|
21
|
+
default?(): unknown;
|
|
22
22
|
};
|
|
23
23
|
refs: {};
|
|
24
24
|
rootEl: HTMLDivElement;
|
|
@@ -7,9 +7,7 @@ export type OnyxHeadlineProps = {
|
|
|
7
7
|
is: HeadlineType;
|
|
8
8
|
/**
|
|
9
9
|
* Unique headline hash/ID (without "#") that is used to show a "#" icon on hover. Makes the headline clickable and a URL that points to this headline
|
|
10
|
-
* is copied to the users clipboard.
|
|
11
|
-
*
|
|
12
|
-
* If your headline content is dynamic, you can use our `normalizeUrlHash()` utility to generate it.
|
|
10
|
+
* is copied to the users clipboard. Will be automatically normalized when containing non URL-safe characters.
|
|
13
11
|
*
|
|
14
12
|
* @example "about-us"
|
|
15
13
|
*/
|