@solfacil/girassol 0.3.5 → 0.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.
Files changed (32) hide show
  1. package/dist/components.d.ts +3 -0
  2. package/dist/components.json +1 -1
  3. package/dist/girassol.es.js +2412 -1774
  4. package/dist/girassol.umd.js +6 -6
  5. package/dist/list-slots-disclaimer.png +0 -0
  6. package/dist/style.css +1 -1
  7. package/dist/theme/solfacil/screens.d.ts +4 -1
  8. package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +2 -0
  9. package/dist/types/components/forms/checkbox/type.d.ts +1 -0
  10. package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +2 -0
  11. package/dist/types/components/forms/radio/types.d.ts +1 -0
  12. package/dist/types/components/informations/alert/Alert.vue.d.ts +126 -0
  13. package/dist/types/components/informations/alert/alert.spec.d.ts +1 -0
  14. package/dist/types/components/informations/alert/index.d.ts +2 -0
  15. package/dist/types/components/informations/tag/Tag.vue.d.ts +121 -0
  16. package/dist/types/components/informations/tag/index.d.ts +2 -0
  17. package/dist/types/components/informations/tag/tag.spec.d.ts +1 -0
  18. package/dist/types/components/informations/text-value/TextValue.vue.d.ts +105 -0
  19. package/dist/types/components/list/List.vue.d.ts +204 -0
  20. package/dist/types/components/list/ListItem.vue.d.ts +151 -0
  21. package/dist/types/components/list/index.d.ts +2 -0
  22. package/dist/types/components/list/list.spec.d.ts +1 -0
  23. package/dist/types/components/list/types.d.ts +51 -0
  24. package/dist/types/components/menus/menu/Menu.vue.d.ts +11 -0
  25. package/dist/types/components/menus/menu-item/menu-item/MenuItem.vue.d.ts +77 -0
  26. package/dist/types/components/menus/menu-item/menu-item/index.d.ts +2 -0
  27. package/dist/types/composables/use-navigate/index.d.ts +7 -0
  28. package/dist/types/index.d.ts +639 -8
  29. package/package.json +1 -1
  30. package/public/list-slots-disclaimer.png +0 -0
  31. package/theme/solfacil/screens.ts +5 -4
  32. package/theme/solfacil/utilities.ts +9 -13
@@ -1,12 +1,15 @@
1
1
  import type { App } from 'vue';
2
2
  import { SolButton, SolButtonDestructive } from './components/forms/button';
3
3
  import { SolInputText, SolInputTextPassword, SolInputTextarea } from './components/forms/inputs';
4
+ import { SolSwitch } from './components/forms/switch';
4
5
  import { SolRadio, SolRadioGroup } from './components/forms/radio';
5
6
  import { SolCheckbox, SolCheckboxGroup } from './components/forms/checkbox';
6
- import { SolSwitch } from './components/forms/switch';
7
7
  import { SolSelect } from './components/forms/select';
8
8
  import { SolChip } from './components/informations/chip';
9
+ import { SolTag } from './components/informations/tag';
10
+ import { SolAlert } from './components/informations/alert';
9
11
  import { SolAccordion } from './components/accordion/';
12
+ import { SolList } from './components/list/';
10
13
  import { SolMenu } from './components/menus/menu';
11
14
  import { SolMenuItemLink } from './components/menus/menu-item/menu-item-link/';
12
15
  import { SolMenuNavigationLinks } from './components/menus/menu-navigation-links';
@@ -861,6 +864,9 @@ export declare const components: {
861
864
  type: import("vue").PropType<string>;
862
865
  required: true;
863
866
  };
867
+ hideLabel: {
868
+ type: import("vue").PropType<boolean>;
869
+ };
864
870
  checked: {
865
871
  type: import("vue").PropType<boolean>;
866
872
  };
@@ -886,6 +892,9 @@ export declare const components: {
886
892
  type: import("vue").PropType<string>;
887
893
  required: true;
888
894
  };
895
+ hideLabel: {
896
+ type: import("vue").PropType<boolean>;
897
+ };
889
898
  checked: {
890
899
  type: import("vue").PropType<boolean>;
891
900
  };
@@ -1201,6 +1210,9 @@ export declare const components: {
1201
1210
  type: import("vue").PropType<string>;
1202
1211
  required: true;
1203
1212
  };
