@redvars/peacock 3.3.1 → 3.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/dist/{IndividualComponent-tDnXrOLV.js → IndividualComponent-Dt5xirYG.js} +2 -2
  2. package/dist/{IndividualComponent-tDnXrOLV.js.map → IndividualComponent-Dt5xirYG.js.map} +1 -1
  3. package/dist/array-D5vjT2Xm.js +14 -0
  4. package/dist/array-D5vjT2Xm.js.map +1 -0
  5. package/dist/{button-trIfcqC7.js → button-ClzS8JLq.js} +3 -3
  6. package/dist/{button-trIfcqC7.js.map → button-ClzS8JLq.js.map} +1 -1
  7. package/dist/{button-group-DA7xoziD.js → button-group-BMS5WvaF.js} +4 -4
  8. package/dist/{button-group-DA7xoziD.js.map → button-group-BMS5WvaF.js.map} +1 -1
  9. package/dist/button-group.js +4 -4
  10. package/dist/button.js +3 -3
  11. package/dist/card.js +104 -0
  12. package/dist/card.js.map +1 -0
  13. package/dist/chart-bar-DbnXQgvS.js +1121 -0
  14. package/dist/chart-bar-DbnXQgvS.js.map +1 -0
  15. package/dist/chart-bar.js +259 -0
  16. package/dist/chart-bar.js.map +1 -0
  17. package/dist/chart-donut.js +4 -2
  18. package/dist/chart-donut.js.map +1 -1
  19. package/dist/chart-doughnut.js +4 -2
  20. package/dist/chart-doughnut.js.map +1 -1
  21. package/dist/chart-pie.js +4 -2
  22. package/dist/chart-pie.js.map +1 -1
  23. package/dist/chart-stacked-bar.js +401 -0
  24. package/dist/chart-stacked-bar.js.map +1 -0
  25. package/dist/{class-map-hJdvjl-W.js → class-map-59YGWLnx.js} +2 -2
  26. package/dist/{class-map-hJdvjl-W.js.map → class-map-59YGWLnx.js.map} +1 -1
  27. package/dist/clock.js +1 -1
  28. package/dist/code-editor.js +3 -3
  29. package/dist/code-highlighter.js +3 -3
  30. package/dist/custom-elements-jsdocs.json +2308 -766
  31. package/dist/custom-elements.json +909 -25
  32. package/dist/index.js +16 -9
  33. package/dist/index.js.map +1 -1
  34. package/dist/number-counter.js +2 -2
  35. package/dist/{observe-theme-change-BISF-Gl5.js → observe-theme-change-pALI5fmV.js} +2 -2
  36. package/dist/{observe-theme-change-BISF-Gl5.js.map → observe-theme-change-pALI5fmV.js.map} +1 -1
  37. package/dist/peacock-loader.js +22 -526
  38. package/dist/peacock-loader.js.map +1 -1
  39. package/dist/pie-Dz0IDiPt.js +537 -0
  40. package/dist/pie-Dz0IDiPt.js.map +1 -0
  41. package/dist/{tree-view-CLolVlU0.js → snackbar-74YCdMPL.js} +1005 -143
  42. package/dist/snackbar-74YCdMPL.js.map +1 -0
  43. package/dist/src/card/card.d.ts +27 -0
  44. package/dist/src/card/index.d.ts +1 -0
  45. package/dist/src/chart-bar/chart-bar.d.ts +53 -0
  46. package/dist/src/chart-bar/chart-stacked-bar.d.ts +78 -0
  47. package/dist/src/chart-bar/index.d.ts +2 -0
  48. package/dist/src/index.d.ts +5 -0
  49. package/dist/src/menu/menu-item/menu-item.d.ts +1 -1
  50. package/dist/src/snackbar/index.d.ts +1 -0
  51. package/dist/src/snackbar/snackbar.d.ts +40 -0
  52. package/dist/src/tabs/tab-group.d.ts +1 -1
  53. package/dist/src/tabs/tab-panel.d.ts +1 -0
  54. package/dist/src/tabs/tab.d.ts +2 -1
  55. package/dist/{style-map-CfNHEkQp.js → style-map-DcB52w-l.js} +2 -2
  56. package/dist/{style-map-CfNHEkQp.js.map → style-map-DcB52w-l.js.map} +1 -1
  57. package/dist/test/card.test.d.ts +1 -0
  58. package/dist/test/chart-bar.test.d.ts +1 -0
  59. package/dist/test/snackbar.test.d.ts +1 -0
  60. package/dist/{transform-DRuHEvar.js → transform-DSwFSqzD.js} +13 -558
  61. package/dist/transform-DSwFSqzD.js.map +1 -0
  62. package/dist/tsconfig.tsbuildinfo +1 -1
  63. package/dist/{unsafe-html-CV6Je6HL.js → unsafe-html-C2r3PyzF.js} +2 -2
  64. package/dist/{unsafe-html-CV6Je6HL.js.map → unsafe-html-C2r3PyzF.js.map} +1 -1
  65. package/package.json +1 -1
  66. package/readme.md +2 -2
  67. package/src/card/card.scss +61 -0
  68. package/src/card/card.ts +38 -0
  69. package/src/card/index.ts +1 -0
  70. package/src/chart-bar/chart-bar.scss +58 -0
  71. package/src/chart-bar/chart-bar.ts +306 -0
  72. package/src/chart-bar/chart-stacked-bar.ts +402 -0
  73. package/src/chart-bar/index.ts +2 -0
  74. package/src/index.ts +5 -0
  75. package/src/menu/menu-item/menu-item.ts +1 -1
  76. package/src/peacock-loader.ts +14 -0
  77. package/src/snackbar/demo/index.html +29 -0
  78. package/src/snackbar/index.ts +1 -0
  79. package/src/snackbar/snackbar.scss +73 -0
  80. package/src/snackbar/snackbar.ts +151 -0
  81. package/src/tabs/tab-group.ts +57 -28
  82. package/src/tabs/tab-panel.scss +3 -3
  83. package/src/tabs/tab-panel.ts +2 -0
  84. package/src/tabs/tab.scss +76 -2
  85. package/src/tabs/tab.ts +28 -6
  86. package/src/tabs/tabs.ts +15 -3
  87. package/dist/transform-DRuHEvar.js.map +0 -1
  88. package/dist/tree-view-CLolVlU0.js.map +0 -1
