@epam/ai-dial-ui-kit 0.12.0-dev.7 → 0.12.0-dev.9

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 (28) hide show
  1. package/dist/{JsonEditor-_IJQNADE.js → JsonEditor-BUSVL8Nf.js} +1 -1
  2. package/dist/{JsonEditor-BYWLq9FT.cjs → JsonEditor-bH9iEgeS.cjs} +1 -1
  3. package/dist/{MarkdownEditor-CvZ9WOdx.cjs → MarkdownEditor-DMYUcSTi.cjs} +1 -1
  4. package/dist/{MarkdownEditor-Bn2qoMXC.js → MarkdownEditor-DlQ9Xilh.js} +1 -1
  5. package/dist/components-manifest.json +130 -2
  6. package/dist/dial-ui-kit.cjs.js +1 -1
  7. package/dist/dial-ui-kit.es.js +135 -126
  8. package/dist/{index-DicgiK1U.js → index-D1DPfPQX.js} +9881 -9544
  9. package/dist/{index-DFGsNy4J.cjs → index-D1Mdz55f.cjs} +30 -30
  10. package/dist/index.css +1 -1
  11. package/dist/src/components/Accordion/Accordion.d.ts +50 -0
  12. package/dist/src/components/Analytics/Bar/Bar.d.ts +63 -0
  13. package/dist/src/components/Analytics/Bar/utils.d.ts +20 -0
  14. package/dist/src/components/Analytics/Bar/utils.spec.d.ts +1 -0
  15. package/dist/src/components/Analytics/BarGroup/BarGroup.d.ts +39 -0
  16. package/dist/src/components/Analytics/Card/Card.d.ts +52 -0
  17. package/dist/src/components/Analytics/ErrorTag/ErrorTag.d.ts +21 -0
  18. package/dist/src/components/Analytics/Histogram/Histogram.d.ts +44 -0
  19. package/dist/src/components/Analytics/Histogram/utils.d.ts +37 -0
  20. package/dist/src/components/Analytics/Histogram/utils.spec.d.ts +1 -0
  21. package/dist/src/components/Analytics/index.d.ts +13 -0
  22. package/dist/src/components/Tab/Tab.d.ts +4 -0
  23. package/dist/src/components/Tabs/Tabs.d.ts +7 -1
  24. package/dist/src/index.d.ts +16 -1
  25. package/dist/src/models/analytics.d.ts +8 -0
  26. package/dist/src/types/analytics.d.ts +4 -0
  27. package/dist/src/types/tab.d.ts +4 -0
  28. package/package.json +1 -1
@@ -0,0 +1,8 @@
1
+ export interface AnalyticsBarColorStop {
2
+ /** Lower bound of the band (exclusive), as a ratio of value to maxValue (0–1). */
3
+ from: number;
4
+ /** Upper bound of the band (inclusive), as a ratio of value to maxValue (0–1). */
5
+ to: number;
6
+ /** CSS color applied to the fill when the ratio falls within this band. */
7
+ color: string;
8
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum AnalyticsCardVariant {
2
+ Default = "default",
3
+ Compact = "compact"
4
+ }
@@ -2,6 +2,10 @@ export declare enum TabOrientation {
2
2
  Horizontal = "horizontal",
3
3
  Vertical = "vertical"
4
4
  }
5
+ export declare enum TabView {
6
+ Default = "default",
7
+ Inline = "inline"
8
+ }
5
9
  export declare enum ScreenResolution {
6
10
  Mobile = "mobile",
7
11
  Tablet = "tablet"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epam/ai-dial-ui-kit",
3
- "version": "0.12.0-dev.7",
3
+ "version": "0.12.0-dev.9",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "description": "A modern UI kit for building AI DIAL interfaces with React",