@bitrix24/b24ui-nuxt 2.4.1 → 2.4.2
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/.nuxt/b24ui.css +2 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/air-design-tokens/003_b24_context_light.css +1 -1
- package/dist/runtime/air-design-tokens/004_b24_context_dark.css +1 -1
- package/dist/runtime/air-design-tokens/005_b24_context_edge-light.css +1 -1
- package/dist/runtime/air-design-tokens/006_b24_context_edge-dark.css +1 -1
- package/dist/runtime/air-design-tokens/013_b24_mobile_light.css +1 -1
- package/dist/runtime/air-design-tokens/014_b24_mobile_dark.css +1 -1
- package/dist/runtime/air-design-tokens/components/navigation-menu.css +1 -1
- package/dist/runtime/components/CommandPalette.d.vue.ts +2 -2
- package/dist/runtime/components/CommandPalette.vue +1 -1
- package/dist/runtime/components/CommandPalette.vue.d.ts +2 -2
- package/dist/runtime/utils/tv.js +1 -0
- package/dist/shared/{b24ui-nuxt.C0de-Y4w.mjs → b24ui-nuxt.C-GSAtA1.mjs} +153 -113
- package/dist/unplugin.mjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +1 -1
|
@@ -102,7 +102,7 @@ export interface CommandPaletteProps<G extends CommandPaletteGroup<T> = CommandP
|
|
|
102
102
|
autofocus?: boolean;
|
|
103
103
|
/**
|
|
104
104
|
* Display a close button in the input (useful when inside a Modal for example).
|
|
105
|
-
* `{
|
|
105
|
+
* `{ color: 'air-tertiary-no-accent' }`{lang="ts-type"}
|
|
106
106
|
* @emits 'update:open'
|
|
107
107
|
* @defaultValue false
|
|
108
108
|
*/
|
|
@@ -115,7 +115,7 @@ export interface CommandPaletteProps<G extends CommandPaletteGroup<T> = CommandP
|
|
|
115
115
|
closeIcon?: IconComponent;
|
|
116
116
|
/**
|
|
117
117
|
* Display a button to navigate back in history.
|
|
118
|
-
* `{
|
|
118
|
+
* `{ color: 'air-tertiary-accent' }`{lang="ts-type"}
|
|
119
119
|
* @defaultValue true
|
|
120
120
|
*/
|
|
121
121
|
back?: boolean | Omit<ButtonProps, LinkPropsKeys>;
|
package/dist/runtime/utils/tv.js
CHANGED