@tsiky/components-r19 1.0.0 → 1.2.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.
- package/index.ts +35 -33
- package/package.json +1 -1
- package/src/components/AnnouncementPanel/FlexRowContainer.css +17 -17
- package/src/components/AnnouncementPanel/FlexRowContainer.stories.tsx +329 -329
- package/src/components/AnnouncementPanel/FlexRowContainer.tsx +24 -24
- package/src/components/AnnouncementPanel/ListBox/CounterListBox.css +56 -56
- package/src/components/AnnouncementPanel/ListBox/CounterListBox.stories.tsx +292 -292
- package/src/components/AnnouncementPanel/ListBox/CounterListBox.tsx +106 -106
- package/src/components/AnnouncementPanel/ListBox/SimpleListBox.css +57 -57
- package/src/components/AnnouncementPanel/ListBox/SimpleListBox.stories.tsx +189 -189
- package/src/components/AnnouncementPanel/ListBox/SimpleListBox.tsx +138 -138
- package/src/components/AnnouncementPanel/ListBox/TrendListBox.css +61 -61
- package/src/components/AnnouncementPanel/ListBox/TrendListBox.stories.tsx +257 -257
- package/src/components/AnnouncementPanel/ListBox/TrendListBox.tsx +90 -90
- package/src/components/AnnouncementPanel/ListBox/index.ts +3 -3
- package/src/components/AnnouncementPanel/ListContentContainer.css +23 -23
- package/src/components/AnnouncementPanel/ListContentContainer.stories.tsx +212 -212
- package/src/components/AnnouncementPanel/ListContentContainer.tsx +33 -33
- package/src/components/AnnouncementPanel/index.ts +3 -3
- package/src/components/Charts/area-chart-admission/AreaChartAdmission.tsx +129 -89
- package/src/components/Charts/bar-chart/BarChart.tsx +171 -132
- package/src/components/Charts/boxplot-chart/BoxPlotChart.tsx +114 -114
- package/src/components/Charts/mixed-chart/MixedChart.tsx +65 -9
- package/src/components/Charts/sankey-adaptation/sankey.tsx +70 -70
- package/src/components/Charts/sankey-chart/SankeyChart.tsx +183 -155
- package/src/components/Confirmationpopup/ConfirmationPopup.module.css +88 -0
- package/src/components/Confirmationpopup/ConfirmationPopup.stories.tsx +94 -0
- package/src/components/Confirmationpopup/ConfirmationPopup.tsx +47 -0
- package/src/components/Confirmationpopup/index.ts +6 -0
- package/src/components/Confirmationpopup/useConfirmationPopup.ts +48 -0
- package/src/components/DayStatCard/DayStatCard.tsx +96 -69
- package/src/components/DraggableSwitcher/DraggableSwitcherButton.tsx +58 -58
- package/src/components/DraggableSwitcher/context/useDraggableSwitcher.tsx +45 -45
- package/src/components/DraggableSwitcher/index.ts +2 -2
- package/src/components/DynamicInput/input/SelectInput.tsx +75 -75
- package/src/components/DynamicInput/input/assets/SelectInput.module.css +95 -95
- package/src/components/DynamicTable/TableCell.tsx +38 -30
- package/src/components/DynamicTable/TableHeader.tsx +39 -34
- package/src/components/DynamicTable/TableauDynamique.module.css +1333 -1287
- package/src/components/DynamicTable/TableauDynamique.tsx +154 -154
- package/src/components/DynamicTable/tools/tableTypes.ts +63 -63
- package/src/components/Grid/Grid.tsx +5 -0
- package/src/components/Grid/grid.css +285 -285
- package/src/components/Header/Header.tsx +4 -2
- package/src/components/Header/header.css +61 -31
- package/src/components/MetricsPanel/MetricsPanel.module.css +688 -636
- package/src/components/MetricsPanel/MetricsPanel.tsx +220 -282
- package/src/components/MetricsPanel/renderers/CompactRenderer.tsx +148 -125
- package/src/components/NavBar/NavBar.tsx +1 -1
- package/src/components/NavItem/NavItem.tsx +58 -58
- package/src/components/PeriodRange/PeriodRange.module.css +158 -158
- package/src/components/PeriodRange/PeriodRange.tsx +130 -130
- package/src/components/SearchBar/SearchBar.css +40 -40
- package/src/components/SelectFilter/SelectFilter.module.css +249 -0
- package/src/components/SelectFilter/SelectFilter.stories.tsx +321 -0
- package/src/components/SelectFilter/SelectFilter.tsx +219 -0
- package/src/components/SelectFilter/index.ts +2 -0
- package/src/components/SelectFilter/types.ts +19 -0
- package/src/components/TranslationKey/TranslationKey.css +272 -272
- package/src/components/TranslationKey/TranslationKey.tsx +266 -245
- package/src/components/TrendList/TrendList.tsx +72 -45
package/index.ts
CHANGED
|
@@ -1,33 +1,35 @@
|
|
|
1
|
-
export * from './src/components/Button';
|
|
2
|
-
export * from './src/components/CircularProgress';
|
|
3
|
-
export * from './src/components/DayStatCard';
|
|
4
|
-
export * from './src/components/DropdownMenu';
|
|
5
|
-
export * from './src/components/Grid';
|
|
6
|
-
export * from './src/components/Header';
|
|
7
|
-
export * from './src/components/IconText';
|
|
8
|
-
export * from './src/components/Logo';
|
|
9
|
-
export * from './src/components/NavBar';
|
|
10
|
-
export * from './src/components/NavItem';
|
|
11
|
-
export * from './src/components/ScrollableHorizontale';
|
|
12
|
-
export * from './src/components/SubNavBar';
|
|
13
|
-
export * from './src/components/TrendItem';
|
|
14
|
-
export * from './src/components/TrendList';
|
|
15
|
-
export * from './src/components/theme';
|
|
16
|
-
export * from './src/components/DynamicForm';
|
|
17
|
-
export * from './src/components/DynamicInput';
|
|
18
|
-
export * from './src/components/DynamicTable';
|
|
19
|
-
export * from './src/components/MetricsPanel';
|
|
20
|
-
export * from './src/components/ChartContainer';
|
|
21
|
-
export * from './src/components/Switcher';
|
|
22
|
-
export * from './src/components/Alert';
|
|
23
|
-
export * from './src/components/PeriodSelect';
|
|
24
|
-
export * from './src/components/SideComponent';
|
|
25
|
-
export * from './src/components/Title';
|
|
26
|
-
export * from './src/components/ModuleHeader';
|
|
27
|
-
export * from './src/components/ModuleSideBar';
|
|
28
|
-
export * from './src/components/SearchBar';
|
|
29
|
-
export * from './src/components/TranslationKey';
|
|
30
|
-
export * from './src/components/EntryControl';
|
|
31
|
-
export * from './src/components/AddItemModal';
|
|
32
|
-
export * from './src/components/DraggableSwitcher';
|
|
33
|
-
export * from './src/components/AnnouncementPanel';
|
|
1
|
+
export * from './src/components/Button';
|
|
2
|
+
export * from './src/components/CircularProgress';
|
|
3
|
+
export * from './src/components/DayStatCard';
|
|
4
|
+
export * from './src/components/DropdownMenu';
|
|
5
|
+
export * from './src/components/Grid';
|
|
6
|
+
export * from './src/components/Header';
|
|
7
|
+
export * from './src/components/IconText';
|
|
8
|
+
export * from './src/components/Logo';
|
|
9
|
+
export * from './src/components/NavBar';
|
|
10
|
+
export * from './src/components/NavItem';
|
|
11
|
+
export * from './src/components/ScrollableHorizontale';
|
|
12
|
+
export * from './src/components/SubNavBar';
|
|
13
|
+
export * from './src/components/TrendItem';
|
|
14
|
+
export * from './src/components/TrendList';
|
|
15
|
+
export * from './src/components/theme';
|
|
16
|
+
export * from './src/components/DynamicForm';
|
|
17
|
+
export * from './src/components/DynamicInput';
|
|
18
|
+
export * from './src/components/DynamicTable';
|
|
19
|
+
export * from './src/components/MetricsPanel';
|
|
20
|
+
export * from './src/components/ChartContainer';
|
|
21
|
+
export * from './src/components/Switcher';
|
|
22
|
+
export * from './src/components/Alert';
|
|
23
|
+
export * from './src/components/PeriodSelect';
|
|
24
|
+
export * from './src/components/SideComponent';
|
|
25
|
+
export * from './src/components/Title';
|
|
26
|
+
export * from './src/components/ModuleHeader';
|
|
27
|
+
export * from './src/components/ModuleSideBar';
|
|
28
|
+
export * from './src/components/SearchBar';
|
|
29
|
+
export * from './src/components/TranslationKey';
|
|
30
|
+
export * from './src/components/EntryControl';
|
|
31
|
+
export * from './src/components/AddItemModal';
|
|
32
|
+
export * from './src/components/DraggableSwitcher';
|
|
33
|
+
export * from './src/components/AnnouncementPanel';
|
|
34
|
+
export * from './src/components/Confirmationpopup';
|
|
35
|
+
export * from './src/components/SelectFilter';
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
.frc-root {
|
|
2
|
-
display: flex;
|
|
3
|
-
gap: var(--frc-gap, 12px);
|
|
4
|
-
flex-wrap: wrap;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.frc-item {
|
|
8
|
-
box-sizing: border-box;
|
|
9
|
-
display: flex;
|
|
10
|
-
flex: 1 1 auto;
|
|
11
|
-
min-width: min-content;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.frc-item > * {
|
|
15
|
-
width: 100%;
|
|
16
|
-
min-width: 0;
|
|
17
|
-
}
|
|
1
|
+
.frc-root {
|
|
2
|
+
display: flex;
|
|
3
|
+
gap: var(--frc-gap, 12px);
|
|
4
|
+
flex-wrap: wrap;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.frc-item {
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
display: flex;
|
|
10
|
+
flex: 1 1 auto;
|
|
11
|
+
min-width: min-content;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.frc-item > * {
|
|
15
|
+
width: 100%;
|
|
16
|
+
min-width: 0;
|
|
17
|
+
}
|