@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.
- package/dist/{JsonEditor-_IJQNADE.js → JsonEditor-BUSVL8Nf.js} +1 -1
- package/dist/{JsonEditor-BYWLq9FT.cjs → JsonEditor-bH9iEgeS.cjs} +1 -1
- package/dist/{MarkdownEditor-CvZ9WOdx.cjs → MarkdownEditor-DMYUcSTi.cjs} +1 -1
- package/dist/{MarkdownEditor-Bn2qoMXC.js → MarkdownEditor-DlQ9Xilh.js} +1 -1
- package/dist/components-manifest.json +130 -2
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +135 -126
- package/dist/{index-DicgiK1U.js → index-D1DPfPQX.js} +9881 -9544
- package/dist/{index-DFGsNy4J.cjs → index-D1Mdz55f.cjs} +30 -30
- package/dist/index.css +1 -1
- package/dist/src/components/Accordion/Accordion.d.ts +50 -0
- package/dist/src/components/Analytics/Bar/Bar.d.ts +63 -0
- package/dist/src/components/Analytics/Bar/utils.d.ts +20 -0
- package/dist/src/components/Analytics/Bar/utils.spec.d.ts +1 -0
- package/dist/src/components/Analytics/BarGroup/BarGroup.d.ts +39 -0
- package/dist/src/components/Analytics/Card/Card.d.ts +52 -0
- package/dist/src/components/Analytics/ErrorTag/ErrorTag.d.ts +21 -0
- package/dist/src/components/Analytics/Histogram/Histogram.d.ts +44 -0
- package/dist/src/components/Analytics/Histogram/utils.d.ts +37 -0
- package/dist/src/components/Analytics/Histogram/utils.spec.d.ts +1 -0
- package/dist/src/components/Analytics/index.d.ts +13 -0
- package/dist/src/components/Tab/Tab.d.ts +4 -0
- package/dist/src/components/Tabs/Tabs.d.ts +7 -1
- package/dist/src/index.d.ts +16 -1
- package/dist/src/models/analytics.d.ts +8 -0
- package/dist/src/types/analytics.d.ts +4 -0
- package/dist/src/types/tab.d.ts +4 -0
- 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
|
+
}
|
package/dist/src/types/tab.d.ts
CHANGED