1213
+ hideLabel: {
1214
+ type: import("vue").PropType<boolean>;
1215
+ };
1204
1216
  checked: {
1205
1217
  type: import("vue").PropType<boolean>;
1206
1218
  };
@@ -1229,6 +1241,9 @@ export declare const components: {
1229
1241
  type: import("vue").PropType<string>;
1230
1242
  required: true;
1231
1243
  };
1244
+ hideLabel: {
1245
+ type: import("vue").PropType<boolean>;
1246
+ };
1232
1247
  checked: {
1233
1248
  type: import("vue").PropType<boolean>;
1234
1249
  };
@@ -1549,6 +1564,9 @@ export declare const components: {
1549
1564
  value: {
1550
1565
  type: import("vue").PropType<string>;
1551
1566
  };
1567
+ hideLabel: {
1568
+ type: import("vue").PropType<boolean>;
1569
+ };
1552
1570
  checked: {
1553
1571
  type: import("vue").PropType<boolean>;
1554
1572
  };
@@ -1557,9 +1575,6 @@ export declare const components: {
1557
1575
  } & {
1558
1576
  default: string;
1559
1577
  };
1560
- hideLabel: {
1561
- type: import("vue").PropType<boolean>;
1562
- };
1563
1578
  stretchLabel: {
1564
1579
  type: import("vue").PropType<boolean>;
1565
1580
  } & {
@@ -1586,6 +1601,9 @@ export declare const components: {
1586
1601
  value: {
1587
1602
  type: import("vue").PropType<string>;
1588
1603
  };
1604
+ hideLabel: {
1605
+ type: import("vue").PropType<boolean>;
1606
+ };
1589
1607
  checked: {
1590
1608
  type: import("vue").PropType<boolean>;
1591
1609
  };
@@ -1594,9 +1612,6 @@ export declare const components: {
1594
1612
  } & {
1595
1613
  default: string;
1596
1614
  };
1597
- hideLabel: {
1598
- type: import("vue").PropType<boolean>;
1599
- };
1600
1615
  stretchLabel: {
1601
1616
  type: import("vue").PropType<boolean>;
1602
1617
  } & {
@@ -2233,6 +2248,331 @@ export declare const components: {
2233
2248
  default: (_: {}) => any;
2234
2249
  };
2235
2250
  });
2251
+ SolTag: {
2252
+ new (...args: any[]): {
2253
+ $: import("vue").ComponentInternalInstance;
2254
+ $data: {};
2255
+ $props: Partial<{
2256
+ text: string;
2257
+ type: "warning" | "informative" | "neutral" | "positive" | "negative";
2258
+ size: "small" | "medium";
2259
+ variant: "fill" | "outline";
2260
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2261
+ text: {
2262
+ type: import("vue").PropType<string>;
2263
+ } & {
2264
+ default: string;
2265
+ };
2266
+ id: {
2267
+ type: import("vue").PropType<string>;
2268
+ required: true;
2269
+ };
2270
+ type: {
2271
+ type: import("vue").PropType<"warning" | "informative" | "neutral" | "positive" | "negative">;
2272
+ } & {
2273
+ default: string;
2274
+ };
2275
+ size: {
2276
+ type: import("vue").PropType<"small" | "medium">;
2277
+ } & {
2278
+ default: string;
2279
+ };
2280
+ variant: {
2281
+ type: import("vue").PropType<"fill" | "outline">;
2282
+ } & {
2283
+ default: string;
2284
+ };
2285
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "type" | "size" | "variant">;
2286
+ $attrs: {
2287
+ [x: string]: unknown;
2288
+ };
2289
+ $refs: {
2290
+ [x: string]: unknown;
2291
+ };
2292
+ $slots: Readonly<{
2293
+ [name: string]: import("vue").Slot | undefined;
2294
+ }>;
2295
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2296
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2297
+ $emit: (event: string, ...args: any[]) => void;
2298
+ $el: any;
2299
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2300
+ text: {
2301
+ type: import("vue").PropType<string>;
2302
+ } & {
2303
+ default: string;
2304
+ };
2305
+ id: {
2306
+ type: import("vue").PropType<string>;
2307
+ required: true;
2308
+ };
2309
+ type: {
2310
+ type: import("vue").PropType<"warning" | "informative" | "neutral" | "positive" | "negative">;
2311
+ } & {
2312
+ default: string;
2313
+ };
2314
+ size: {
2315
+ type: import("vue").PropType<"small" | "medium">;
2316
+ } & {
2317
+ default: string;
2318
+ };
2319
+ variant: {
2320
+ type: import("vue").PropType<"fill" | "outline">;
2321
+ } & {
2322
+ default: string;
2323
+ };
2324
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2325
+ text: string;
2326
+ type: "warning" | "informative" | "neutral" | "positive" | "negative";
2327
+ size: "small" | "medium";
2328
+ variant: "fill" | "outline";
2329
+ }> & {
2330
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2331
+ created?: ((() => void) | (() => void)[]) | undefined;
2332
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
2333
+ mounted?: ((() => void) | (() => void)[]) | undefined;
2334
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
2335
+ updated?: ((() => void) | (() => void)[]) | undefined;
2336
+ activated?: ((() => void) | (() => void)[]) | undefined;
2337
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
2338
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
2339
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
2340
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
2341
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
2342
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
2343
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
2344
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
2345
+ };
2346
+ $forceUpdate: () => void;
2347
+ $nextTick: typeof import("vue").nextTick;
2348
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
2349
+ } & Readonly<import("vue").ExtractPropTypes<{
2350
+ text: {
2351
+ type: import("vue").PropType<string>;
2352
+ } & {
2353
+ default: string;
2354
+ };
2355
+ id: {
2356
+ type: import("vue").PropType<string>;
2357
+ required: true;
2358
+ };
2359
+ type: {
2360
+ type: import("vue").PropType<"warning" | "informative" | "neutral" | "positive" | "negative">;
2361
+ } & {
2362
+ default: string;
2363
+ };
2364
+ size: {
2365
+ type: import("vue").PropType<"small" | "medium">;
2366
+ } & {
2367
+ default: string;
2368
+ };
2369
+ variant: {
2370
+ type: import("vue").PropType<"fill" | "outline">;
2371
+ } & {
2372
+ default: string;
2373
+ };
2374
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
2375
+ __isFragment?: undefined;
2376
+ __isTeleport?: undefined;
2377
+ __isSuspense?: undefined;
2378
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2379
+ text: {
2380
+ type: import("vue").PropType<string>;
2381
+ } & {
2382
+ default: string;
2383
+ };
2384
+ id: {
2385
+ type: import("vue").PropType<string>;
2386
+ required: true;
2387
+ };
2388
+ type: {
2389
+ type: import("vue").PropType<"warning" | "informative" | "neutral" | "positive" | "negative">;
2390
+ } & {
2391
+ default: string;
2392
+ };
2393
+ size: {
2394
+ type: import("vue").PropType<"small" | "medium">;
2395
+ } & {
2396
+ default: string;
2397
+ };
2398
+ variant: {
2399
+ type: import("vue").PropType<"fill" | "outline">;
2400
+ } & {
2401
+ default: string;
2402
+ };
2403
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2404
+ text: string;
2405
+ type: "warning" | "informative" | "neutral" | "positive" | "negative";
2406
+ size: "small" | "medium";
2407
+ variant: "fill" | "outline";
2408
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2409
+ $slots: {
2410
+ default: (_: {}) => any;
2411
+ };
2412
+ });
2413
+ SolAlert: {
2414
+ new (...args: any[]): {
2415
+ $: import("vue").ComponentInternalInstance;
2416
+ $data: {};
2417
+ $props: Partial<{
2418
+ title: string;
2419
+ text: string;
2420
+ feedback: "error" | "success" | "warning" | "informative";
2421
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2422
+ title: {
2423
+ type: import("vue").PropType<string>;
2424
+ } & {
2425
+ default: string;
2426
+ };
2427
+ text: {
2428
+ type: import("vue").PropType<string>;
2429
+ } & {
2430
+ default: string;
2431
+ };
2432
+ id: {
2433
+ type: import("vue").PropType<string>;
2434
+ required: true;
2435
+ };
2436
+ feedback: {
2437
+ type: import("vue").PropType<"error" | "success" | "warning" | "informative">;
2438
+ } & {
2439
+ default: string;
2440
+ };
2441
+ action: {
2442
+ type: import("vue").PropType<string>;
2443
+ };
2444
+ }>> & {
2445
+ onClick?: (() => any) | undefined;
2446
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "text" | "feedback">;
2447
+ $attrs: {
2448
+ [x: string]: unknown;
2449
+ };
2450
+ $refs: {
2451
+ [x: string]: unknown;
2452
+ };
2453
+ $slots: Readonly<{
2454
+ [name: string]: import("vue").Slot | undefined;
2455
+ }>;
2456
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2457
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2458
+ $emit: (event: "click") => void;
2459
+ $el: any;
2460
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2461
+ title: {
2462
+ type: import("vue").PropType<string>;
2463
+ } & {
2464
+ default: string;
2465
+ };
2466
+ text: {
2467
+ type: import("vue").PropType<string>;
2468
+ } & {
2469
+ default: string;
2470
+ };
2471
+ id: {
2472
+ type: import("vue").PropType<string>;
2473
+ required: true;
2474
+ };
2475
+ feedback: {
2476
+ type: import("vue").PropType<"error" | "success" | "warning" | "informative">;
2477
+ } & {
2478
+ default: string;
2479
+ };
2480
+ action: {
2481
+ type: import("vue").PropType<string>;
2482
+ };
2483
+ }>> & {
2484
+ onClick?: (() => any) | undefined;
2485
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2486
+ click: () => void;
2487
+ }, string, {
2488
+ title: string;
2489
+ text: string;
2490
+ feedback: "error" | "success" | "warning" | "informative";
2491
+ }> & {
2492
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2493
+ created?: ((() => void) | (() => void)[]) | undefined;
2494
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
2495
+ mounted?: ((() => void) | (() => void)[]) | undefined;
2496
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
2497
+ updated?: ((() => void) | (() => void)[]) | undefined;
2498
+ activated?: ((() => void) | (() => void)[]) | undefined;
2499
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
2500
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
2501
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
2502
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
2503
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
2504
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
2505
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
2506
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
2507
+ };
2508
+ $forceUpdate: () => void;
2509
+ $nextTick: typeof import("vue").nextTick;
2510
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
2511
+ } & Readonly<import("vue").ExtractPropTypes<{
2512
+ title: {
2513
+ type: import("vue").PropType<string>;
2514
+ } & {
2515
+ default: string;
2516
+ };
2517
+ text: {
2518
+ type: import("vue").PropType<string>;
2519
+ } & {
2520
+ default: string;
2521
+ };
2522
+ id: {
2523
+ type: import("vue").PropType<string>;
2524
+ required: true;
2525
+ };
2526
+ feedback: {
2527
+ type: import("vue").PropType<"error" | "success" | "warning" | "informative">;
2528
+ } & {
2529
+ default: string;
2530
+ };
2531
+ action: {
2532
+ type: import("vue").PropType<string>;
2533
+ };
2534
+ }>> & {
2535
+ onClick?: (() => any) | undefined;
2536
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
2537
+ __isFragment?: undefined;
2538
+ __isTeleport?: undefined;
2539
+ __isSuspense?: undefined;
2540
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2541
+ title: {
2542
+ type: import("vue").PropType<string>;
2543
+ } & {
2544
+ default: string;
2545
+ };
2546
+ text: {
2547
+ type: import("vue").PropType<string>;
2548
+ } & {
2549
+ default: string;
2550
+ };
2551
+ id: {
2552
+ type: import("vue").PropType<string>;
2553
+ required: true;
2554
+ };
2555
+ feedback: {
2556
+ type: import("vue").PropType<"error" | "success" | "warning" | "informative">;
2557
+ } & {
2558
+ default: string;
2559
+ };
2560
+ action: {
2561
+ type: import("vue").PropType<string>;
2562
+ };
2563
+ }>> & {
2564
+ onClick?: (() => any) | undefined;
2565
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2566
+ click: () => void;
2567
+ }, string, {
2568
+ title: string;
2569
+ text: string;
2570
+ feedback: "error" | "success" | "warning" | "informative";
2571
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2572
+ $slots: {
2573
+ default: (_: {}) => any;
2574
+ };
2575
+ });
2236
2576
  SolAccordion: {
2237
2577
  new (...args: any[]): {
2238
2578
  $: import("vue").ComponentInternalInstance;
@@ -2352,6 +2692,286 @@ export declare const components: {
2352
2692
  default: (_: {}) => any;
2353
2693
  };
2354
2694
  });
2695
+ SolList: {
2696
+ new (...args: any[]): {
2697
+ $: import("vue").ComponentInternalInstance;
2698
+ $data: {};
2699
+ $props: Partial<{
2700
+ ariaLabel: string;
2701
+ fallbackValue: string;
2702
+ dataIdentifier: import("./components/list/types").DataIdentifier;
2703
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2704
+ data: {
2705
+ type: import("vue").PropType<import("./components/list/types").Data[]>;
2706
+ required: true;
2707
+ };
2708
+ id: {
2709
+ type: import("vue").PropType<string>;
2710
+ required: true;
2711
+ };
2712
+ selected: {
2713
+ type: import("vue").PropType<import("./components/list/types").Selected>;
2714
+ };
2715
+ ariaLabel: {
2716
+ type: import("vue").PropType<string>;
2717
+ required: true;
2718
+ } & {
2719
+ default: string;
2720
+ };
2721
+ headers: {
2722
+ type: import("vue").PropType<import("./components/list/types").Header>;
2723
+ };
2724
+ fallbackValue: {
2725
+ type: import("vue").PropType<string>;
2726
+ } & {
2727
+ default: string;
2728
+ };
2729
+ sortPositions: {
2730
+ type: import("vue").PropType<import("./components/list/types").SortPositions>;
2731
+ };
2732
+ selectMode: {
2733
+ type: import("vue").PropType<import("./components/list/types").SelectMode>;
2734
+ };
2735
+ dataIdentifier: {
2736
+ type: import("vue").PropType<import("./components/list/types").DataIdentifier>;
2737
+ } & {
2738
+ default: () => {
2739
+ key: string;
2740
+ };
2741
+ };
2742
+ }>> & {
2743
+ "onUpdate:selected"?: ((selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => any) | undefined;
2744
+ "onListitem:click"?: ((item: import("./components/list/types").Data) => any) | undefined;
2745
+ "onListitem:selected"?: ((item: import("./components/list/types").Data) => any) | undefined;
2746
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "ariaLabel" | "fallbackValue" | "dataIdentifier">;
2747
+ $attrs: {
2748
+ [x: string]: unknown;
2749
+ };
2750
+ $refs: {
2751
+ [x: string]: unknown;
2752
+ };
2753
+ $slots: Readonly<{
2754
+ [name: string]: import("vue").Slot | undefined;
2755
+ }>;
2756
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2757
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
2758
+ $emit: ((event: "update:selected", selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => void) & ((event: "listitem:click", item: import("./components/list/types").Data) => void) & ((event: "listitem:selected", item: import("./components/list/types").Data) => void);
2759
+ $el: any;
2760
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2761
+ data: {
2762
+ type: import("vue").PropType<import("./components/list/types").Data[]>;
2763
+ required: true;
2764
+ };
2765
+ id: {
2766
+ type: import("vue").PropType<string>;
2767
+ required: true;
2768
+ };
2769
+ selected: {
2770
+ type: import("vue").PropType<import("./components/list/types").Selected>;
2771
+ };
2772
+ ariaLabel: {
2773
+ type: import("vue").PropType<string>;
2774
+ required: true;
2775
+ } & {
2776
+ default: string;
2777
+ };
2778
+ headers: {
2779
+ type: import("vue").PropType<import("./components/list/types").Header>;
2780
+ };
2781
+ fallbackValue: {
2782
+ type: import("vue").PropType<string>;
2783
+ } & {
2784
+ default: string;
2785
+ };
2786
+ sortPositions: {
2787
+ type: import("vue").PropType<import("./components/list/types").SortPositions>;
2788
+ };
2789
+ selectMode: {
2790
+ type: import("vue").PropType<import("./components/list/types").SelectMode>;
2791
+ };
2792
+ dataIdentifier: {
2793
+ type: import("vue").PropType<import("./components/list/types").DataIdentifier>;
2794
+ } & {
2795
+ default: () => {
2796
+ key: string;
2797
+ };
2798
+ };
2799
+ }>> & {
2800
+ "onUpdate:selected"?: ((selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => any) | undefined;
2801
+ "onListitem:click"?: ((item: import("./components/list/types").Data) => any) | undefined;
2802
+ "onListitem:selected"?: ((item: import("./components/list/types").Data) => any) | undefined;
2803
+ }, {
2804
+ unselectAll: () => void;
2805
+ selectAll: () => void;
2806
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2807
+ "listitem:click": (item: import("./components/list/types").Data) => void;
2808
+ } & {
2809
+ "listitem:selected": (item: import("./components/list/types").Data) => void;
2810
+ } & {
2811
+ "update:selected": (selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => void;
2812
+ }, string, {
2813
+ ariaLabel: string;
2814
+ fallbackValue: string;
2815
+ dataIdentifier: import("./components/list/types").DataIdentifier;
2816
+ }> & {
2817
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2818
+ created?: ((() => void) | (() => void)[]) | undefined;
2819
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
2820
+ mounted?: ((() => void) | (() => void)[]) | undefined;
2821
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
2822
+ updated?: ((() => void) | (() => void)[]) | undefined;
2823
+ activated?: ((() => void) | (() => void)[]) | undefined;
2824
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
2825
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
2826
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
2827
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
2828
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
2829
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
2830
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
2831
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
2832
+ };
2833
+ $forceUpdate: () => void;
2834
+ $nextTick: typeof import("vue").nextTick;
2835
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
2836
+ } & Readonly<import("vue").ExtractPropTypes<{
2837
+ data: {
2838
+ type: import("vue").PropType<import("./components/list/types").Data[]>;
2839
+ required: true;
2840
+ };
2841
+ id: {
2842
+ type: import("vue").PropType<string>;
2843
+ required: true;
2844
+ };
2845
+ selected: {
2846
+ type: import("vue").PropType<import("./components/list/types").Selected>;
2847
+ };
2848
+ ariaLabel: {
2849
+ type: import("vue").PropType<string>;
2850
+ required: true;
2851
+ } & {
2852
+ default: string;
2853
+ };
2854
+ headers: {
2855
+ type: import("vue").PropType<import("./components/list/types").Header>;
2856
+ };
2857
+ fallbackValue: {
2858
+ type: import("vue").PropType<string>;
2859
+ } & {
2860
+ default: string;
2861
+ };
2862
+ sortPositions: {
2863
+ type: import("vue").PropType<import("./components/list/types").SortPositions>;
2864
+ };
2865
+ selectMode: {
2866
+ type: import("vue").PropType<import("./components/list/types").SelectMode>;
2867
+ };
2868
+ dataIdentifier: {
2869
+ type: import("vue").PropType<import("./components/list/types").DataIdentifier>;
2870
+ } & {
2871
+ default: () => {
2872
+ key: string;
2873
+ };
2874
+ };
2875
+ }>> & {
2876
+ "onUpdate:selected"?: ((selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => any) | undefined;
2877
+ "onListitem:click"?: ((item: import("./components/list/types").Data) => any) | undefined;
2878
+ "onListitem:selected"?: ((item: import("./components/list/types").Data) => any) | undefined;
2879
+ } & import("vue").ShallowUnwrapRef<{
2880
+ unselectAll: () => void;
2881
+ selectAll: () => void;
2882
+ }> & {} & import("vue").ComponentCustomProperties;
2883
+ __isFragment?: undefined;
2884
+ __isTeleport?: undefined;
2885
+ __isSuspense?: undefined;
2886
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2887
+ data: {
2888
+ type: import("vue").PropType<import("./components/list/types").Data[]>;
2889
+ required: true;
2890
+ };
2891
+ id: {
2892
+ type: import("vue").PropType<string>;
2893
+ required: true;
2894
+ };
2895
+ selected: {
2896
+ type: import("vue").PropType<import("./components/list/types").Selected>;
2897
+ };
2898
+ ariaLabel: {
2899
+ type: import("vue").PropType<string>;
2900
+ required: true;
2901
+ } & {
2902
+ default: string;
2903
+ };
2904
+ headers: {
2905
+ type: import("vue").PropType<import("./components/list/types").Header>;
2906
+ };
2907
+ fallbackValue: {
2908
+ type: import("vue").PropType<string>;
2909
+ } & {
2910
+ default: string;
2911
+ };
2912
+ sortPositions: {
2913
+ type: import("vue").PropType<import("./components/list/types").SortPositions>;
2914
+ };
2915
+ selectMode: {
2916
+ type: import("vue").PropType<import("./components/list/types").SelectMode>;
2917
+ };
2918
+ dataIdentifier: {
2919
+ type: import("vue").PropType<import("./components/list/types").DataIdentifier>;
2920
+ } & {
2921
+ default: () => {
2922
+ key: string;
2923
+ };
2924
+ };
2925
+ }>> & {
2926
+ "onUpdate:selected"?: ((selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => any) | undefined;
2927
+ "onListitem:click"?: ((item: import("./components/list/types").Data) => any) | undefined;
2928
+ "onListitem:selected"?: ((item: import("./components/list/types").Data) => any) | undefined;
2929
+ }, {
2930
+ unselectAll: () => void;
2931
+ selectAll: () => void;
2932
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2933
+ "listitem:click": (item: import("./components/list/types").Data) => void;
2934
+ } & {
2935
+ "listitem:selected": (item: import("./components/list/types").Data) => void;
2936
+ } & {
2937
+ "update:selected": (selected: import("./components/list/types").Data | import("./components/list/types").Data[]) => void;
2938
+ }, string, {
2939
+ ariaLabel: string;
2940
+ fallbackValue: string;
2941
+ dataIdentifier: import("./components/list/types").DataIdentifier;
2942
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2943
+ $slots: Record<string, {
2944
+ data: any;
2945
+ index: any;
2946
+ columnIndex: number;
2947
+ renderHeader: (headerKey: string) => string;
2948
+ headers: import("./components/list/types").Header | undefined;
2949
+ }> & Record<string, {
2950
+ data: any;
2951
+ index: any;
2952
+ columnIndex: any;
2953
+ renderHeader: any;
2954
+ headers: any;
2955
+ }> & Record<string, {
2956
+ data: any;
2957
+ index: any;
2958
+ columnIndex: any;
2959
+ isHighlight: any;
2960
+ }> & {
2961
+ image: (_: {
2962
+ data: import("./components/list/types").Data;
2963
+ }) => any;
2964
+ 'action-button': (_: {
2965
+ arias: {
2966
+ testid: string;
2967
+ data: import("./components/list/types").Data;
2968
+ index: number;
2969
+ ariaLabel: string;
2970
+ };
2971
+ }) => any;
2972
+ menu: (_: {}) => any;
2973
+ };
2974
+ });
2355
2975
  SolMenu: {
2356
2976
  new (...args: any[]): {
2357
2977
  $: import("vue").ComponentInternalInstance;
@@ -2465,6 +3085,17 @@ export declare const components: {
2465
3085
  position: ("bottom" | "top") | ("left" | "right");
2466
3086
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2467
3087
  $slots: {
3088
+ trigger: (_: {
3089
+ id: string;
3090
+ toggle: () => void;
3091
+ isOpen: boolean;
3092
+ arias: {
3093
+ role: string;
3094
+ class: string;
3095
+ ariaHaspopup: boolean;
3096
+ ariaExpanded: boolean;
3097
+ };
3098
+ }) => any;
2468
3099
  label: (_: {
2469
3100
  isOpen: boolean;
2470
3101
  }) => any;
@@ -2724,4 +3355,4 @@ export declare const components: {
2724
3355
  });
2725
3356
  };
2726
3357
  export declare function install(App: App): void;
2727
- export { SolButton, SolButtonDestructive, SolInputTextarea, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolSelect, SolChip, SolAccordion, SolMenu, SolMenuItemLink, SolMenuNavigationLinks, };
3358
+ export { SolButton, SolButtonDestructive, SolInputTextarea, SolInputText, SolInputTextPassword, SolRadio, SolRadioGroup, SolCheckbox, SolCheckboxGroup, SolSwitch, SolSelect, SolChip, SolTag, SolAlert, SolAccordion, SolList, SolMenu, SolMenuItemLink, SolMenuNavigationLinks, };