@@ -496,6 +496,14 @@
496
496
  "module": "./switch/index.js"
497
497
  }
498
498
  },
499
+ {
500
+ "kind": "js",
501
+ "name": "Checkbox",
502
+ "declaration": {
503
+ "name": "Checkbox",
504
+ "module": "./checkbox/index.js"
505
+ }
506
+ },
499
507
  {
500
508
  "kind": "js",
501
509
  "name": "Spinner",
@@ -640,6 +648,14 @@
640
648
  "module": "./slider/index.js"
641
649
  }
642
650
  },
651
+ {
652
+ "kind": "js",
653
+ "name": "ChartDonut",
654
+ "declaration": {
655
+ "name": "ChartDonut",
656
+ "module": "./chart-donut/index.js"
657
+ }
658
+ },
643
659
  {
644
660
  "kind": "js",
645
661
  "name": "ChartDoughnut",
@@ -656,6 +672,22 @@
656
672
  "module": "./chart-pie/index.js"
657
673
  }
658
674
  },
675
+ {
676
+ "kind": "js",
677
+ "name": "ChartBar",
678
+ "declaration": {
679
+ "name": "ChartBar",
680
+ "module": "./chart-bar/index.js"
681
+ }
682
+ },
683
+ {
684
+ "kind": "js",
685
+ "name": "ChartStackedBar",
686
+ "declaration": {
687
+ "name": "ChartStackedBar",
688
+ "module": "./chart-bar/index.js"
689
+ }
690
+ },
659
691
  {
660
692
  "kind": "js",
661
693
  "name": "Table",
@@ -687,6 +719,22 @@
687
719
  "name": "TreeNode",
688
720
  "module": "./tree-view/index.js"
689
721
  }
722
+ },
723
+ {
724
+ "kind": "js",
725
+ "name": "Card",
726
+ "declaration": {
727
+ "name": "Card",
728
+ "module": "./card/index.js"
729
+ }
730
+ },
731
+ {
732
+ "kind": "js",
733
+ "name": "Snackbar",
734
+ "declaration": {
735
+ "name": "Snackbar",
736
+ "module": "./snackbar/index.js"
737
+ }
690
738
  }
691
739
  ]
692
740
  },
@@ -1511,6 +1559,107 @@
1511
1559
  }
1512
1560
  ]
1513
1561
  },
