@bcc-code/component-library-vue 0.0.0-dev.f3889d2 → 0.0.0-dev.f3a4c7a
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/component-library.js +5546 -5473
- package/dist/component-library.umd.cjs +184 -184
- package/dist/index.css +1 -1
- package/dist/theme.css +149 -139
- package/dist-types/components/custom/BccCircleLoader/BccCircleLoader.vue.d.ts +9 -1
- package/dist-types/components/custom/BccReact/BccReact.vue.d.ts +2 -1
- package/dist-types/components/custom/BccStepIndicator/BccStepIndicator.vue.d.ts +3 -3
- package/dist-types/components/custom/BccTag/BccTag.vue.d.ts +1 -0
- package/dist-types/components/custom/BccTopNavigation/BccTopNavigation.vue.d.ts +14 -4
- package/dist-types/components/wrapped/BccMenu/BccMenu.vue.d.ts +15 -1
- package/dist-types/components/wrapped/BccRadioButton.vue.d.ts +2 -0
- package/dist-types/components/wrapped/BccSelectButton.vue.d.ts +5 -2
- package/package.json +105 -103
package/dist/theme.css
CHANGED
|
@@ -774,18 +774,18 @@
|
|
|
774
774
|
}
|
|
775
775
|
|
|
776
776
|
@utility ctx-brand-bolder {
|
|
777
|
-
--ctx-text: var(--color-default-
|
|
777
|
+
--ctx-text: var(--color-default-neutral-0);
|
|
778
778
|
--ctx-text-bold: var(--color-default-neutral-0);
|
|
779
|
-
--ctx-background: var(--color-default-bcc-
|
|
780
|
-
--ctx-gradient: var(--color-default-bcc-
|
|
779
|
+
--ctx-background: var(--color-default-bcc-800);
|
|
780
|
+
--ctx-gradient: var(--color-default-bcc-900);
|
|
781
781
|
--ctx-border: var(--color-default-bcc-700);
|
|
782
782
|
--ctx-shadow: var(--color-neutral-alpha-500A);
|
|
783
|
-
--ctx-text-hover: var(--color-default-
|
|
784
|
-
--ctx-text-pressed: var(--color-default-
|
|
785
|
-
--ctx-background-hover: var(--color-default-bcc-
|
|
786
|
-
--ctx-background-pressed: var(--color-default-bcc-
|
|
787
|
-
--ctx-gradient-hover: var(--color-default-bcc-
|
|
788
|
-
--ctx-gradient-pressed: var(--color-default-bcc-
|
|
783
|
+
--ctx-text-hover: var(--color-default-neutral-0);
|
|
784
|
+
--ctx-text-pressed: var(--color-default-neutral-0);
|
|
785
|
+
--ctx-background-hover: var(--color-default-bcc-900);
|
|
786
|
+
--ctx-background-pressed: var(--color-default-bcc-1000);
|
|
787
|
+
--ctx-gradient-hover: var(--color-default-bcc-1000);
|
|
788
|
+
--ctx-gradient-pressed: var(--color-default-bcc-1000);
|
|
789
789
|
--ctx-border-hover: var(--color-default-bcc-700);
|
|
790
790
|
--ctx-border-pressed: var(--color-default-bcc-700);
|
|
791
791
|
}
|
|
@@ -980,16 +980,16 @@
|
|
|
980
980
|
@utility ctx-gray-bolder {
|
|
981
981
|
--ctx-text: var(--color-default-neutral-200);
|
|
982
982
|
--ctx-text-bold: var(--color-default-neutral-100);
|
|
983
|
-
--ctx-background: var(--color-default-neutral-
|
|
984
|
-
--ctx-gradient: var(--color-default-neutral-
|
|
983
|
+
--ctx-background: var(--color-default-neutral-700);
|
|
984
|
+
--ctx-gradient: var(--color-default-neutral-800);
|
|
985
985
|
--ctx-border: var(--color-default-neutral-700);
|
|
986
986
|
--ctx-shadow: var(--color-neutral-alpha-500A);
|
|
987
987
|
--ctx-text-hover: var(--color-default-neutral-200);
|
|
988
988
|
--ctx-text-pressed: var(--color-default-neutral-200);
|
|
989
|
-
--ctx-background-hover: var(--color-default-neutral-
|
|
990
|
-
--ctx-background-pressed: var(--color-default-neutral-
|
|
991
|
-
--ctx-gradient-hover: var(--color-default-neutral-
|
|
992
|
-
--ctx-gradient-pressed: var(--color-default-neutral-
|
|
989
|
+
--ctx-background-hover: var(--color-default-neutral-800);
|
|
990
|
+
--ctx-background-pressed: var(--color-default-neutral-900);
|
|
991
|
+
--ctx-gradient-hover: var(--color-default-neutral-900);
|
|
992
|
+
--ctx-gradient-pressed: var(--color-default-neutral-900);
|
|
993
993
|
--ctx-border-hover: var(--color-default-neutral-700);
|
|
994
994
|
--ctx-border-pressed: var(--color-default-neutral-700);
|
|
995
995
|
}
|
|
@@ -1810,16 +1810,18 @@
|
|
|
1810
1810
|
cursor: pointer;
|
|
1811
1811
|
}
|
|
1812
1812
|
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1813
|
+
@media (hover: hover) and (pointer: fine) {
|
|
1814
|
+
.clickable:hover {
|
|
1815
|
+
--ctx-background: var(--ctx-background-hover);
|
|
1816
|
+
--ctx-text: var(--ctx-text-hover);
|
|
1817
|
+
--ctx-border: var(--ctx-border-hover);
|
|
1818
|
+
}
|
|
1818
1819
|
|
|
1819
|
-
.clickable:active {
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1820
|
+
.clickable:active {
|
|
1821
|
+
--ctx-background: var(--ctx-background-pressed);
|
|
1822
|
+
--ctx-text: var(--ctx-text-pressed);
|
|
1823
|
+
--ctx-border: var(--ctx-border-pressed);
|
|
1824
|
+
}
|
|
1823
1825
|
}
|
|
1824
1826
|
|
|
1825
1827
|
|
|
@@ -1843,6 +1845,10 @@
|
|
|
1843
1845
|
/* === ./styles/component-overrides.css === */
|
|
1844
1846
|
/** Custom styles to fix primevue components that are not custom or wrapped. */
|
|
1845
1847
|
|
|
1848
|
+
:root {
|
|
1849
|
+
--p-toast-width: min(85vw, 400px);
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1846
1852
|
/**
|
|
1847
1853
|
* GUTTER FIX
|
|
1848
1854
|
* Primevue's dropwdown components are all missing the gap between input and dropdown
|
|
@@ -1956,29 +1962,27 @@
|
|
|
1956
1962
|
}
|
|
1957
1963
|
|
|
1958
1964
|
.bcc-app-nav-item {
|
|
1959
|
-
@apply
|
|
1965
|
+
@apply relative flex h-12 flex-1 flex-col items-center justify-center gap-1 transition-colors focus:ring-0 focus:outline-none;
|
|
1960
1966
|
}
|
|
1961
1967
|
|
|
1962
1968
|
.bcc-nav-item-icon {
|
|
1963
|
-
@apply size-6
|
|
1969
|
+
@apply size-6 icon-subtlest;
|
|
1964
1970
|
}
|
|
1965
1971
|
|
|
1966
1972
|
.bcc-nav-item-badge {
|
|
1967
|
-
@apply absolute top-0 right-1
|
|
1973
|
+
@apply absolute top-0 right-1;
|
|
1968
1974
|
}
|
|
1969
1975
|
|
|
1970
1976
|
.bcc-nav-item-title {
|
|
1971
|
-
@apply text-heading-xs text-center opacity-
|
|
1977
|
+
@apply text-heading-xs text-center text-subtlest opacity-75;
|
|
1972
1978
|
}
|
|
1973
1979
|
|
|
1974
|
-
.bcc-app-nav-item--active {
|
|
1975
|
-
@apply text-selected;
|
|
1980
|
+
.bcc-app-nav-item--active .bcc-nav-item-title {
|
|
1981
|
+
@apply text-selected opacity-100;
|
|
1976
1982
|
}
|
|
1977
1983
|
|
|
1978
|
-
.bcc-app-nav-item--active .bcc-nav-item-icon
|
|
1979
|
-
|
|
1980
|
-
.bcc-app-nav-item--active .bcc-nav-item-title {
|
|
1981
|
-
@apply opacity-100;
|
|
1984
|
+
.bcc-app-nav-item--active .bcc-nav-item-icon {
|
|
1985
|
+
@apply text-selected;
|
|
1982
1986
|
}
|
|
1983
1987
|
}
|
|
1984
1988
|
|
|
@@ -2136,40 +2140,43 @@
|
|
|
2136
2140
|
|
|
2137
2141
|
/* from ./BccFrame/BccFrame.css */
|
|
2138
2142
|
@layer components {
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2143
|
+
.bcc-frame {
|
|
2144
|
+
@apply ctx ctx-default w-full border border-transparent;
|
|
2145
|
+
}
|
|
2142
2146
|
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2147
|
+
.bcc-frame.bcc-frame--shadow {
|
|
2148
|
+
@apply shadow-ctx shadow;
|
|
2149
|
+
}
|
|
2146
2150
|
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2151
|
+
.bcc-frame--raised {
|
|
2152
|
+
--ctx-background: var(--color-elevation-surface-raised-default);
|
|
2153
|
+
}
|
|
2154
|
+
.bcc-frame--rounded {
|
|
2155
|
+
@apply rounded-md;
|
|
2156
|
+
}
|
|
2157
|
+
.bcc-frame--raised.bcc-frame--shadow {
|
|
2158
|
+
@apply shadow-raised dark:border-default;
|
|
2159
|
+
}
|
|
2156
2160
|
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2161
|
+
.bcc-frame--overlay {
|
|
2162
|
+
--ctx-background: var(--color-elevation-surface-overlay-default);
|
|
2163
|
+
@apply border;
|
|
2164
|
+
}
|
|
2165
|
+
.bcc-frame--overlay.bcc-frame--shadow {
|
|
2166
|
+
@apply shadow-overlay dark:border-default;
|
|
2167
|
+
}
|
|
2163
2168
|
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2169
|
+
.bcc-frame--sunken {
|
|
2170
|
+
--ctx-background: var(--color-elevation-surface-sunken-default);
|
|
2171
|
+
@apply border;
|
|
2172
|
+
}
|
|
2173
|
+
.bcc-frame--sunken.bcc-frame--shadow {
|
|
2174
|
+
@apply dark:border-default shadow-inner;
|
|
2175
|
+
}
|
|
2170
2176
|
}
|
|
2171
2177
|
|
|
2172
2178
|
|
|
2179
|
+
|
|
2173
2180
|
/* from ./BccGraphic/BccGraphic.css */
|
|
2174
2181
|
@layer components {
|
|
2175
2182
|
.bcc-graphic .corner,
|
|
@@ -2333,117 +2340,120 @@
|
|
|
2333
2340
|
|
|
2334
2341
|
/* from ./BccReact/BccReact.css */
|
|
2335
2342
|
@layer components {
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2343
|
+
.bcc-react {
|
|
2344
|
+
@apply relative flex w-full items-center overflow-visible;
|
|
2345
|
+
}
|
|
2346
|
+
.bcc-react-toggle {
|
|
2347
|
+
@apply mr-1 flex shrink-0 cursor-pointer items-center justify-center rounded-full p-1 transition;
|
|
2348
|
+
}
|
|
2349
|
+
.bcc-react-list {
|
|
2350
|
+
@apply hide-scrollbar flex flex-1 items-center gap-1 overflow-x-auto overflow-y-hidden rounded-full p-1;
|
|
2351
|
+
}
|
|
2352
|
+
.bcc-react-empty {
|
|
2353
|
+
@apply heading-xs flex items-center;
|
|
2354
|
+
}
|
|
2348
2355
|
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2356
|
+
.bcc-react-selector-container {
|
|
2357
|
+
@apply absolute z-50 h-9;
|
|
2358
|
+
@apply top-11 origin-top-left;
|
|
2359
|
+
}
|
|
2353
2360
|
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2361
|
+
.bcc-react-selector-container--top {
|
|
2362
|
+
@apply -top-10 origin-bottom-left;
|
|
2363
|
+
}
|
|
2357
2364
|
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2365
|
+
.bcc-react-selector {
|
|
2366
|
+
@apply flex h-9 flex-col overflow-hidden bg-neutral-100 px-0 shadow-md;
|
|
2367
|
+
border-radius: 18px;
|
|
2368
|
+
}
|
|
2362
2369
|
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2370
|
+
.bcc-react-selector-emojis-container {
|
|
2371
|
+
@apply flex items-center bg-neutral-100 px-1;
|
|
2372
|
+
}
|
|
2366
2373
|
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2374
|
+
.bcc-react-selector-more {
|
|
2375
|
+
@apply flex w-9 items-center justify-center;
|
|
2376
|
+
}
|
|
2377
|
+
.bcc-react-selector-more-btn {
|
|
2378
|
+
@apply flex h-7 w-7 items-center justify-center rounded-full bg-slate-200;
|
|
2379
|
+
}
|
|
2373
2380
|
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
+
.bcc-react-dropdown-container {
|
|
2382
|
+
@apply top-0 left-0 -z-10 w-full max-w-full;
|
|
2383
|
+
width: 296px;
|
|
2384
|
+
}
|
|
2385
|
+
.bcc-react-dropdown-container--top {
|
|
2386
|
+
@apply top-auto bottom-0 pb-0;
|
|
2387
|
+
}
|
|
2381
2388
|
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2389
|
+
.bcc-react-dropdown {
|
|
2390
|
+
@apply -z-10 flex w-full flex-wrap overflow-hidden px-1;
|
|
2391
|
+
}
|
|
2385
2392
|
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
+
.bcc-react-arrow-down-icon {
|
|
2394
|
+
@apply h-6 w-6 text-slate-600;
|
|
2395
|
+
transition: transform 0.3s ease;
|
|
2396
|
+
}
|
|
2397
|
+
.bcc-react-arrow-down-icon.open {
|
|
2398
|
+
transform: rotate(-180deg);
|
|
2399
|
+
}
|
|
2393
2400
|
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2401
|
+
.bcc-react-selector-item {
|
|
2402
|
+
@apply relative h-9 w-9 p-2 text-xl leading-none transition-transform duration-200 ease-out;
|
|
2403
|
+
}
|
|
2397
2404
|
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2405
|
+
.bcc-react-selector-item--clicked {
|
|
2406
|
+
animation: scaleFadeOut 300ms forwards;
|
|
2407
|
+
}
|
|
2401
2408
|
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2409
|
+
@keyframes scaleFadeOut {
|
|
2410
|
+
0% {
|
|
2411
|
+
transform: scale(1);
|
|
2412
|
+
opacity: 1;
|
|
2413
|
+
}
|
|
2414
|
+
100% {
|
|
2415
|
+
transform: scale(1.4);
|
|
2416
|
+
opacity: 0;
|
|
2417
|
+
}
|
|
2418
|
+
}
|
|
2412
2419
|
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2420
|
+
.bcc-react-emoji-list-item {
|
|
2421
|
+
@apply ctx clickable center h-7 min-w-7 shrink-0 rounded-full p-1 text-lg leading-none drop-shadow transition-all hover:scale-105;
|
|
2422
|
+
/* Default --not-selected */
|
|
2423
|
+
@apply ctx-neutral-subtlest;
|
|
2424
|
+
}
|
|
2425
|
+
.bcc-react-emoji-list-item span {
|
|
2426
|
+
@apply leading-none;
|
|
2427
|
+
}
|
|
2428
|
+
.bcc-react-emoji-list-item.selected {
|
|
2429
|
+
@apply ctx-neutral-subtle;
|
|
2430
|
+
}
|
|
2421
2431
|
}
|
|
2422
2432
|
|
|
2423
2433
|
|
|
2424
2434
|
|
|
2425
2435
|
/* from ./BccTag/BccTag.css */
|
|
2426
|
-
|
|
2427
2436
|
@layer components {
|
|
2428
2437
|
.bcc-tag.bcc-badge {
|
|
2429
2438
|
@apply w-auto;
|
|
2430
2439
|
}
|
|
2431
2440
|
.bcc-tag.bcc-badge.md {
|
|
2432
|
-
@apply
|
|
2441
|
+
@apply text-body-md h-6;
|
|
2433
2442
|
}
|
|
2434
2443
|
.bcc-tag.bcc-badge.sm {
|
|
2435
|
-
@apply
|
|
2444
|
+
@apply text-body-sm h-5;
|
|
2436
2445
|
}
|
|
2437
2446
|
.bcc-tag.bcc-badge.lg {
|
|
2438
|
-
@apply
|
|
2447
|
+
@apply text-body-md h-8;
|
|
2439
2448
|
}
|
|
2440
2449
|
.bcc-tag.bcc-badge.xl {
|
|
2441
|
-
@apply
|
|
2450
|
+
@apply text-body-lg h-10;
|
|
2442
2451
|
}
|
|
2443
2452
|
}
|
|
2444
2453
|
|
|
2445
2454
|
|
|
2446
2455
|
|
|
2456
|
+
|
|
2447
2457
|
/* === ./components/wrapped/styles.css === */
|
|
2448
2458
|
|
|
2449
2459
|
/* from ./BccAvatar/BccAvatar.css */
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
icon?: string;
|
|
3
|
+
size?: 'sm' | 'md' | 'base' | 'lg' | 'xl' | '2xl' | '3xl';
|
|
4
|
+
left?: boolean;
|
|
5
|
+
right?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
8
|
+
size: "sm" | "md" | "base" | "lg" | "xl" | "2xl" | "3xl";
|
|
9
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
2
10
|
declare const _default: typeof __VLS_export;
|
|
3
11
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ReactProps } from './types';
|
|
1
|
+
import type { ReactInfo, ReactProps } from './types';
|
|
2
2
|
declare const __VLS_export: import("vue").DefineComponent<ReactProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
3
3
|
toggle: (id: string) => any;
|
|
4
4
|
}, string, import("vue").PublicProps, Readonly<ReactProps> & Readonly<{
|
|
@@ -6,6 +6,7 @@ declare const __VLS_export: import("vue").DefineComponent<ReactProps, {}, {}, {}
|
|
|
6
6
|
}>, {
|
|
7
7
|
placeholder: string;
|
|
8
8
|
top: boolean;
|
|
9
|
+
emojis: ReactInfo[];
|
|
9
10
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
11
|
declare const _default: typeof __VLS_export;
|
|
11
12
|
export default _default;
|
|
@@ -11,13 +11,13 @@ export type StepIndicatorProps = {
|
|
|
11
11
|
};
|
|
12
12
|
type __VLS_Props = StepIndicatorProps;
|
|
13
13
|
type __VLS_ModelProps = {
|
|
14
|
-
modelValue?: number;
|
|
14
|
+
modelValue?: number | null;
|
|
15
15
|
};
|
|
16
16
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
17
17
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
-
"update:modelValue": (value: number) => any;
|
|
18
|
+
"update:modelValue": (value: number | null) => any;
|
|
19
19
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
20
|
-
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
20
|
+
"onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
|
|
21
21
|
}>, {
|
|
22
22
|
context: BCC_CONTEXT;
|
|
23
23
|
hideText: boolean;
|
|
@@ -12,7 +12,7 @@ type __VLS_Props = TopNavigationProps & {
|
|
|
12
12
|
fixed?: boolean;
|
|
13
13
|
padded?: boolean;
|
|
14
14
|
transparent?: boolean;
|
|
15
|
-
|
|
15
|
+
white?: boolean;
|
|
16
16
|
backTitle?: string;
|
|
17
17
|
force?: boolean;
|
|
18
18
|
titleLeft?: boolean;
|
|
@@ -22,13 +22,23 @@ declare var __VLS_1: {
|
|
|
22
22
|
title: string;
|
|
23
23
|
subtitle: string;
|
|
24
24
|
};
|
|
25
|
-
},
|
|
25
|
+
}, __VLS_8: {}, __VLS_15: {
|
|
26
|
+
title: string;
|
|
27
|
+
}, __VLS_17: {
|
|
28
|
+
subtitle: string;
|
|
29
|
+
}, __VLS_19: {}, __VLS_26: {};
|
|
26
30
|
type __VLS_Slots = {} & {
|
|
27
31
|
default?: (props: typeof __VLS_1) => any;
|
|
28
32
|
} & {
|
|
29
|
-
|
|
33
|
+
left?: (props: typeof __VLS_8) => any;
|
|
30
34
|
} & {
|
|
31
|
-
|
|
35
|
+
title?: (props: typeof __VLS_15) => any;
|
|
36
|
+
} & {
|
|
37
|
+
subtitle?: (props: typeof __VLS_17) => any;
|
|
38
|
+
} & {
|
|
39
|
+
right?: (props: typeof __VLS_19) => any;
|
|
40
|
+
} & {
|
|
41
|
+
bottom?: (props: typeof __VLS_26) => any;
|
|
32
42
|
};
|
|
33
43
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
34
44
|
back: () => any;
|
|
@@ -9,6 +9,20 @@ export type BccMenuItem = Omit<MenuItem, 'icon' | 'items'> & {
|
|
|
9
9
|
export type MenuProps = {
|
|
10
10
|
model?: BccMenuItem[];
|
|
11
11
|
} & Omit<PrimeMenuProps, 'model'>;
|
|
12
|
-
declare
|
|
12
|
+
declare var __VLS_16: {
|
|
13
|
+
item: MenuItem;
|
|
14
|
+
label: string | ((...args: any) => string) | undefined;
|
|
15
|
+
props: import("primevue").MenuRouterBindProps;
|
|
16
|
+
};
|
|
17
|
+
type __VLS_Slots = {} & {
|
|
18
|
+
item?: (props: typeof __VLS_16) => any;
|
|
19
|
+
};
|
|
20
|
+
declare const __VLS_base: import("vue").DefineComponent<MenuProps, PrimeMenuMethods, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MenuProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
13
22
|
declare const _default: typeof __VLS_export;
|
|
14
23
|
export default _default;
|
|
24
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -2,6 +2,8 @@ import { type RadioButtonProps as PrimeRadioButtonProps } from 'primevue/radiobu
|
|
|
2
2
|
export type RadioButtonProps = PrimeRadioButtonProps & {
|
|
3
3
|
label?: string;
|
|
4
4
|
labelLeft?: boolean;
|
|
5
|
+
justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
|
|
6
|
+
labelClass?: string;
|
|
5
7
|
};
|
|
6
8
|
declare var __VLS_6: {};
|
|
7
9
|
type __VLS_Slots = {} & {
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
+
import type { VueComponent } from '@/types';
|
|
1
2
|
import { type SelectButtonProps as PrimeSelectButtonProps } from 'primevue/selectbutton';
|
|
2
|
-
export type SelectButtonProps = PrimeSelectButtonProps
|
|
3
|
+
export type SelectButtonProps = PrimeSelectButtonProps & {
|
|
4
|
+
optionIcon?: string | ((option: unknown) => VueComponent | null);
|
|
5
|
+
};
|
|
3
6
|
declare var __VLS_9: {
|
|
4
7
|
option: any;
|
|
5
8
|
};
|
|
6
9
|
type __VLS_Slots = {} & {
|
|
7
10
|
option?: (props: typeof __VLS_9) => any;
|
|
8
11
|
};
|
|
9
|
-
declare const __VLS_base: import("vue").DefineComponent<
|
|
12
|
+
declare const __VLS_base: import("vue").DefineComponent<SelectButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
13
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
14
|
declare const _default: typeof __VLS_export;
|
|
12
15
|
export default _default;
|