ng-blatui 1.2.0 → 1.4.0
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/fesm2022/ng-blatui.mjs +605 -3
- package/fesm2022/ng-blatui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ng-blatui.d.ts +213 -1
package/fesm2022/ng-blatui.mjs
CHANGED
|
@@ -70,7 +70,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImpor
|
|
|
70
70
|
}], propDecorators: { variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
71
71
|
|
|
72
72
|
const BASE = 'inline-flex items-center justify-center rounded-md border font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden';
|
|
73
|
-
const SIZES = {
|
|
73
|
+
const SIZES$1 = {
|
|
74
74
|
sm: 'px-1.5 py-px text-[0.625rem]',
|
|
75
75
|
default: 'px-2 py-0.5 text-xs',
|
|
76
76
|
lg: 'px-3 py-1 text-sm [&>svg]:size-3.5',
|
|
@@ -144,7 +144,7 @@ class BuiBadge {
|
|
|
144
144
|
computedClass = computed(() => {
|
|
145
145
|
const tone = this.tone();
|
|
146
146
|
const toneOrVariant = tone === null ? brandClass(this.variant()) : TONES[tone][intensityFor(this.variant())];
|
|
147
|
-
return cn(BASE, SIZES[this.size()], toneOrVariant, this.userClass());
|
|
147
|
+
return cn(BASE, SIZES$1[this.size()], toneOrVariant, this.userClass());
|
|
148
148
|
}, /* @ts-ignore */
|
|
149
149
|
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
150
150
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBadge, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
@@ -1997,6 +1997,608 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImpor
|
|
|
1997
1997
|
}]
|
|
1998
1998
|
}], propDecorators: { text: [{ type: i0.Input, args: [{ isSignal: true, alias: "buiTooltip", required: true }] }] } });
|
|
1999
1999
|
|
|
2000
|
+
/** Breadcrumb navigation landmark (`<nav aria-label="breadcrumb">`). */
|
|
2001
|
+
class BuiBreadcrumb {
|
|
2002
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumb, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2003
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.2", type: BuiBreadcrumb, isStandalone: true, selector: "nav[buiBreadcrumb]", host: { attributes: { "aria-label": "breadcrumb", "data-slot": "breadcrumb" } }, ngImport: i0 });
|
|
2004
|
+
}
|
|
2005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumb, decorators: [{
|
|
2006
|
+
type: Directive,
|
|
2007
|
+
args: [{
|
|
2008
|
+
selector: 'nav[buiBreadcrumb]',
|
|
2009
|
+
host: { 'aria-label': 'breadcrumb', 'data-slot': 'breadcrumb' },
|
|
2010
|
+
}]
|
|
2011
|
+
}] });
|
|
2012
|
+
class BuiBreadcrumbList {
|
|
2013
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2014
|
+
computedClass = computed(() => cn('flex flex-wrap items-center gap-1.5 text-sm break-words text-muted-foreground sm:gap-2.5', this.userClass()), /* @ts-ignore */
|
|
2015
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2016
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbList, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2017
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiBreadcrumbList, isStandalone: true, selector: "ol[buiBreadcrumbList]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "breadcrumb-list" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2018
|
+
}
|
|
2019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbList, decorators: [{
|
|
2020
|
+
type: Directive,
|
|
2021
|
+
args: [{
|
|
2022
|
+
selector: 'ol[buiBreadcrumbList]',
|
|
2023
|
+
host: { 'data-slot': 'breadcrumb-list', '[class]': 'computedClass()' },
|
|
2024
|
+
}]
|
|
2025
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2026
|
+
class BuiBreadcrumbItem {
|
|
2027
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2028
|
+
computedClass = computed(() => cn('inline-flex items-center gap-1.5', this.userClass()), /* @ts-ignore */
|
|
2029
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2030
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbItem, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2031
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiBreadcrumbItem, isStandalone: true, selector: "li[buiBreadcrumbItem]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "breadcrumb-item" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2032
|
+
}
|
|
2033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbItem, decorators: [{
|
|
2034
|
+
type: Directive,
|
|
2035
|
+
args: [{
|
|
2036
|
+
selector: 'li[buiBreadcrumbItem]',
|
|
2037
|
+
host: { 'data-slot': 'breadcrumb-item', '[class]': 'computedClass()' },
|
|
2038
|
+
}]
|
|
2039
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2040
|
+
class BuiBreadcrumbLink {
|
|
2041
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2042
|
+
computedClass = computed(() => cn('transition-colors hover:text-foreground', this.userClass()), /* @ts-ignore */
|
|
2043
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2044
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbLink, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2045
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiBreadcrumbLink, isStandalone: true, selector: "a[buiBreadcrumbLink]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "breadcrumb-link" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2046
|
+
}
|
|
2047
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbLink, decorators: [{
|
|
2048
|
+
type: Directive,
|
|
2049
|
+
args: [{
|
|
2050
|
+
selector: 'a[buiBreadcrumbLink]',
|
|
2051
|
+
host: { 'data-slot': 'breadcrumb-link', '[class]': 'computedClass()' },
|
|
2052
|
+
}]
|
|
2053
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2054
|
+
/** The current page in a breadcrumb — non-interactive, `aria-current="page"`. */
|
|
2055
|
+
class BuiBreadcrumbPage {
|
|
2056
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2057
|
+
computedClass = computed(() => cn('font-normal text-foreground', this.userClass()), /* @ts-ignore */
|
|
2058
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2059
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbPage, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2060
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiBreadcrumbPage, isStandalone: true, selector: "[buiBreadcrumbPage]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "breadcrumb-page", "role": "link", "aria-disabled": "true", "aria-current": "page" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2061
|
+
}
|
|
2062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbPage, decorators: [{
|
|
2063
|
+
type: Directive,
|
|
2064
|
+
args: [{
|
|
2065
|
+
selector: '[buiBreadcrumbPage]',
|
|
2066
|
+
host: {
|
|
2067
|
+
'data-slot': 'breadcrumb-page',
|
|
2068
|
+
role: 'link',
|
|
2069
|
+
'aria-disabled': 'true',
|
|
2070
|
+
'aria-current': 'page',
|
|
2071
|
+
'[class]': 'computedClass()',
|
|
2072
|
+
},
|
|
2073
|
+
}]
|
|
2074
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2075
|
+
/** Separator between breadcrumb items (defaults to a chevron). */
|
|
2076
|
+
class BuiBreadcrumbSeparator {
|
|
2077
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2078
|
+
computedClass = computed(() => cn('[&>svg]:size-3.5', this.userClass()), /* @ts-ignore */
|
|
2079
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2080
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbSeparator, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2081
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.2", type: BuiBreadcrumbSeparator, isStandalone: true, selector: "li[buiBreadcrumbSeparator]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "breadcrumb-separator", "role": "presentation", "aria-hidden": "true" }, properties: { "class": "computedClass()" } }, ngImport: i0, template: `
|
|
2082
|
+
<ng-content>
|
|
2083
|
+
<svg
|
|
2084
|
+
viewBox="0 0 24 24"
|
|
2085
|
+
fill="none"
|
|
2086
|
+
stroke="currentColor"
|
|
2087
|
+
stroke-width="2"
|
|
2088
|
+
stroke-linecap="round"
|
|
2089
|
+
stroke-linejoin="round"
|
|
2090
|
+
class="size-3.5"
|
|
2091
|
+
>
|
|
2092
|
+
<path d="m9 18 6-6-6-6" />
|
|
2093
|
+
</svg>
|
|
2094
|
+
</ng-content>
|
|
2095
|
+
`, isInline: true });
|
|
2096
|
+
}
|
|
2097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbSeparator, decorators: [{
|
|
2098
|
+
type: Component,
|
|
2099
|
+
args: [{
|
|
2100
|
+
selector: 'li[buiBreadcrumbSeparator]',
|
|
2101
|
+
host: {
|
|
2102
|
+
'data-slot': 'breadcrumb-separator',
|
|
2103
|
+
role: 'presentation',
|
|
2104
|
+
'aria-hidden': 'true',
|
|
2105
|
+
'[class]': 'computedClass()',
|
|
2106
|
+
},
|
|
2107
|
+
template: `
|
|
2108
|
+
<ng-content>
|
|
2109
|
+
<svg
|
|
2110
|
+
viewBox="0 0 24 24"
|
|
2111
|
+
fill="none"
|
|
2112
|
+
stroke="currentColor"
|
|
2113
|
+
stroke-width="2"
|
|
2114
|
+
stroke-linecap="round"
|
|
2115
|
+
stroke-linejoin="round"
|
|
2116
|
+
class="size-3.5"
|
|
2117
|
+
>
|
|
2118
|
+
<path d="m9 18 6-6-6-6" />
|
|
2119
|
+
</svg>
|
|
2120
|
+
</ng-content>
|
|
2121
|
+
`,
|
|
2122
|
+
}]
|
|
2123
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2124
|
+
/** Collapsed breadcrumb indicator (ellipsis). */
|
|
2125
|
+
class BuiBreadcrumbEllipsis {
|
|
2126
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2127
|
+
computedClass = computed(() => cn('flex size-9 items-center justify-center', this.userClass()), /* @ts-ignore */
|
|
2128
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2129
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbEllipsis, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2130
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.2", type: BuiBreadcrumbEllipsis, isStandalone: true, selector: "li[buiBreadcrumbEllipsis]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "breadcrumb-ellipsis", "role": "presentation", "aria-hidden": "true" }, properties: { "class": "computedClass()" } }, ngImport: i0, template: `
|
|
2131
|
+
<svg
|
|
2132
|
+
viewBox="0 0 24 24"
|
|
2133
|
+
fill="none"
|
|
2134
|
+
stroke="currentColor"
|
|
2135
|
+
stroke-width="2"
|
|
2136
|
+
stroke-linecap="round"
|
|
2137
|
+
stroke-linejoin="round"
|
|
2138
|
+
class="size-4"
|
|
2139
|
+
>
|
|
2140
|
+
<circle cx="12" cy="12" r="1" />
|
|
2141
|
+
<circle cx="19" cy="12" r="1" />
|
|
2142
|
+
<circle cx="5" cy="12" r="1" />
|
|
2143
|
+
</svg>
|
|
2144
|
+
<span class="sr-only">More</span>
|
|
2145
|
+
`, isInline: true });
|
|
2146
|
+
}
|
|
2147
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiBreadcrumbEllipsis, decorators: [{
|
|
2148
|
+
type: Component,
|
|
2149
|
+
args: [{
|
|
2150
|
+
selector: 'li[buiBreadcrumbEllipsis]',
|
|
2151
|
+
host: {
|
|
2152
|
+
'data-slot': 'breadcrumb-ellipsis',
|
|
2153
|
+
role: 'presentation',
|
|
2154
|
+
'aria-hidden': 'true',
|
|
2155
|
+
'[class]': 'computedClass()',
|
|
2156
|
+
},
|
|
2157
|
+
template: `
|
|
2158
|
+
<svg
|
|
2159
|
+
viewBox="0 0 24 24"
|
|
2160
|
+
fill="none"
|
|
2161
|
+
stroke="currentColor"
|
|
2162
|
+
stroke-width="2"
|
|
2163
|
+
stroke-linecap="round"
|
|
2164
|
+
stroke-linejoin="round"
|
|
2165
|
+
class="size-4"
|
|
2166
|
+
>
|
|
2167
|
+
<circle cx="12" cy="12" r="1" />
|
|
2168
|
+
<circle cx="19" cy="12" r="1" />
|
|
2169
|
+
<circle cx="5" cy="12" r="1" />
|
|
2170
|
+
</svg>
|
|
2171
|
+
<span class="sr-only">More</span>
|
|
2172
|
+
`,
|
|
2173
|
+
}]
|
|
2174
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2175
|
+
|
|
2176
|
+
/** Keyboard key styling, applied to a native `<kbd>` element. */
|
|
2177
|
+
class BuiKbd {
|
|
2178
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2179
|
+
computedClass = computed(() => cn('pointer-events-none inline-flex h-5 w-fit min-w-5 items-center justify-center gap-1 rounded-sm bg-muted px-1 font-sans text-xs font-medium text-muted-foreground select-none', this.userClass()), /* @ts-ignore */
|
|
2180
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2181
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiKbd, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2182
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiKbd, isStandalone: true, selector: "kbd[buiKbd]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "kbd" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2183
|
+
}
|
|
2184
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiKbd, decorators: [{
|
|
2185
|
+
type: Directive,
|
|
2186
|
+
args: [{
|
|
2187
|
+
selector: 'kbd[buiKbd]',
|
|
2188
|
+
host: { 'data-slot': 'kbd', '[class]': 'computedClass()' },
|
|
2189
|
+
}]
|
|
2190
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2191
|
+
|
|
2192
|
+
/** Constrains projected content to a given aspect ratio (e.g. `16 / 9`). */
|
|
2193
|
+
class BuiAspectRatio {
|
|
2194
|
+
ratio = input('1 / 1', /* @ts-ignore */
|
|
2195
|
+
...(ngDevMode ? [{ debugName: "ratio" }] : /* istanbul ignore next */ []));
|
|
2196
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2197
|
+
computedClass = computed(() => cn('relative block', this.userClass()), /* @ts-ignore */
|
|
2198
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2199
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiAspectRatio, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2200
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.2", type: BuiAspectRatio, isStandalone: true, selector: "bui-aspect-ratio", inputs: { ratio: { classPropertyName: "ratio", publicName: "ratio", isSignal: true, isRequired: false, transformFunction: null }, userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "aspect-ratio" }, properties: { "style.aspect-ratio": "ratio()", "class": "computedClass()" } }, ngImport: i0, template: `<ng-content />`, isInline: true });
|
|
2201
|
+
}
|
|
2202
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiAspectRatio, decorators: [{
|
|
2203
|
+
type: Component,
|
|
2204
|
+
args: [{
|
|
2205
|
+
selector: 'bui-aspect-ratio',
|
|
2206
|
+
host: {
|
|
2207
|
+
'data-slot': 'aspect-ratio',
|
|
2208
|
+
'[style.aspect-ratio]': 'ratio()',
|
|
2209
|
+
'[class]': 'computedClass()',
|
|
2210
|
+
},
|
|
2211
|
+
template: `<ng-content />`,
|
|
2212
|
+
}]
|
|
2213
|
+
}], propDecorators: { ratio: [{ type: i0.Input, args: [{ isSignal: true, alias: "ratio", required: false }] }], userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2214
|
+
|
|
2215
|
+
/** Groups buttons (and inputs) into a single segmented control. */
|
|
2216
|
+
class BuiButtonGroup {
|
|
2217
|
+
orientation = input('horizontal', /* @ts-ignore */
|
|
2218
|
+
...(ngDevMode ? [{ debugName: "orientation" }] : /* istanbul ignore next */ []));
|
|
2219
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2220
|
+
computedClass = computed(() => cn('flex w-fit items-stretch has-[>[data-slot=button-group]]:gap-2 data-[orientation=vertical]:flex-col [&>*]:focus-within:z-10 [&>*]:focus-visible:z-10 data-[orientation=horizontal]:[&>*:not(:first-child)]:rounded-l-none data-[orientation=horizontal]:[&>*:not(:first-child)]:border-l-0 data-[orientation=vertical]:[&>*:not(:first-child)]:rounded-t-none data-[orientation=vertical]:[&>*:not(:first-child)]:border-t-0 data-[orientation=horizontal]:[&>*:not(:last-child)]:rounded-r-none data-[orientation=vertical]:[&>*:not(:last-child)]:rounded-b-none', this.userClass()), /* @ts-ignore */
|
|
2221
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2222
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiButtonGroup, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2223
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiButtonGroup, isStandalone: true, selector: "[buiButtonGroup]", inputs: { orientation: { classPropertyName: "orientation", publicName: "orientation", isSignal: true, isRequired: false, transformFunction: null }, userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "role": "group", "data-slot": "button-group" }, properties: { "attr.data-orientation": "orientation()", "class": "computedClass()" } }, ngImport: i0 });
|
|
2224
|
+
}
|
|
2225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiButtonGroup, decorators: [{
|
|
2226
|
+
type: Directive,
|
|
2227
|
+
args: [{
|
|
2228
|
+
selector: '[buiButtonGroup]',
|
|
2229
|
+
host: {
|
|
2230
|
+
role: 'group',
|
|
2231
|
+
'data-slot': 'button-group',
|
|
2232
|
+
'[attr.data-orientation]': 'orientation()',
|
|
2233
|
+
'[class]': 'computedClass()',
|
|
2234
|
+
},
|
|
2235
|
+
}]
|
|
2236
|
+
}], propDecorators: { orientation: [{ type: i0.Input, args: [{ isSignal: true, alias: "orientation", required: false }] }], userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2237
|
+
/** A non-button text segment inside a button group. */
|
|
2238
|
+
class BuiButtonGroupText {
|
|
2239
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2240
|
+
computedClass = computed(() => cn('flex items-center gap-2 rounded-md border bg-muted px-4 text-sm font-medium shadow-xs', this.userClass()), /* @ts-ignore */
|
|
2241
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2242
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiButtonGroupText, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2243
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiButtonGroupText, isStandalone: true, selector: "[buiButtonGroupText]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "button-group-text" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2244
|
+
}
|
|
2245
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiButtonGroupText, decorators: [{
|
|
2246
|
+
type: Directive,
|
|
2247
|
+
args: [{
|
|
2248
|
+
selector: '[buiButtonGroupText]',
|
|
2249
|
+
host: { 'data-slot': 'button-group-text', '[class]': 'computedClass()' },
|
|
2250
|
+
}]
|
|
2251
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2252
|
+
|
|
2253
|
+
/** Empty-state container. */
|
|
2254
|
+
class BuiEmpty {
|
|
2255
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2256
|
+
computedClass = computed(() => cn('flex min-w-0 flex-1 flex-col items-center justify-center gap-6 rounded-lg border border-dashed p-6 text-center text-balance md:p-12', this.userClass()), /* @ts-ignore */
|
|
2257
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2258
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmpty, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2259
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiEmpty, isStandalone: true, selector: "[buiEmpty]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "empty" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2260
|
+
}
|
|
2261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmpty, decorators: [{
|
|
2262
|
+
type: Directive,
|
|
2263
|
+
args: [{
|
|
2264
|
+
selector: '[buiEmpty]',
|
|
2265
|
+
host: { 'data-slot': 'empty', '[class]': 'computedClass()' },
|
|
2266
|
+
}]
|
|
2267
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2268
|
+
class BuiEmptyHeader {
|
|
2269
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2270
|
+
computedClass = computed(() => cn('flex max-w-sm flex-col items-center gap-2 text-center', this.userClass()), /* @ts-ignore */
|
|
2271
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2272
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmptyHeader, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2273
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiEmptyHeader, isStandalone: true, selector: "[buiEmptyHeader]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "empty-header" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2274
|
+
}
|
|
2275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmptyHeader, decorators: [{
|
|
2276
|
+
type: Directive,
|
|
2277
|
+
args: [{
|
|
2278
|
+
selector: '[buiEmptyHeader]',
|
|
2279
|
+
host: { 'data-slot': 'empty-header', '[class]': 'computedClass()' },
|
|
2280
|
+
}]
|
|
2281
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2282
|
+
class BuiEmptyMedia {
|
|
2283
|
+
variant = input('default', /* @ts-ignore */
|
|
2284
|
+
...(ngDevMode ? [{ debugName: "variant" }] : /* istanbul ignore next */ []));
|
|
2285
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2286
|
+
computedClass = computed(() => cn('mb-2 flex shrink-0 items-center justify-center', this.variant() === 'icon' &&
|
|
2287
|
+
"size-10 rounded-lg bg-muted text-foreground [&_svg:not([class*='size-'])]:size-6", this.userClass()), /* @ts-ignore */
|
|
2288
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2289
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmptyMedia, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2290
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiEmptyMedia, isStandalone: true, selector: "[buiEmptyMedia]", inputs: { variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "empty-media" }, properties: { "attr.data-variant": "variant()", "class": "computedClass()" } }, ngImport: i0 });
|
|
2291
|
+
}
|
|
2292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmptyMedia, decorators: [{
|
|
2293
|
+
type: Directive,
|
|
2294
|
+
args: [{
|
|
2295
|
+
selector: '[buiEmptyMedia]',
|
|
2296
|
+
host: {
|
|
2297
|
+
'data-slot': 'empty-media',
|
|
2298
|
+
'[attr.data-variant]': 'variant()',
|
|
2299
|
+
'[class]': 'computedClass()',
|
|
2300
|
+
},
|
|
2301
|
+
}]
|
|
2302
|
+
}], propDecorators: { variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2303
|
+
class BuiEmptyTitle {
|
|
2304
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2305
|
+
computedClass = computed(() => cn('text-lg font-medium tracking-tight', this.userClass()), /* @ts-ignore */
|
|
2306
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2307
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmptyTitle, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2308
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiEmptyTitle, isStandalone: true, selector: "[buiEmptyTitle]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "empty-title" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2309
|
+
}
|
|
2310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmptyTitle, decorators: [{
|
|
2311
|
+
type: Directive,
|
|
2312
|
+
args: [{
|
|
2313
|
+
selector: '[buiEmptyTitle]',
|
|
2314
|
+
host: { 'data-slot': 'empty-title', '[class]': 'computedClass()' },
|
|
2315
|
+
}]
|
|
2316
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2317
|
+
class BuiEmptyDescription {
|
|
2318
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2319
|
+
computedClass = computed(() => cn('text-sm/relaxed text-muted-foreground [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary', this.userClass()), /* @ts-ignore */
|
|
2320
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2321
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmptyDescription, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2322
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiEmptyDescription, isStandalone: true, selector: "[buiEmptyDescription]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "empty-description" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2323
|
+
}
|
|
2324
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmptyDescription, decorators: [{
|
|
2325
|
+
type: Directive,
|
|
2326
|
+
args: [{
|
|
2327
|
+
selector: '[buiEmptyDescription]',
|
|
2328
|
+
host: { 'data-slot': 'empty-description', '[class]': 'computedClass()' },
|
|
2329
|
+
}]
|
|
2330
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2331
|
+
class BuiEmptyContent {
|
|
2332
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2333
|
+
computedClass = computed(() => cn('flex w-full max-w-sm min-w-0 flex-col items-center gap-4 text-sm text-balance', this.userClass()), /* @ts-ignore */
|
|
2334
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2335
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmptyContent, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2336
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiEmptyContent, isStandalone: true, selector: "[buiEmptyContent]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "empty-content" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2337
|
+
}
|
|
2338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiEmptyContent, decorators: [{
|
|
2339
|
+
type: Directive,
|
|
2340
|
+
args: [{
|
|
2341
|
+
selector: '[buiEmptyContent]',
|
|
2342
|
+
host: { 'data-slot': 'empty-content', '[class]': 'computedClass()' },
|
|
2343
|
+
}]
|
|
2344
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2345
|
+
|
|
2346
|
+
const SIZES = {
|
|
2347
|
+
sm: 'max-w-3xl',
|
|
2348
|
+
md: 'max-w-5xl',
|
|
2349
|
+
lg: 'max-w-6xl',
|
|
2350
|
+
xl: 'max-w-7xl',
|
|
2351
|
+
prose: 'max-w-prose',
|
|
2352
|
+
full: 'max-w-full',
|
|
2353
|
+
};
|
|
2354
|
+
/** Centered, padded page container with a max-width scale. */
|
|
2355
|
+
class BuiContainer {
|
|
2356
|
+
size = input('lg', /* @ts-ignore */
|
|
2357
|
+
...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
2358
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2359
|
+
computedClass = computed(() => cn('mx-auto w-full px-4 sm:px-6 lg:px-8', SIZES[this.size()], this.userClass()), /* @ts-ignore */
|
|
2360
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2361
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiContainer, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2362
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiContainer, isStandalone: true, selector: "[buiContainer]", inputs: { size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "container" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2363
|
+
}
|
|
2364
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiContainer, decorators: [{
|
|
2365
|
+
type: Directive,
|
|
2366
|
+
args: [{
|
|
2367
|
+
selector: '[buiContainer]',
|
|
2368
|
+
host: { 'data-slot': 'container', '[class]': 'computedClass()' },
|
|
2369
|
+
}]
|
|
2370
|
+
}], propDecorators: { size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2371
|
+
|
|
2372
|
+
const FIELD_ORIENT = {
|
|
2373
|
+
vertical: 'flex-col [&>*]:w-full [&>.sr-only]:w-auto',
|
|
2374
|
+
horizontal: 'flex-row items-center [&>[data-slot=field-label]]:flex-auto',
|
|
2375
|
+
responsive: 'flex-col [&>*]:w-full @md/field-group:flex-row @md/field-group:items-center @md/field-group:[&>*]:w-auto',
|
|
2376
|
+
};
|
|
2377
|
+
/** A form field row grouping a label, control, description and error. */
|
|
2378
|
+
class BuiField {
|
|
2379
|
+
orientation = input('vertical', /* @ts-ignore */
|
|
2380
|
+
...(ngDevMode ? [{ debugName: "orientation" }] : /* istanbul ignore next */ []));
|
|
2381
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2382
|
+
computedClass = computed(() => cn('group/field flex w-full gap-2 data-[invalid=true]:text-destructive', FIELD_ORIENT[this.orientation()], this.userClass()), /* @ts-ignore */
|
|
2383
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2384
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiField, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2385
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiField, isStandalone: true, selector: "[buiField]", inputs: { orientation: { classPropertyName: "orientation", publicName: "orientation", isSignal: true, isRequired: false, transformFunction: null }, userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "role": "group", "data-slot": "field" }, properties: { "attr.data-orientation": "orientation()", "class": "computedClass()" } }, ngImport: i0 });
|
|
2386
|
+
}
|
|
2387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiField, decorators: [{
|
|
2388
|
+
type: Directive,
|
|
2389
|
+
args: [{
|
|
2390
|
+
selector: '[buiField]',
|
|
2391
|
+
host: {
|
|
2392
|
+
role: 'group',
|
|
2393
|
+
'data-slot': 'field',
|
|
2394
|
+
'[attr.data-orientation]': 'orientation()',
|
|
2395
|
+
'[class]': 'computedClass()',
|
|
2396
|
+
},
|
|
2397
|
+
}]
|
|
2398
|
+
}], propDecorators: { orientation: [{ type: i0.Input, args: [{ isSignal: true, alias: "orientation", required: false }] }], userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2399
|
+
class BuiFieldSet {
|
|
2400
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2401
|
+
computedClass = computed(() => cn('flex flex-col gap-6 has-[>[data-slot=radio-group]]:gap-3', this.userClass()), /* @ts-ignore */
|
|
2402
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2403
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldSet, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2404
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiFieldSet, isStandalone: true, selector: "fieldset[buiFieldSet]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "field-set" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2405
|
+
}
|
|
2406
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldSet, decorators: [{
|
|
2407
|
+
type: Directive,
|
|
2408
|
+
args: [{
|
|
2409
|
+
selector: 'fieldset[buiFieldSet]',
|
|
2410
|
+
host: { 'data-slot': 'field-set', '[class]': 'computedClass()' },
|
|
2411
|
+
}]
|
|
2412
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2413
|
+
class BuiFieldLegend {
|
|
2414
|
+
variant = input('legend', /* @ts-ignore */
|
|
2415
|
+
...(ngDevMode ? [{ debugName: "variant" }] : /* istanbul ignore next */ []));
|
|
2416
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2417
|
+
computedClass = computed(() => cn('mb-3 font-medium data-[variant=label]:text-sm data-[variant=legend]:text-base', this.userClass()), /* @ts-ignore */
|
|
2418
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2419
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldLegend, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2420
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiFieldLegend, isStandalone: true, selector: "legend[buiFieldLegend]", inputs: { variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "field-legend" }, properties: { "attr.data-variant": "variant()", "class": "computedClass()" } }, ngImport: i0 });
|
|
2421
|
+
}
|
|
2422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldLegend, decorators: [{
|
|
2423
|
+
type: Directive,
|
|
2424
|
+
args: [{
|
|
2425
|
+
selector: 'legend[buiFieldLegend]',
|
|
2426
|
+
host: {
|
|
2427
|
+
'data-slot': 'field-legend',
|
|
2428
|
+
'[attr.data-variant]': 'variant()',
|
|
2429
|
+
'[class]': 'computedClass()',
|
|
2430
|
+
},
|
|
2431
|
+
}]
|
|
2432
|
+
}], propDecorators: { variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2433
|
+
class BuiFieldGroup {
|
|
2434
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2435
|
+
computedClass = computed(() => cn('group/field-group @container/field-group flex w-full flex-col gap-7', this.userClass()), /* @ts-ignore */
|
|
2436
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2437
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldGroup, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2438
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiFieldGroup, isStandalone: true, selector: "[buiFieldGroup]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "field-group" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2439
|
+
}
|
|
2440
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldGroup, decorators: [{
|
|
2441
|
+
type: Directive,
|
|
2442
|
+
args: [{
|
|
2443
|
+
selector: '[buiFieldGroup]',
|
|
2444
|
+
host: { 'data-slot': 'field-group', '[class]': 'computedClass()' },
|
|
2445
|
+
}]
|
|
2446
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2447
|
+
class BuiFieldLabel {
|
|
2448
|
+
forId = input(undefined, { ...(ngDevMode ? { debugName: "forId" } : /* istanbul ignore next */ {}), alias: 'for' });
|
|
2449
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2450
|
+
computedClass = computed(() => cn('flex w-fit gap-2 text-sm leading-snug font-medium select-none group-data-[disabled=true]/field:opacity-50', this.userClass()), /* @ts-ignore */
|
|
2451
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2452
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldLabel, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2453
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiFieldLabel, isStandalone: true, selector: "label[buiFieldLabel]", inputs: { forId: { classPropertyName: "forId", publicName: "for", isSignal: true, isRequired: false, transformFunction: null }, userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "field-label" }, properties: { "attr.for": "forId()", "class": "computedClass()" } }, ngImport: i0 });
|
|
2454
|
+
}
|
|
2455
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldLabel, decorators: [{
|
|
2456
|
+
type: Directive,
|
|
2457
|
+
args: [{
|
|
2458
|
+
selector: 'label[buiFieldLabel]',
|
|
2459
|
+
host: { 'data-slot': 'field-label', '[attr.for]': 'forId()', '[class]': 'computedClass()' },
|
|
2460
|
+
}]
|
|
2461
|
+
}], propDecorators: { forId: [{ type: i0.Input, args: [{ isSignal: true, alias: "for", required: false }] }], userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2462
|
+
class BuiFieldTitle {
|
|
2463
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2464
|
+
computedClass = computed(() => cn('flex w-fit items-center gap-2 text-sm leading-snug font-medium', this.userClass()), /* @ts-ignore */
|
|
2465
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2466
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldTitle, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2467
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiFieldTitle, isStandalone: true, selector: "[buiFieldTitle]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "field-title" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2468
|
+
}
|
|
2469
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldTitle, decorators: [{
|
|
2470
|
+
type: Directive,
|
|
2471
|
+
args: [{
|
|
2472
|
+
selector: '[buiFieldTitle]',
|
|
2473
|
+
host: { 'data-slot': 'field-title', '[class]': 'computedClass()' },
|
|
2474
|
+
}]
|
|
2475
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2476
|
+
class BuiFieldDescription {
|
|
2477
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2478
|
+
computedClass = computed(() => cn('text-sm leading-normal font-normal text-muted-foreground', this.userClass()), /* @ts-ignore */
|
|
2479
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2480
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldDescription, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2481
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiFieldDescription, isStandalone: true, selector: "p[buiFieldDescription]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "field-description" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2482
|
+
}
|
|
2483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldDescription, decorators: [{
|
|
2484
|
+
type: Directive,
|
|
2485
|
+
args: [{
|
|
2486
|
+
selector: 'p[buiFieldDescription]',
|
|
2487
|
+
host: { 'data-slot': 'field-description', '[class]': 'computedClass()' },
|
|
2488
|
+
}]
|
|
2489
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2490
|
+
class BuiFieldContent {
|
|
2491
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2492
|
+
computedClass = computed(() => cn('group/field-content flex flex-1 flex-col gap-1.5 leading-snug', this.userClass()), /* @ts-ignore */
|
|
2493
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2494
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldContent, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2495
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiFieldContent, isStandalone: true, selector: "[buiFieldContent]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "field-content" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2496
|
+
}
|
|
2497
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldContent, decorators: [{
|
|
2498
|
+
type: Directive,
|
|
2499
|
+
args: [{
|
|
2500
|
+
selector: '[buiFieldContent]',
|
|
2501
|
+
host: { 'data-slot': 'field-content', '[class]': 'computedClass()' },
|
|
2502
|
+
}]
|
|
2503
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2504
|
+
/** Field validation message (`role="alert"`). */
|
|
2505
|
+
class BuiFieldError {
|
|
2506
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2507
|
+
computedClass = computed(() => cn('text-sm font-normal text-destructive', this.userClass()), /* @ts-ignore */
|
|
2508
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2509
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldError, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2510
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiFieldError, isStandalone: true, selector: "[buiFieldError]", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "role": "alert", "data-slot": "field-error" }, properties: { "class": "computedClass()" } }, ngImport: i0 });
|
|
2511
|
+
}
|
|
2512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldError, decorators: [{
|
|
2513
|
+
type: Directive,
|
|
2514
|
+
args: [{
|
|
2515
|
+
selector: '[buiFieldError]',
|
|
2516
|
+
host: { role: 'alert', 'data-slot': 'field-error', '[class]': 'computedClass()' },
|
|
2517
|
+
}]
|
|
2518
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2519
|
+
/** Labelled divider between fields. */
|
|
2520
|
+
class BuiFieldSeparator {
|
|
2521
|
+
userClass = input('', { ...(ngDevMode ? { debugName: "userClass" } : /* istanbul ignore next */ {}), alias: 'class' });
|
|
2522
|
+
computedClass = computed(() => cn('relative -my-2 block h-5 text-sm', this.userClass()), /* @ts-ignore */
|
|
2523
|
+
...(ngDevMode ? [{ debugName: "computedClass" }] : /* istanbul ignore next */ []));
|
|
2524
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldSeparator, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2525
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.2", type: BuiFieldSeparator, isStandalone: true, selector: "bui-field-separator", inputs: { userClass: { classPropertyName: "userClass", publicName: "class", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "data-slot": "field-separator" }, properties: { "class": "computedClass()" } }, ngImport: i0, template: `
|
|
2526
|
+
<div class="absolute inset-0 top-1/2 h-px bg-border"></div>
|
|
2527
|
+
<span class="relative mx-auto block w-fit bg-background px-2 text-muted-foreground">
|
|
2528
|
+
<ng-content />
|
|
2529
|
+
</span>
|
|
2530
|
+
`, isInline: true });
|
|
2531
|
+
}
|
|
2532
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiFieldSeparator, decorators: [{
|
|
2533
|
+
type: Component,
|
|
2534
|
+
args: [{
|
|
2535
|
+
selector: 'bui-field-separator',
|
|
2536
|
+
host: { 'data-slot': 'field-separator', '[class]': 'computedClass()' },
|
|
2537
|
+
template: `
|
|
2538
|
+
<div class="absolute inset-0 top-1/2 h-px bg-border"></div>
|
|
2539
|
+
<span class="relative mx-auto block w-fit bg-background px-2 text-muted-foreground">
|
|
2540
|
+
<ng-content />
|
|
2541
|
+
</span>
|
|
2542
|
+
`,
|
|
2543
|
+
}]
|
|
2544
|
+
}], propDecorators: { userClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "class", required: false }] }] } });
|
|
2545
|
+
|
|
2546
|
+
/** Accessible disclosure: a trigger toggles the visibility of its content. */
|
|
2547
|
+
class BuiCollapsible {
|
|
2548
|
+
open = model(false, /* @ts-ignore */
|
|
2549
|
+
...(ngDevMode ? [{ debugName: "open" }] : /* istanbul ignore next */ []));
|
|
2550
|
+
contentId = inject(_IdGenerator).getId('bui-collapsible-');
|
|
2551
|
+
toggle() {
|
|
2552
|
+
this.open.update((value) => !value);
|
|
2553
|
+
}
|
|
2554
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiCollapsible, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2555
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.2", type: BuiCollapsible, isStandalone: true, selector: "[buiCollapsible]", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { open: "openChange" }, host: { attributes: { "data-slot": "collapsible" } }, exportAs: ["buiCollapsible"], ngImport: i0 });
|
|
2556
|
+
}
|
|
2557
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiCollapsible, decorators: [{
|
|
2558
|
+
type: Directive,
|
|
2559
|
+
args: [{
|
|
2560
|
+
selector: '[buiCollapsible]',
|
|
2561
|
+
exportAs: 'buiCollapsible',
|
|
2562
|
+
host: { 'data-slot': 'collapsible' },
|
|
2563
|
+
}]
|
|
2564
|
+
}], propDecorators: { open: [{ type: i0.Input, args: [{ isSignal: true, alias: "open", required: false }] }, { type: i0.Output, args: ["openChange"] }] } });
|
|
2565
|
+
class BuiCollapsibleTrigger {
|
|
2566
|
+
collapsible = inject(BuiCollapsible);
|
|
2567
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiCollapsibleTrigger, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2568
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.2", type: BuiCollapsibleTrigger, isStandalone: true, selector: "button[buiCollapsibleTrigger]", host: { attributes: { "type": "button", "data-slot": "collapsible-trigger" }, listeners: { "click": "collapsible.toggle()" }, properties: { "attr.aria-expanded": "collapsible.open()", "attr.aria-controls": "collapsible.contentId", "attr.data-state": "collapsible.open() ? 'open' : 'closed'" } }, ngImport: i0 });
|
|
2569
|
+
}
|
|
2570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiCollapsibleTrigger, decorators: [{
|
|
2571
|
+
type: Directive,
|
|
2572
|
+
args: [{
|
|
2573
|
+
selector: 'button[buiCollapsibleTrigger]',
|
|
2574
|
+
host: {
|
|
2575
|
+
type: 'button',
|
|
2576
|
+
'data-slot': 'collapsible-trigger',
|
|
2577
|
+
'[attr.aria-expanded]': 'collapsible.open()',
|
|
2578
|
+
'[attr.aria-controls]': 'collapsible.contentId',
|
|
2579
|
+
'[attr.data-state]': "collapsible.open() ? 'open' : 'closed'",
|
|
2580
|
+
'(click)': 'collapsible.toggle()',
|
|
2581
|
+
},
|
|
2582
|
+
}]
|
|
2583
|
+
}] });
|
|
2584
|
+
class BuiCollapsibleContent {
|
|
2585
|
+
collapsible = inject(BuiCollapsible);
|
|
2586
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiCollapsibleContent, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
2587
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.2", type: BuiCollapsibleContent, isStandalone: true, selector: "[buiCollapsibleContent]", host: { attributes: { "data-slot": "collapsible-content" }, properties: { "id": "collapsible.contentId", "hidden": "!collapsible.open()", "attr.data-state": "collapsible.open() ? 'open' : 'closed'" } }, ngImport: i0 });
|
|
2588
|
+
}
|
|
2589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: BuiCollapsibleContent, decorators: [{
|
|
2590
|
+
type: Directive,
|
|
2591
|
+
args: [{
|
|
2592
|
+
selector: '[buiCollapsibleContent]',
|
|
2593
|
+
host: {
|
|
2594
|
+
'data-slot': 'collapsible-content',
|
|
2595
|
+
'[id]': 'collapsible.contentId',
|
|
2596
|
+
'[hidden]': '!collapsible.open()',
|
|
2597
|
+
'[attr.data-state]': "collapsible.open() ? 'open' : 'closed'",
|
|
2598
|
+
},
|
|
2599
|
+
}]
|
|
2600
|
+
}] });
|
|
2601
|
+
|
|
2000
2602
|
/*
|
|
2001
2603
|
* Public API Surface of ng-blatui
|
|
2002
2604
|
*/
|
|
@@ -2005,5 +2607,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImpor
|
|
|
2005
2607
|
* Generated bundle index. Do not edit.
|
|
2006
2608
|
*/
|
|
2007
2609
|
|
|
2008
|
-
export { BuiAccordion, BuiAccordionContent, BuiAccordionItem, BuiAccordionTrigger, BuiAlert, BuiAlertDescription, BuiAlertTitle, BuiAvatar, BuiBadge, BuiButton, BuiCard, BuiCardAction, BuiCardContent, BuiCardDescription, BuiCardFooter, BuiCardHeader, BuiCardTitle, BuiCheckbox, BuiDialogContent, BuiDialogDescription, BuiDialogFooter, BuiDialogHeader, BuiDialogTitle, BuiInput, BuiLabel, BuiProgress, BuiRadioGroup, BuiRadioGroupItem, BuiSeparator, BuiSkeleton, BuiSwitch, BuiTabList, BuiTabPanel, BuiTabTrigger, BuiTabs, BuiTextarea, BuiThemeCustomizer, BuiTooltip, BuiTooltipContent, THEME_TOKENS, ThemeStore, buttonVariants, cn };
|
|
2610
|
+
export { BuiAccordion, BuiAccordionContent, BuiAccordionItem, BuiAccordionTrigger, BuiAlert, BuiAlertDescription, BuiAlertTitle, BuiAspectRatio, BuiAvatar, BuiBadge, BuiBreadcrumb, BuiBreadcrumbEllipsis, BuiBreadcrumbItem, BuiBreadcrumbLink, BuiBreadcrumbList, BuiBreadcrumbPage, BuiBreadcrumbSeparator, BuiButton, BuiButtonGroup, BuiButtonGroupText, BuiCard, BuiCardAction, BuiCardContent, BuiCardDescription, BuiCardFooter, BuiCardHeader, BuiCardTitle, BuiCheckbox, BuiCollapsible, BuiCollapsibleContent, BuiCollapsibleTrigger, BuiContainer, BuiDialogContent, BuiDialogDescription, BuiDialogFooter, BuiDialogHeader, BuiDialogTitle, BuiEmpty, BuiEmptyContent, BuiEmptyDescription, BuiEmptyHeader, BuiEmptyMedia, BuiEmptyTitle, BuiField, BuiFieldContent, BuiFieldDescription, BuiFieldError, BuiFieldGroup, BuiFieldLabel, BuiFieldLegend, BuiFieldSeparator, BuiFieldSet, BuiFieldTitle, BuiInput, BuiKbd, BuiLabel, BuiProgress, BuiRadioGroup, BuiRadioGroupItem, BuiSeparator, BuiSkeleton, BuiSwitch, BuiTabList, BuiTabPanel, BuiTabTrigger, BuiTabs, BuiTextarea, BuiThemeCustomizer, BuiTooltip, BuiTooltipContent, THEME_TOKENS, ThemeStore, buttonVariants, cn };
|
|
2009
2611
|
//# sourceMappingURL=ng-blatui.mjs.map
|