1562
+ {
1563
+ "kind": "javascript-module",
1564
+ "path": "src/card/card.ts",
1565
+ "declarations": [
1566
+ {
1567
+ "kind": "class",
1568
+ "description": "",
1569
+ "name": "Card",
1570
+ "cssProperties": [
1571
+ {
1572
+ "description": "Inner padding for the card container. Defaults to 1rem.",
1573
+ "name": "--card-padding"
1574
+ },
1575
+ {
1576
+ "description": "Corner radius for the card container. Defaults to a large radius.",
1577
+ "name": "--card-shape"
1578
+ },
1579
+ {
1580
+ "description": "Gap between slotted children.",
1581
+ "name": "--card-gap"
1582
+ }
1583
+ ],
1584
+ "members": [
1585
+ {
1586
+ "kind": "field",
1587
+ "name": "variant",
1588
+ "type": {
1589
+ "text": "CardVariant"
1590
+ },
1591
+ "default": "'elevated'",
1592
+ "attribute": "variant",
1593
+ "reflects": true
1594
+ },
1595
+ {
1596
+ "kind": "field",
1597
+ "name": "elevation",
1598
+ "type": {
1599
+ "text": "CardElevation"
1600
+ },
1601
+ "default": "1",
1602
+ "attribute": "elevation",
1603
+ "reflects": true
1604
+ }
1605
+ ],
1606
+ "attributes": [
1607
+ {
1608
+ "name": "variant",
1609
+ "type": {
1610
+ "text": "CardVariant"
1611
+ },
1612
+ "default": "'elevated'",
1613
+ "fieldName": "variant"
1614
+ },
1615
+ {
1616
+ "name": "elevation",
1617
+ "type": {
1618
+ "text": "CardElevation"
1619
+ },
1620
+ "default": "1",
1621
+ "fieldName": "elevation"
1622
+ }
1623
+ ],
1624
+ "superclass": {
1625
+ "name": "LitElement",
1626
+ "package": "lit"
1627
+ },
1628
+ "tagName": "wc-card",
1629
+ "customElement": true,
1630
+ "summary": "A Material 3 inspired card surface for grouping related content.",
1631
+ "rawTag": {
1632
+ "name": "card",
1633
+ "description": ""
1634
+ }
1635
+ }
1636
+ ],
1637
+ "exports": [
1638
+ {
1639
+ "kind": "js",
1640
+ "name": "Card",
1641
+ "declaration": {
1642
+ "name": "Card",
1643
+ "module": "src/card/card.ts"
1644
+ }
1645
+ }
1646
+ ]
1647
+ },
1648
+ {
1649
+ "kind": "javascript-module",
1650
+ "path": "src/card/index.ts",
1651
+ "declarations": [],
1652
+ "exports": [
1653
+ {
1654
+ "kind": "js",
1655
+ "name": "Card",
1656
+ "declaration": {
1657
+ "name": "Card",
1658
+ "module": "./card.js"
1659
+ }
1660
+ }
1661
+ ]
1662
+ },
1514
1663
  {
1515
1664
  "kind": "javascript-module",
1516
1665
  "path": "src/button/BaseButton.ts",
@@ -1901,10 +2050,473 @@
1901
2050
  },
