@fattureincloud/fic-design-system 0.7.40 → 0.7.42
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/monthlyTab/MonthlyTab.d.ts +3 -0
- package/dist/components/monthlyTab/components/month/Month.d.ts +10 -0
- package/dist/components/monthlyTab/components/month/styled.d.ts +14 -0
- package/dist/components/monthlyTab/index.d.ts +3 -0
- package/dist/components/monthlyTab/monthlyTab.stories.d.ts +6 -0
- package/dist/components/monthlyTab/monthlyTabPalette.d.ts +3 -0
- package/dist/components/monthlyTab/stories/data.d.ts +2 -0
- package/dist/components/monthlyTab/styled.d.ts +5 -0
- package/dist/components/monthlyTab/types.d.ts +36 -0
- package/dist/components/monthlyTab/utils.d.ts +4 -0
- package/dist/index.d.ts +5 -2
- package/dist/index.esm.js +26 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +26 -6
- package/dist/index.js.map +1 -1
- package/dist/styles/theme.d.ts +2 -0
- package/package.json +2 -1
package/dist/styles/theme.d.ts
CHANGED
@@ -21,6 +21,7 @@ import { IconBackgroundPalette, IconPalette } from '../components/icon';
|
|
21
21
|
import { InlineMessagePalette } from '../components/inlineMessage';
|
22
22
|
import { SidebarItemPalette } from '../components/layout/sidebarItem';
|
23
23
|
import { MicroTagPalette } from '../components/microTag';
|
24
|
+
import { MonthlyTabPalette } from '../components/monthlyTab';
|
24
25
|
import { TablePalette } from '../components/oldTable';
|
25
26
|
import { PaginationPalette } from '../components/pagination';
|
26
27
|
import { ProgressBarPalette } from '../components/progressbar';
|
@@ -66,6 +67,7 @@ interface Components {
|
|
66
67
|
segmentButton: SegmentButtonPalette;
|
67
68
|
card: CardPalette;
|
68
69
|
circularProgressBar: CircularProgressBarPalette;
|
70
|
+
monthlyTab: MonthlyTabPalette;
|
69
71
|
}
|
70
72
|
export interface Theme {
|
71
73
|
palette: Palette;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fattureincloud/fic-design-system",
|
3
|
-
"version": "0.7.
|
3
|
+
"version": "0.7.42",
|
4
4
|
"description": "Fatture in Cloud and Danea design system",
|
5
5
|
"repository": "git@bitbucket.org:fattureincloud/design-system.git",
|
6
6
|
"license": "MIT",
|
@@ -63,6 +63,7 @@
|
|
63
63
|
"@tanstack/react-table": "^8.5.13",
|
64
64
|
"@types/react": "^17.0.37",
|
65
65
|
"@types/react-select": "^4.0.18",
|
66
|
+
"@viselect/react": "^3.2.7",
|
66
67
|
"date-fns": "^2.28.0",
|
67
68
|
"libphonenumber-js": "^1.10.18",
|
68
69
|
"lodash": "^4.17.21",
|