@ssa-ui-kit/core 1.1.0 → 1.1.1
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/.storybook/style.css +4 -0
- package/dist/components/Button/fixtures.d.ts +16 -16
- package/dist/components/FullscreenModeContext.d.ts +14 -0
- package/dist/components/Icon/icons/Maximize.d.ts +3 -0
- package/dist/components/Icon/icons/all.d.ts +1 -0
- package/dist/components/Icon/icons/iconsList.d.ts +1 -1
- package/dist/components/PieChart/PieChart.d.ts +4 -1
- package/dist/components/PieChart/PieChartBases.d.ts +5 -0
- package/dist/components/PieChart/PieChartHeader.d.ts +2 -0
- package/dist/components/PieChart/PieChartLegend.d.ts +1 -1
- package/dist/components/PieChart/PieChartLegendList.d.ts +2 -0
- package/dist/components/PieChart/PieChartLegendListItem.d.ts +13 -0
- package/dist/components/PieChart/PieChartLegendMarker.d.ts +1 -0
- package/dist/components/PieChart/stories/fixtures.d.ts +5 -0
- package/dist/components/PieChart/styles.d.ts +3 -0
- package/dist/components/PieChart/types.d.ts +10 -4
- package/dist/components/WidgetCard/Content.d.ts +5 -0
- package/dist/components/WidgetCard/Header.d.ts +9 -0
- package/dist/components/WidgetCard/Title.d.ts +3 -0
- package/dist/components/WidgetCard/WidgetCard.d.ts +2 -0
- package/dist/components/WidgetCard/WidgetCardBase.d.ts +6 -0
- package/dist/components/WidgetCard/WithWidgetCard.d.ts +4 -0
- package/dist/components/WidgetCard/index.d.ts +5 -0
- package/dist/components/WidgetCard/types.d.ts +13 -0
- package/dist/components/WithLink.d.ts +7 -0
- package/dist/components/index.d.ts +59 -56
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/emotion.d.ts +1 -0
- package/package.json +3 -3
- package/src/components/FullscreenModeContext.tsx +62 -0
- package/src/components/Icon/icons/Maximize.tsx +26 -0
- package/src/components/Icon/icons/all.ts +1 -0
- package/src/components/Pagination/components/RowsPerPageDropdown/RowsPerPageDropdown.tsx +5 -7
- package/src/components/PieChart/PieChart.stories.tsx +70 -2
- package/src/components/PieChart/PieChart.tsx +82 -30
- package/src/components/PieChart/PieChartBases.tsx +32 -5
- package/src/components/PieChart/PieChartHeader.tsx +43 -0
- package/src/components/PieChart/PieChartLegend.tsx +83 -20
- package/src/components/PieChart/PieChartLegendList.tsx +10 -6
- package/src/components/PieChart/PieChartLegendListItem.tsx +30 -0
- package/src/components/PieChart/PieChartLegendMarker.tsx +9 -3
- package/src/components/PieChart/colorPalettes.ts +4 -0
- package/src/components/PieChart/stories/fixtures.ts +53 -0
- package/src/components/PieChart/styles.ts +24 -0
- package/src/components/PieChart/types.ts +13 -4
- package/src/components/SegmentedPieChart/SegmentedPieChart.tsx +1 -1
- package/src/components/WidgetCard/Content.tsx +19 -0
- package/src/components/WidgetCard/Header.tsx +45 -0
- package/src/components/WidgetCard/Title.tsx +10 -0
- package/src/components/WidgetCard/WidgetCard.tsx +38 -0
- package/src/components/WidgetCard/WidgetCardBase.tsx +27 -0
- package/src/components/WidgetCard/WithWidgetCard.tsx +18 -0
- package/src/components/WidgetCard/index.ts +5 -0
- package/src/components/WidgetCard/types.ts +14 -0
- package/src/components/WithLink.tsx +30 -0
- package/src/components/index.ts +59 -56
- package/src/themes/main.ts +1 -0
- package/src/types/emotion.ts +1 -0
- package/tsbuildcache +1 -1
- package/tsconfig.build.json +2 -0
- /package/src/components/LinksTabBar/{LinksTabBar.spec.tsx → LinksTabBar.specBackup.tsx} +0 -0
- /package/src/components/WithVisibleLG/{WithVisibleLG.spec.tsx → WithVisibleLG.specBackup.tsx} +0 -0
- /package/src/components/WithVisibleMD/{WithVisibleMD.spec.tsx → WithVisibleMD.specBackup.tsx} +0 -0
- /package/src/components/WithVisibleSM/{WithVisibleSM.spec.tsx → WithVisibleSM.specBackup.tsx} +0 -0
- /package/src/components/WithVisibleUpToLG/{WithVisibleUpToLG.spec.tsx → WithVisibleUpToLG.specBackup.tsx} +0 -0
package/tsconfig.build.json
CHANGED
|
File without changes
|
/package/src/components/WithVisibleLG/{WithVisibleLG.spec.tsx → WithVisibleLG.specBackup.tsx}
RENAMED
|
File without changes
|
/package/src/components/WithVisibleMD/{WithVisibleMD.spec.tsx → WithVisibleMD.specBackup.tsx}
RENAMED
|
File without changes
|
/package/src/components/WithVisibleSM/{WithVisibleSM.spec.tsx → WithVisibleSM.specBackup.tsx}
RENAMED
|
File without changes
|
|
File without changes
|