1902
2051
  {
1903
2052
  "kind": "js",
1904
- "name": "IconButton",
2053
+ "name": "IconButton",
2054
+ "declaration": {
2055
+ "name": "IconButton",
2056
+ "module": "./icon-button/icon-button.js"
2057
+ }
2058
+ }
2059
+ ]
2060
+ },
2061
+ {
2062
+ "kind": "javascript-module",
2063
+ "path": "src/chart-bar/chart-bar.ts",
2064
+ "declarations": [
2065
+ {
2066
+ "kind": "class",
2067
+ "description": "",
2068
+ "name": "ChartBar",
2069
+ "members": [
2070
+ {
2071
+ "kind": "field",
2072
+ "name": "svgElement",
2073
+ "type": {
2074
+ "text": "SVGElement | undefined"
2075
+ },
2076
+ "privacy": "private"
2077
+ },
2078
+ {
2079
+ "kind": "field",
2080
+ "name": "width",
2081
+ "type": {
2082
+ "text": "number"
2083
+ },
2084
+ "default": "0",
2085
+ "description": "Width of the chart in pixels.",
2086
+ "attribute": "width",
2087
+ "reflects": true
2088
+ },
2089
+ {
2090
+ "kind": "field",
2091
+ "name": "height",
2092
+ "type": {
2093
+ "text": "number"
2094
+ },
2095
+ "default": "320",
2096
+ "description": "Height of the chart in pixels.",
2097
+ "attribute": "height",
2098
+ "reflects": true
2099
+ },
2100
+ {
2101
+ "kind": "field",
2102
+ "name": "margin",
2103
+ "type": {
2104
+ "text": "number"
2105
+ },
2106
+ "default": "24",
2107
+ "description": "Margin around the chart drawing area.",
2108
+ "attribute": "margin"
2109
+ },
2110
+ {
2111
+ "kind": "field",
2112
+ "name": "data",
2113
+ "type": {
2114
+ "text": "ChartBarItem[]"
2115
+ },
2116
+ "default": "[]",
2117
+ "description": "Chart data array. Each item should have name, value, and optional label and color.",
2118
+ "attribute": "data"
2119
+ },
2120
+ {
2121
+ "kind": "field",
2122
+ "name": "showValues",
2123
+ "type": {
2124
+ "text": "boolean"
2125
+ },
2126
+ "default": "true",
2127
+ "description": "Whether to render value labels above bars.",
2128
+ "attribute": "show-values"
2129
+ },
2130
+ {
2131
+ "kind": "field",
2132
+ "name": "_initialized",
2133
+ "type": {
2134
+ "text": "boolean"
2135
+ },
2136
+ "privacy": "private",
2137
+ "default": "false"
2138
+ },
2139
+ {
2140
+ "kind": "field",
2141
+ "name": "_debouncedRenderChart",
2142
+ "privacy": "private"
2143
+ },
2144
+ {
2145
+ "kind": "method",
2146
+ "name": "_getPaletteScale",
2147
+ "privacy": "private"
2148
+ },
2149
+ {
2150
+ "kind": "method",
2151
+ "name": "_resolveColor",
2152
+ "privacy": "private",
2153
+ "parameters": [
2154
+ {
2155
+ "name": "name",
2156
+ "type": {
2157
+ "text": "string"
2158
+ }
2159
+ },
2160
+ {
2161
+ "name": "override",
2162
+ "type": {
2163
+ "text": "string | undefined"
2164
+ }
2165
+ },
2166
+ {
2167
+ "name": "scale",
2168
+ "type": {
2169
+ "text": "d3.ScaleOrdinal<string, string>"
2170
+ }
2171
+ }
2172
+ ]
2173
+ },
2174
+ {
2175
+ "kind": "method",
2176
+ "name": "_renderChart",
2177
+ "privacy": "private",
2178
+ "parameters": [
2179
+ {
2180
+ "name": "animate",
2181
+ "type": {
2182
+ "text": "boolean"
2183
+ }
2184
+ }
2185
+ ]
2186
+ }
2187
+ ],
2188
+ "attributes": [
2189
+ {
2190
+ "name": "width",
2191
+ "type": {
2192
+ "text": "number"
2193
+ },
2194
+ "default": "0",
2195
+ "description": "Width of the chart in pixels.",
2196
+ "fieldName": "width"
2197
+ },
2198
+ {
2199
+ "name": "height",
2200
+ "type": {
2201
+ "text": "number"
2202
+ },
2203
+ "default": "DEFAULT_HEIGHT",
2204
+ "description": "Height of the chart in pixels.",
2205
+ "fieldName": "height"
2206
+ },
2207
+ {
2208
+ "name": "margin",
2209
+ "type": {
2210
+ "text": "number"
2211
+ },
2212
+ "default": "24",
2213
+ "description": "Margin around the chart drawing area.",
2214
+ "fieldName": "margin"
2215
+ },
2216
+ {
2217
+ "name": "data",
2218
+ "type": {
2219
+ "text": "ChartBarItem[]"
2220
+ },
2221
+ "default": "[]",
2222
+ "description": "Chart data array. Each item should have name, value, and optional label and color.",
2223
+ "fieldName": "data"
2224
+ },
2225
+ {
2226
+ "name": "show-values",
2227
+ "type": {
2228
+ "text": "boolean"
2229
+ },
2230
+ "default": "true",
2231
+ "description": "Whether to render value labels above bars.",
2232
+ "fieldName": "showValues"
2233
+ }
2234
+ ],
2235
+ "superclass": {
2236
+ "name": "LitElement",
2237
+ "package": "lit"
2238
+ },
2239
+ "tagName": "wc-chart-bar",
2240
+ "customElement": true,
2241
+ "summary": "A vertical bar chart that follows Material Design 3 color and spacing tokens.",
2242
+ "rawTag": {
2243
+ "name": "chart-bar",
2244
+ "description": ""
2245
+ }
2246
+ }
2247
+ ],
2248
+ "exports": [
2249
+ {
2250
+ "kind": "js",
2251
+ "name": "ChartBar",
2252
+ "declaration": {
2253
+ "name": "ChartBar",
2254
+ "module": "src/chart-bar/chart-bar.ts"
2255
+ }
2256
+ }
2257
+ ]
2258
+ },
2259
+ {
2260
+ "kind": "javascript-module",
2261
+ "path": "src/chart-bar/chart-stacked-bar.ts",
2262
+ "declarations": [
2263
+ {
2264
+ "kind": "class",
2265
+ "description": "",
2266
+ "name": "ChartStackedBar",
2267
+ "members": [
2268
+ {
2269
+ "kind": "field",
2270
+ "name": "svgElement",
2271
+ "type": {
2272
+ "text": "SVGElement | undefined"
2273
+ },
2274
+ "privacy": "private"
2275
+ },
2276
+ {
2277
+ "kind": "field",
2278
+ "name": "width",
2279
+ "type": {
2280
+ "text": "number"
2281
+ },
2282
+ "default": "0",
2283
+ "description": "Width of the chart in pixels.",
2284
+ "attribute": "width",
2285
+ "reflects": true
2286
+ },
2287
+ {
2288
+ "kind": "field",
2289
+ "name": "height",
2290
+ "type": {
2291
+ "text": "number"
2292
+ },
2293
+ "default": "360",
2294
+ "description": "Height of the chart in pixels.",
2295
+ "attribute": "height",
2296
+ "reflects": true
2297
+ },
2298
+ {
2299
+ "kind": "field",
2300
+ "name": "margin",
2301
+ "type": {
2302
+ "text": "number"
2303
+ },
2304
+ "default": "28",
2305
+ "description": "Margin around the chart drawing area.",
2306
+ "attribute": "margin"
2307
+ },
2308
+ {
2309
+ "kind": "field",
2310
+ "name": "data",
2311
+ "type": {
2312
+ "text": "ChartStackedBarItem[]"
2313
+ },
2314
+ "default": "[]",
2315
+ "description": "Chart data array. Each item holds the stacked segments for a category.",
2316
+ "attribute": "data"
2317
+ },
2318
+ {
2319
+ "kind": "field",
2320
+ "name": "showValues",
2321
+ "type": {
2322
+ "text": "boolean"
2323
+ },
2324
+ "default": "true",
2325
+ "description": "Whether to render total value labels above each stack.",
2326
+ "attribute": "show-values"
2327
+ },
2328
+ {
2329
+ "kind": "field",
2330
+ "name": "showLegend",
2331
+ "type": {
2332
+ "text": "boolean"
2333
+ },
2334
+ "default": "true",
2335
+ "description": "Whether to render the legend.",
2336
+ "attribute": "show-legend"
2337
+ },
2338
+ {
2339
+ "kind": "field",
2340
+ "name": "_initialized",
2341
+ "type": {
2342
+ "text": "boolean"
2343
+ },
2344
+ "privacy": "private",
2345
+ "default": "false"
2346
+ },
2347
+ {
2348
+ "kind": "field",
2349
+ "name": "_debouncedRenderChart",
2350
+ "privacy": "private"
2351
+ },
2352
+ {
2353
+ "kind": "method",
2354
+ "name": "_getSegmentKeys",
2355
+ "privacy": "private"
2356
+ },
2357
+ {
2358
+ "kind": "method",
2359
+ "name": "_getColorScale",
2360
+ "privacy": "private",
2361
+ "parameters": [
2362
+ {
2363
+ "name": "keys",
2364
+ "type": {
2365
+ "text": "string[]"
2366
+ }
2367
+ }
2368
+ ]
2369
+ },
2370
+ {
2371
+ "kind": "method",
2372
+ "name": "_getColorMap",
2373
+ "privacy": "private",
2374
+ "parameters": [
2375
+ {
2376
+ "name": "keys",
2377
+ "type": {
2378
+ "text": "string[]"
2379
+ }
2380
+ },
2381
+ {
2382
+ "name": "scale",
2383
+ "type": {
2384
+ "text": "d3.ScaleOrdinal<string, string>"
2385
+ }
2386
+ }
2387
+ ]
2388
+ },
2389
+ {
2390
+ "kind": "method",
2391
+ "name": "_getSegmentLabel",
2392
+ "privacy": "private",
2393
+ "parameters": [
2394
+ {
2395
+ "name": "key",
2396
+ "type": {
2397
+ "text": "string"
2398
+ }
2399
+ }
2400
+ ]
2401
+ },
2402
+ {
2403
+ "kind": "method",
2404
+ "name": "_getTotals",
2405
+ "privacy": "private"
2406
+ },
2407
+ {
2408
+ "kind": "method",
2409
+ "name": "_renderChart",
2410
+ "privacy": "private",
2411
+ "parameters": [
2412
+ {
2413
+ "name": "animate",
2414
+ "type": {
2415
+ "text": "boolean"
2416
+ }
2417
+ }
2418
+ ]
2419
+ }
2420
+ ],
2421
+ "attributes": [
2422
+ {
2423
+ "name": "width",
2424
+ "type": {
2425
+ "text": "number"
2426
+ },
2427
+ "default": "0",
2428
+ "description": "Width of the chart in pixels.",
2429
+ "fieldName": "width"
2430
+ },
2431
+ {
2432
+ "name": "height",
2433
+ "type": {
2434
+ "text": "number"
2435
+ },
2436
+ "default": "DEFAULT_HEIGHT",
2437
+ "description": "Height of the chart in pixels.",
2438
+ "fieldName": "height"
2439
+ },
2440
+ {
2441
+ "name": "margin",
2442
+ "type": {
2443
+ "text": "number"
2444
+ },
2445
+ "default": "28",
2446
+ "description": "Margin around the chart drawing area.",
2447
+ "fieldName": "margin"
2448
+ },
2449
+ {
2450
+ "name": "data",
2451
+ "type": {
2452
+ "text": "ChartStackedBarItem[]"
2453
+ },
2454
+ "default": "[]",
2455
+ "description": "Chart data array. Each item holds the stacked segments for a category.",
2456
+ "fieldName": "data"
2457
+ },
2458
+ {
2459
+ "name": "show-values",
2460
+ "type": {
2461
+ "text": "boolean"
2462
+ },
2463
+ "default": "true",
2464
+ "description": "Whether to render total value labels above each stack.",
2465
+ "fieldName": "showValues"
2466
+ },
2467
+ {
2468
+ "name": "show-legend",
2469
+ "type": {
2470
+ "text": "boolean"
2471
+ },
2472
+ "default": "true",
2473
+ "description": "Whether to render the legend.",
2474
+ "fieldName": "showLegend"
2475
+ }
2476
+ ],
2477
+ "superclass": {
2478
+ "name": "LitElement",
2479
+ "package": "lit"
2480
+ },
2481
+ "tagName": "wc-chart-stacked-bar",
2482
+ "customElement": true,
2483
+ "summary": "A stacked bar chart that groups series by category using Material Design 3 tokens.",
2484
+ "rawTag": {
2485
+ "name": "chart-stacked-bar",
2486
+ "description": ""
2487
+ }
2488
+ }
2489
+ ],
2490
+ "exports": [
2491
+ {
2492
+ "kind": "js",
2493
+ "name": "ChartStackedBar",
2494
+ "declaration": {
2495
+ "name": "ChartStackedBar",
2496
+ "module": "src/chart-bar/chart-stacked-bar.ts"
2497
+ }
2498
+ }
2499
+ ]
2500
+ },
2501
+ {
2502
+ "kind": "javascript-module",
2503
+ "path": "src/chart-bar/index.ts",
2504
+ "declarations": [],
2505
+ "exports": [
2506
+ {
2507
+ "kind": "js",
2508
+ "name": "ChartBar",
2509
+ "declaration": {
2510
+ "name": "ChartBar",
2511
+ "module": "./chart-bar.js"
2512
+ }
2513
+ },
2514
+ {
2515
+ "kind": "js",
2516
+ "name": "ChartStackedBar",
1905
2517
  "declaration": {
1906
- "name": "IconButton",
1907
- "module": "./icon-button/icon-button.js"
2518
+ "name": "ChartStackedBar",
2519
+ "module": "./chart-stacked-bar.js"
1908
2520
  }
1909
2521
  }
1910
2522
  ]
@@ -7993,6 +8605,252 @@
7993
8605
  }
7994
8606
  ]
7995
8607
  },
8608
+ {
8609
+ "kind": "javascript-module",
8610
+ "path": "src/snackbar/index.ts",
8611
+ "declarations": [],
8612
+ "exports": [
8613
+ {
8614
+ "kind": "js",
8615
+ "name": "Snackbar",
8616
+ "declaration": {
8617
+ "name": "Snackbar",
8618
+ "module": "./snackbar.js"
8619
+ }
8620
+ }
8621
+ ]
8622
+ },
8623
+ {
8624
+ "kind": "javascript-module",
8625
+ "path": "src/snackbar/snackbar.ts",
8626
+ "declarations": [
8627
+ {
8628
+ "kind": "class",
8629
+ "description": "",
8630
+ "name": "Snackbar",
8631
+ "cssProperties": [
8632
+ {
8633
+ "description": "Container color for the snackbar.",
8634
+ "name": "--snackbar-container-color"
8635
+ },
8636
+ {
8637
+ "description": "Label text color for the snackbar.",
8638
+ "name": "--snackbar-label-text-color"
8639
+ },
8640
+ {
8641
+ "description": "Action text color.",
8642
+ "name": "--snackbar-action-text-color"
8643
+ },
8644
+ {
8645
+ "description": "Close icon color.",
8646
+ "name": "--snackbar-close-icon-color"
8647
+ },
8648
+ {
8649
+ "description": "Border radius of the snackbar surface.",
8650
+ "name": "--snackbar-border-radius"
8651
+ }
8652
+ ],
8653
+ "members": [
8654
+ {
8655
+ "kind": "field",
8656
+ "name": "open",
8657
+ "type": {
8658
+ "text": "boolean"
8659
+ },
8660
+ "default": "false",
8661
+ "attribute": "open",
8662
+ "reflects": true
8663
+ },
8664
+ {
8665
+ "kind": "field",
8666
+ "name": "message",
8667
+ "type": {
8668
+ "text": "string"
8669
+ },
8670
+ "default": "''",
8671
+ "attribute": "message"
8672
+ },
8673
+ {
8674
+ "kind": "field",
8675
+ "name": "actionLabel",
8676
+ "type": {
8677
+ "text": "string"
8678
+ },
8679
+ "default": "''",
8680
+ "attribute": "action-label"
8681
+ },
8682
+ {
8683
+ "kind": "field",
8684
+ "name": "showCloseIcon",
8685
+ "type": {
8686
+ "text": "boolean"
8687
+ },
8688
+ "default": "false",
8689
+ "attribute": "show-close-icon"
8690
+ },
8691
+ {
8692
+ "kind": "field",
8693
+ "name": "duration",
8694
+ "type": {
8695
+ "text": "number"
8696
+ },
8697
+ "default": "4000",
8698
+ "attribute": "duration"
8699
+ },
8700
+ {
8701
+ "kind": "field",
8702
+ "name": "multiline",
8703
+ "type": {
8704
+ "text": "boolean"
8705
+ },
8706
+ "default": "false",
8707
+ "attribute": "multiline",
8708
+ "reflects": true
8709
+ },
8710
+ {
8711
+ "kind": "field",
8712
+ "name": "hideTimer",
8713
+ "type": {
8714
+ "text": "ReturnType<typeof setTimeout> | null"
8715
+ },
8716
+ "privacy": "private",
8717
+ "default": "null"
8718
+ },
8719
+ {
8720
+ "kind": "method",
8721
+ "name": "show"
8722
+ },
8723
+ {
8724
+ "kind": "method",
8725
+ "name": "hide"
8726
+ },
8727
+ {
8728
+ "kind": "method",
8729
+ "name": "close",
8730
+ "privacy": "private",
8731
+ "parameters": [
8732
+ {
8733
+ "name": "reason",
8734
+ "type": {
8735
+ "text": "SnackbarCloseReason"
8736
+ }
8737
+ }
8738
+ ]
8739
+ },
8740
+ {
8741
+ "kind": "method",
8742
+ "name": "dispatchActionEvent",
8743
+ "privacy": "private"
8744
+ },
8745
+ {
8746
+ "kind": "method",
8747
+ "name": "handleActionClick",
8748
+ "privacy": "private"
8749
+ },
8750
+ {
8751
+ "kind": "method",
8752
+ "name": "handleCloseClick",
8753
+ "privacy": "private"
8754
+ },
8755
+ {
8756
+ "kind": "method",
8757
+ "name": "clearTimer",
8758
+ "privacy": "private"
8759
+ },
8760
+ {
8761
+ "kind": "method",
8762
+ "name": "scheduleAutoHide",
8763
+ "privacy": "private"
8764
+ }
8765
+ ],
8766
+ "events": [
8767
+ {
8768
+ "name": "snackbar-close",
8769
+ "type": {
8770
+ "text": "CustomEvent"
8771
+ }
8772
+ },
8773
+ {
8774
+ "name": "snackbar-action",
8775
+ "type": {
8776
+ "text": "CustomEvent"
8777
+ }
8778
+ }
8779
+ ],
8780
+ "attributes": [
8781
+ {
8782
+ "name": "open",
8783
+ "type": {
8784
+ "text": "boolean"
8785
+ },
8786
+ "default": "false",
8787
+ "fieldName": "open"
8788
+ },
8789
+ {
8790
+ "name": "message",
8791
+ "type": {
8792
+ "text": "string"
8793
+ },
8794
+ "default": "''",
8795
+ "fieldName": "message"
8796
+ },
8797
+ {
8798
+ "name": "action-label",
8799
+ "type": {
8800
+ "text": "string"
8801
+ },
8802
+ "default": "''",
8803
+ "fieldName": "actionLabel"
8804
+ },
8805
+ {
8806
+ "name": "show-close-icon",
8807
+ "type": {
8808
+ "text": "boolean"
8809
+ },
8810
+ "default": "false",
8811
+ "fieldName": "showCloseIcon"
8812
+ },
8813
+ {
8814
+ "name": "duration",
8815
+ "type": {
8816
+ "text": "number"
8817
+ },
8818
+ "default": "4000",
8819
+ "fieldName": "duration"
8820
+ },
8821
+ {
8822
+ "name": "multiline",
8823
+ "type": {
8824
+ "text": "boolean"
8825
+ },
8826
+ "default": "false",
8827
+ "fieldName": "multiline"
8828
+ }
8829
+ ],
8830
+ "superclass": {
8831
+ "name": "LitElement",
8832
+ "package": "lit"
8833
+ },
8834
+ "tagName": "wc-snackbar",
8835
+ "customElement": true,
8836
+ "summary": "Snackbars provide brief messages about app processes at the bottom of the screen.",
8837
+ "rawTag": {
8838
+ "name": "snackbar",
8839
+ "description": ""
8840
+ }
8841
+ }
8842
+ ],
8843
+ "exports": [
8844
+ {
8845
+ "kind": "js",
8846
+ "name": "Snackbar",
8847
+ "declaration": {
8848
+ "name": "Snackbar",
8849
+ "module": "src/snackbar/snackbar.ts"
8850
+ }
8851
+ }
8852
+ ]
8853
+ },
7996
8854
  {
7997
8855
  "kind": "javascript-module",
7998
8856
  "path": "src/spinner/index.ts",
@@ -9082,11 +9940,6 @@
9082
9940
  "attribute": "variant",
9083
9941
  "reflects": true
9084
9942
  },
9085
- {
9086
- "kind": "field",
9087
- "name": "uid",
9088
- "privacy": "private"
9089
- },
9090
9943
  {
9091
9944
  "kind": "field",
9092
9945
  "name": "onTabClick",
@@ -9104,13 +9957,25 @@
9104
9957
  }
9105
9958
  ]
9106
9959
  },
9960
+ {
9961
+ "kind": "method",
9962
+ "name": "selectTabByIndex",
9963
+ "parameters": [
9964
+ {
9965
+ "name": "index",
9966
+ "type": {
9967
+ "text": "number"
9968
+ }
9969
+ }
9970
+ ]
9971
+ },
9107
9972
  {
9108
9973
  "kind": "method",
9109
9974
  "name": "getTabs",
9110
9975
  "privacy": "private",
9111
9976
  "return": {
9112
9977
  "type": {
9113
- "text": "NodeListOf<HTMLElement>"
9978
+ "text": "HTMLElement[]"
9114
9979
  }
9115
9980
  }
9116
9981
  },
@@ -9120,7 +9985,7 @@
9120
9985
  "privacy": "private",
9121
9986
  "return": {
9122
9987
  "type": {
9123
- "text": "NodeListOf<HTMLElement>"
9988
+ "text": "HTMLElement[]"
9124
9989
  }
9125
9990
  }
9126
9991
  },
@@ -9201,6 +10066,16 @@
9201
10066
  },
9202
10067
  "attribute": "value",
9203
10068
  "reflects": true
10069
+ },
10070
+ {
10071
+ "kind": "field",
10072
+ "name": "active",
10073
+ "type": {
10074
+ "text": "boolean"
10075
+ },
10076
+ "default": "false",
10077
+ "attribute": "active",
10078
+ "reflects": true
9204
10079
  }
9205
10080
  ],
9206
10081
  "attributes": [
@@ -9210,6 +10085,14 @@
9210
10085
  "text": "string | undefined"
9211
10086
  },
9212
10087
  "fieldName": "value"
10088
+ },
10089
+ {
10090
+ "name": "active",
10091
+ "type": {
10092
+ "text": "boolean"
10093
+ },
10094
+ "default": "false",
10095
+ "fieldName": "active"
9213
10096
  }
9214
10097
  ],
9215
10098
  "superclass": {
@@ -9279,14 +10162,6 @@
9279
10162
  "default": "''",
9280
10163
  "attribute": "disabledReason"
9281
10164
  },
9282
- {
9283
- "kind": "field",
9284
- "name": "icon",
9285
- "type": {
9286
- "text": "string | undefined"
9287
- },
9288
- "attribute": "icon"
9289
- },
9290
10165
  {
9291
10166
  "kind": "field",
9292
10167
  "name": "label",
@@ -9357,6 +10232,22 @@
9357
10232
  },
9358
10233
  "default": "false"
9359
10234
  },
10235
+ {
10236
+ "kind": "field",
10237
+ "name": "slotHasIcon",
10238
+ "type": {
10239
+ "text": "boolean"
10240
+ },
10241
+ "default": "false"
10242
+ },
10243
+ {
10244
+ "kind": "field",
10245
+ "name": "slotHasBadge",
10246
+ "type": {
10247
+ "text": "boolean"
10248
+ },
10249
+ "default": "false"
10250
+ },
9360
10251
  {
9361
10252
  "kind": "field",
9362
10253
  "name": "isPressed",
@@ -9448,13 +10339,6 @@
9448
10339
  "default": "''",
9449
10340
  "fieldName": "disabledReason"
9450
10341
  },
9451
- {
9452
- "name": "icon",
9453
- "type": {
9454
- "text": "string | undefined"
9455
- },
9456
- "fieldName": "icon"
9457
- },
9458
10342
  {
9459
10343
  "name": "label",
9460
10344
  "type": {