@infonomic/uikit 5.41.0 → 5.43.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/dist/components/@types/shared.d.ts +52 -0
- package/dist/components/@types/shared.d.ts.map +1 -1
- package/dist/components/accordion/accordion.d.ts.map +1 -1
- package/dist/components/accordion/accordion.module.css +1 -2
- package/dist/components/avatar/avatar.d.ts.map +1 -1
- package/dist/components/avatar/avatar.module.css +6 -7
- package/dist/components/badge/badge.d.ts.map +1 -1
- package/dist/components/badge/badge.module.css +6 -7
- package/dist/components/button/@types/button.d.ts +31 -1
- package/dist/components/button/@types/button.d.ts.map +1 -1
- package/dist/components/button/button-group.module.css +1 -3
- package/dist/components/button/button.module.css +48 -31
- package/dist/components/button/combo-button.d.ts.map +1 -1
- package/dist/components/button/combo-button.module.css +3 -3
- package/dist/components/button/control-buttons.module.css +1 -2
- package/dist/components/button/copy-button.d.ts.map +1 -1
- package/dist/components/button/copy-button.module.css +6 -7
- package/dist/components/card/card.d.ts.map +1 -1
- package/dist/components/card/card.module.css +6 -10
- package/dist/components/chips/@types/chip.d.ts +20 -0
- package/dist/components/chips/@types/chip.d.ts.map +1 -1
- package/dist/components/chips/chip.d.ts.map +1 -1
- package/dist/components/chips/chip.module.css +30 -19
- package/dist/components/container/container.d.ts.map +1 -1
- package/dist/components/container/container.module.css +6 -10
- package/dist/components/dropdown/dropdown.module.css +6 -7
- package/dist/components/forms/@types/checkbox.d.ts +28 -1
- package/dist/components/forms/@types/checkbox.d.ts.map +1 -1
- package/dist/components/forms/@types/input.d.ts +29 -1
- package/dist/components/forms/@types/input.d.ts.map +1 -1
- package/dist/components/forms/calendar.module.css +14 -14
- package/dist/components/forms/checkbox-group.d.ts.map +1 -1
- package/dist/components/forms/checkbox.d.ts.map +1 -1
- package/dist/components/forms/checkbox.module.css +12 -17
- package/dist/components/forms/checkbox.module.js +0 -1
- package/dist/components/forms/checkbox_module.css +3 -13
- package/dist/components/forms/error-text.module.css +6 -7
- package/dist/components/forms/help-text.d.ts.map +1 -1
- package/dist/components/forms/help-text.module.css +6 -7
- package/dist/components/forms/input-adornment.module.css +6 -7
- package/dist/components/forms/input-password.d.ts.map +1 -1
- package/dist/components/forms/input.d.ts.map +1 -1
- package/dist/components/forms/input.module.css +6 -7
- package/dist/components/forms/label.module.css +6 -7
- package/dist/components/forms/radio-group.module.css +6 -7
- package/dist/components/forms/select.d.ts.map +1 -1
- package/dist/components/forms/select.js +1 -1
- package/dist/components/forms/select.module.css +74 -3
- package/dist/components/forms/select.module.js +10 -0
- package/dist/components/forms/select_module.css +63 -3
- package/dist/components/forms/text-area.module.css +10 -9
- package/dist/components/notifications/@types/alert.d.ts +16 -1
- package/dist/components/notifications/@types/alert.d.ts.map +1 -1
- package/dist/components/notifications/@types/toast.d.ts +36 -1
- package/dist/components/notifications/@types/toast.d.ts.map +1 -1
- package/dist/components/notifications/alert.d.ts.map +1 -1
- package/dist/components/notifications/alert.module.css +6 -7
- package/dist/components/notifications/toast.module.css +6 -8
- package/dist/components/overlay/overlay.module.css +6 -4
- package/dist/components/pager/@types/index.d.ts +12 -0
- package/dist/components/pager/@types/index.d.ts.map +1 -1
- package/dist/components/pager/pagination.module.css +6 -8
- package/dist/components/scroll-area/scroll-area.d.ts.map +1 -1
- package/dist/components/scroll-area/scroll-area.module.css +6 -7
- package/dist/components/scroll-to-top/scroll-to-top.module.css +5 -7
- package/dist/components/section/section.d.ts.map +1 -1
- package/dist/components/section/section.module.css +6 -7
- package/dist/components/shimmer/shimmer.module.css +6 -8
- package/dist/components/table/table.d.ts.map +1 -1
- package/dist/components/table/table.module.css +6 -8
- package/dist/components/tabs/tabs.module.css +6 -7
- package/dist/components/tooltip/tooltip.module.css +6 -7
- package/dist/icons/eye-closed-icon.d.ts.map +1 -1
- package/dist/icons/eye-open-icon.d.ts.map +1 -1
- package/dist/icons/icons.module.css +1 -1
- package/dist/widgets/datepicker/datepicker.d.ts.map +1 -1
- package/dist/widgets/datepicker/datepicker.module.css +1 -2
- package/dist/widgets/drawer/drawer-container.d.ts.map +1 -1
- package/dist/widgets/drawer/drawer-content.d.ts.map +1 -1
- package/dist/widgets/drawer/drawer.module.css +1 -3
- package/dist/widgets/modal/modal-actions.d.ts.map +1 -1
- package/dist/widgets/modal/modal-container.d.ts.map +1 -1
- package/dist/widgets/modal/modal-content.d.ts.map +1 -1
- package/dist/widgets/modal/modal.module.css +1 -3
- package/dist/widgets/timeline/timeline.module.css +6 -8
- package/package.json +1 -1
- package/src/components/@types/shared.ts +55 -0
- package/src/components/accordion/accordion.module.css +1 -2
- package/src/components/accordion/accordion.stories.tsx +1 -2
- package/src/components/accordion/accordion.tsx +25 -5
- package/src/components/avatar/avatar.module.css +6 -7
- package/src/components/avatar/avatar.tsx +9 -2
- package/src/components/badge/badge.module.css +6 -7
- package/src/components/badge/badge.tsx +7 -1
- package/src/components/button/@types/button.ts +36 -1
- package/src/components/button/button-group.module.css +1 -3
- package/src/components/button/button.module.css +48 -31
- package/src/components/button/button.tsx +1 -1
- package/src/components/button/combo-button.module.css +3 -3
- package/src/components/button/combo-button.tsx +17 -5
- package/src/components/button/combo-buttons.stories.tsx +6 -3
- package/src/components/button/control-buttons.module.css +1 -2
- package/src/components/button/copy-button.module.css +6 -7
- package/src/components/button/copy-button.tsx +12 -3
- package/src/components/card/card.module.css +6 -10
- package/src/components/card/card.tsx +20 -4
- package/src/components/chips/@types/chip.ts +22 -0
- package/src/components/chips/chip.module.css +30 -19
- package/src/components/chips/chip.tsx +10 -5
- package/src/components/container/container.module.css +6 -10
- package/src/components/container/container.tsx +1 -1
- package/src/components/dropdown/dropdown.module.css +6 -7
- package/src/components/forms/@types/checkbox.ts +31 -1
- package/src/components/forms/@types/input.ts +32 -1
- package/src/components/forms/calendar.module.css +14 -14
- package/src/components/forms/checkbox-group.tsx +1 -1
- package/src/components/forms/checkbox.module.css +12 -17
- package/src/components/forms/checkbox.tsx +4 -1
- package/src/components/forms/error-text.module.css +6 -7
- package/src/components/forms/help-text.module.css +6 -7
- package/src/components/forms/help-text.tsx +5 -1
- package/src/components/forms/input-adornment.module.css +6 -7
- package/src/components/forms/input-password.tsx +7 -1
- package/src/components/forms/input.module.css +6 -7
- package/src/components/forms/input.tsx +18 -2
- package/src/components/forms/label.module.css +6 -7
- package/src/components/forms/radio-group.module.css +6 -7
- package/src/components/forms/select.module.css +74 -3
- package/src/components/forms/select.stories.tsx +47 -9
- package/src/components/forms/select.tsx +4 -2
- package/src/components/forms/text-area.module.css +10 -9
- package/src/components/notifications/@types/alert.ts +17 -1
- package/src/components/notifications/@types/toast.ts +40 -1
- package/src/components/notifications/alert.module.css +6 -7
- package/src/components/notifications/alert.tsx +10 -3
- package/src/components/notifications/toast.module.css +6 -8
- package/src/components/overlay/overlay.module.css +6 -4
- package/src/components/pager/@types/index.ts +13 -0
- package/src/components/pager/pagination.module.css +6 -8
- package/src/components/pager/pagination.tsx +6 -1
- package/src/components/scroll-area/scroll-area.module.css +6 -7
- package/src/components/scroll-area/scroll-area.tsx +13 -4
- package/src/components/scroll-to-top/scroll-to-top.module.css +5 -7
- package/src/components/section/section.module.css +6 -7
- package/src/components/section/section.tsx +1 -1
- package/src/components/shimmer/shimmer.module.css +6 -8
- package/src/components/table/table.module.css +6 -8
- package/src/components/table/table.tsx +6 -1
- package/src/components/tabs/tabs.module.css +6 -7
- package/src/components/tooltip/tooltip.module.css +6 -7
- package/src/icons/ai-icon.tsx +1 -1
- package/src/icons/eye-closed-icon.tsx +2 -1
- package/src/icons/eye-open-icon.tsx +1 -5
- package/src/icons/icons.module.css +1 -1
- package/src/styles/base/base.css +1 -1
- package/src/styles/base/colors.css +1 -2
- package/src/styles/components/loaders.css +1 -1
- package/src/styles/functional/colors.css +201 -56
- package/src/styles/functional/surfaces.css +1 -2
- package/src/styles/functional/typography.css +1 -1
- package/src/widgets/datepicker/datepicker.module.css +1 -2
- package/src/widgets/datepicker/datepicker.tsx +44 -16
- package/src/widgets/drawer/drawer-container.tsx +6 -1
- package/src/widgets/drawer/drawer-content.tsx +5 -1
- package/src/widgets/drawer/drawer.module.css +1 -3
- package/src/widgets/modal/modal-actions.tsx +5 -1
- package/src/widgets/modal/modal-container.tsx +5 -1
- package/src/widgets/modal/modal-content.tsx +5 -1
- package/src/widgets/modal/modal.module.css +1 -3
- package/src/widgets/timeline/timeline.module.css +6 -8
|
@@ -15,6 +15,18 @@
|
|
|
15
15
|
padding: 6px;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
+
.viewport-xs-ddEB1m, .viewport-sm-fUHdZh {
|
|
19
|
+
padding: 4px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.viewport-md-GHDx8O, .viewport-lg-joLSnL {
|
|
23
|
+
padding: 6px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.viewport-xl-RoyZD9 {
|
|
27
|
+
padding: 8px;
|
|
28
|
+
}
|
|
29
|
+
|
|
18
30
|
:is(.group-MyzEdB, .infonomic-select-group) {
|
|
19
31
|
z-index: 50;
|
|
20
32
|
}
|
|
@@ -39,8 +51,8 @@
|
|
|
39
51
|
border-radius: 6px;
|
|
40
52
|
align-items: center;
|
|
41
53
|
height: 32px;
|
|
42
|
-
padding-left:
|
|
43
|
-
padding-right:
|
|
54
|
+
padding-left: 24px;
|
|
55
|
+
padding-right: 32px;
|
|
44
56
|
font-size: 1rem;
|
|
45
57
|
line-height: 1;
|
|
46
58
|
display: flex;
|
|
@@ -72,10 +84,58 @@
|
|
|
72
84
|
:is(.select-item-indicator-nXFGV7, .infonomic-select-item-indicator) {
|
|
73
85
|
justify-content: center;
|
|
74
86
|
align-items: center;
|
|
75
|
-
width:
|
|
87
|
+
width: 24px;
|
|
76
88
|
display: inline-flex;
|
|
77
89
|
position: absolute;
|
|
78
90
|
left: 0;
|
|
79
91
|
}
|
|
92
|
+
|
|
93
|
+
.viewport-xs-ddEB1m .select-item-HiANA0 {
|
|
94
|
+
border-radius: 4px;
|
|
95
|
+
height: 24px;
|
|
96
|
+
padding-left: 20px;
|
|
97
|
+
padding-right: 28px;
|
|
98
|
+
font-size: .75rem;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.viewport-xs-ddEB1m .select-item-indicator-nXFGV7 {
|
|
102
|
+
width: 20px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.viewport-sm-fUHdZh .select-item-HiANA0 {
|
|
106
|
+
border-radius: 5px;
|
|
107
|
+
height: 28px;
|
|
108
|
+
padding-left: 22px;
|
|
109
|
+
padding-right: 30px;
|
|
110
|
+
font-size: .875rem;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.viewport-sm-fUHdZh .select-item-indicator-nXFGV7 {
|
|
114
|
+
width: 22px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.viewport-lg-joLSnL .select-item-HiANA0 {
|
|
118
|
+
border-radius: 6px;
|
|
119
|
+
height: 34px;
|
|
120
|
+
padding-left: 24px;
|
|
121
|
+
padding-right: 32px;
|
|
122
|
+
font-size: 1.125rem;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.viewport-lg-joLSnL .select-item-indicator-nXFGV7 {
|
|
126
|
+
width: 24px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.viewport-xl-RoyZD9 .select-item-HiANA0 {
|
|
130
|
+
border-radius: 8px;
|
|
131
|
+
height: 40px;
|
|
132
|
+
padding-left: 28px;
|
|
133
|
+
padding-right: 36px;
|
|
134
|
+
font-size: 1.25rem;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.viewport-xl-RoyZD9 .select-item-indicator-nXFGV7 {
|
|
138
|
+
width: 28px;
|
|
139
|
+
}
|
|
80
140
|
}
|
|
81
141
|
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.text-area,
|
|
11
10
|
:global(.infonomic-text-area) {
|
|
12
11
|
font-size: 1rem;
|
|
@@ -20,7 +19,9 @@ infonomic-components;
|
|
|
20
19
|
padding-right: 0;
|
|
21
20
|
}
|
|
22
21
|
|
|
23
|
-
.outlined {
|
|
22
|
+
.outlined {
|
|
23
|
+
}
|
|
24
24
|
|
|
25
|
-
.filled {
|
|
26
|
-
}
|
|
25
|
+
.filled {
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
import type { Intent as t } from '../../@types/shared.js';
|
|
2
2
|
/**
|
|
3
|
-
* This file contains the types and prop-types for
|
|
3
|
+
* This file contains the types and prop-types for the Alert component.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Semantic color intent of the alert.
|
|
7
|
+
*
|
|
8
|
+
* Controls the alert's background color, left border accent, icon, and text.
|
|
9
|
+
*
|
|
10
|
+
* - `primary` — informational blue-tinted alert (default)
|
|
11
|
+
* - `secondary` — alternate neutral style
|
|
12
|
+
* - `noeffect` — gray, no color emphasis
|
|
13
|
+
* - `success` — positive confirmation (green)
|
|
14
|
+
* - `info` — informational, non-critical (cyan/blue)
|
|
15
|
+
* - `warning` — caution, needs attention (yellow/amber)
|
|
16
|
+
* - `danger` — error or destructive state (red)
|
|
17
|
+
*
|
|
18
|
+
* @default 'primary'
|
|
4
19
|
*/
|
|
5
20
|
export type Intent = 'primary' | t;
|
|
6
21
|
//# sourceMappingURL=alert.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["../../../../src/components/notifications/@types/alert.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,wBAAwB,CAAA;AAEzD;;GAEG;
|
|
1
|
+
{"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["../../../../src/components/notifications/@types/alert.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,wBAAwB,CAAA;AAEzD;;GAEG;AAIH;;;;;;;;;;;;;;GAcG;AACH,MAAM,MAAM,MAAM,GAAG,SAAS,GAAG,CAAC,CAAA"}
|
|
@@ -1,9 +1,44 @@
|
|
|
1
1
|
import type { Icons as i, Position as p, Intent as t } from '../../@types/shared.js';
|
|
2
2
|
/**
|
|
3
|
-
* This file contains the types and prop-types for Toast component.
|
|
3
|
+
* This file contains the types and prop-types for the Toast component.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Semantic color intent of the toast notification.
|
|
7
|
+
*
|
|
8
|
+
* Controls the toast's background color, icon, and text style.
|
|
9
|
+
*
|
|
10
|
+
* - `primary` — standard informational toast (default)
|
|
11
|
+
* - `secondary` — alternate neutral style
|
|
12
|
+
* - `noeffect` — gray, no color emphasis
|
|
13
|
+
* - `success` — positive confirmation (green)
|
|
14
|
+
* - `info` — informational, non-critical (cyan/blue)
|
|
15
|
+
* - `warning` — caution, needs attention (yellow/amber)
|
|
16
|
+
* - `danger` — error or destructive state (red)
|
|
17
|
+
*
|
|
18
|
+
* @default 'primary'
|
|
4
19
|
*/
|
|
5
20
|
export type Intent = 'primary' | t;
|
|
21
|
+
/**
|
|
22
|
+
* Screen corner position for the toast container.
|
|
23
|
+
*
|
|
24
|
+
* - `top-left` — top-left corner of the viewport
|
|
25
|
+
* - `top-right` — top-right corner of the viewport (default)
|
|
26
|
+
* - `bottom-left` — bottom-left corner of the viewport
|
|
27
|
+
* - `bottom-right` — bottom-right corner of the viewport
|
|
28
|
+
*
|
|
29
|
+
* @default 'top-right'
|
|
30
|
+
*/
|
|
6
31
|
export type Position = 'top-right' | p;
|
|
32
|
+
/**
|
|
33
|
+
* Icon variant displayed inside the toast.
|
|
34
|
+
* Maps to the corresponding status icon component.
|
|
35
|
+
*/
|
|
7
36
|
export type IconType = 'success' | i;
|
|
37
|
+
/**
|
|
38
|
+
* Callback fired when the toast's open/visible state changes.
|
|
39
|
+
* Use this to sync dismissal with external state.
|
|
40
|
+
*
|
|
41
|
+
* @param open - `true` when the toast becomes visible, `false` when dismissed
|
|
42
|
+
*/
|
|
8
43
|
export type OnOpenChange = (open: boolean) => void;
|
|
9
44
|
//# sourceMappingURL=toast.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toast.d.ts","sourceRoot":"","sources":["../../../../src/components/notifications/@types/toast.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,KAAK,IAAI,CAAC,EAAE,QAAQ,IAAI,CAAC,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,wBAAwB,CAAA;AAEpF;;GAEG;
|
|
1
|
+
{"version":3,"file":"toast.d.ts","sourceRoot":"","sources":["../../../../src/components/notifications/@types/toast.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,KAAK,IAAI,CAAC,EAAE,QAAQ,IAAI,CAAC,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,wBAAwB,CAAA;AAEpF;;GAEG;AAIH;;;;;;;;;;;;;;GAcG;AACH,MAAM,MAAM,MAAM,GAAG,SAAS,GAAG,CAAC,CAAA;AAElC;;;;;;;;;GASG;AACH,MAAM,MAAM,QAAQ,GAAG,WAAW,GAAG,CAAC,CAAA;AAEtC;;;GAGG;AACH,MAAM,MAAM,QAAQ,GAAG,SAAS,GAAG,CAAC,CAAA;AAEpC;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["../../../src/components/notifications/alert.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAY9B,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAA;AAE/C,MAAM,WAAW,UAAU;IACzB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAC1B;AAWD,eAAO,MAAM,KAAK,GAAkB,mEASjC,UAAU,GAAG;IACd,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;CACtC,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["../../../src/components/notifications/alert.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAY9B,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAA;AAE/C,MAAM,WAAW,UAAU;IACzB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAC1B;AAWD,eAAO,MAAM,KAAK,GAAkB,mEASjC,UAAU,GAAG;IACd,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;CACtC,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO,GAAG,IA8EvB,CAAA"}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.alert,
|
|
11
10
|
:global(.infonomic-alert) {
|
|
12
11
|
display: flex;
|
|
@@ -134,4 +133,4 @@ infonomic-components;
|
|
|
134
133
|
--alert-border: var(--stroke-danger);
|
|
135
134
|
--alert-background: var(--fill-danger-weak);
|
|
136
135
|
}
|
|
137
|
-
}
|
|
136
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
9
|
/* Positions are relative to the toast viewport which is set
|
|
@@ -27,7 +27,6 @@ infonomic-components;
|
|
|
27
27
|
|
|
28
28
|
:global(.dark),
|
|
29
29
|
:global([data-theme="dark"]) {
|
|
30
|
-
|
|
31
30
|
.root,
|
|
32
31
|
:global(.infonomic-toast-root) {
|
|
33
32
|
background: var(--canvas-800);
|
|
@@ -156,7 +155,6 @@ infonomic-components;
|
|
|
156
155
|
}
|
|
157
156
|
|
|
158
157
|
@media (min-width: 48rem) {
|
|
159
|
-
|
|
160
158
|
.root.top-right[data-state="open"],
|
|
161
159
|
.root.bottom-right[data-state="open"],
|
|
162
160
|
:global(.infonomic-toast-root.top-right[data-state="open"]),
|
|
@@ -269,4 +267,4 @@ infonomic-components;
|
|
|
269
267
|
opacity: 0;
|
|
270
268
|
}
|
|
271
269
|
}
|
|
272
|
-
}
|
|
270
|
+
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
@layer infonomic-base,
|
|
1
|
+
@layer infonomic-base,
|
|
2
|
+
infonomic-utilities,
|
|
3
|
+
infonomic-theme,
|
|
4
|
+
infonomic-typography,
|
|
5
|
+
infonomic-components;
|
|
2
6
|
|
|
3
7
|
@layer infonomic-components {
|
|
4
|
-
|
|
5
8
|
.overlay,
|
|
6
9
|
:global(.infonomic-overlay) {
|
|
7
10
|
position: fixed;
|
|
@@ -15,7 +18,6 @@
|
|
|
15
18
|
|
|
16
19
|
:global(.dark),
|
|
17
20
|
:global([data-theme="dark"]) {
|
|
18
|
-
|
|
19
21
|
.overlay,
|
|
20
22
|
:global(.infonomic-overlay) {
|
|
21
23
|
background-color: rgba(0, 0, 0, 0.5);
|
|
@@ -51,4 +53,4 @@
|
|
|
51
53
|
opacity: 0;
|
|
52
54
|
}
|
|
53
55
|
}
|
|
54
|
-
}
|
|
56
|
+
}
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Available layout variants for the Pagination component.
|
|
3
|
+
*/
|
|
1
4
|
export declare const variant: readonly ["default", "classic", "dashboard"];
|
|
5
|
+
/**
|
|
6
|
+
* Layout variant of the pagination control.
|
|
7
|
+
*
|
|
8
|
+
* - `default` — numbered page buttons with previous/next arrows (default)
|
|
9
|
+
* - `classic` — previous/next arrows with a direct page number input
|
|
10
|
+
* - `dashboard` — compact variant optimised for data tables and dashboards
|
|
11
|
+
*
|
|
12
|
+
* @default 'default'
|
|
13
|
+
*/
|
|
2
14
|
export type Variant = (typeof variant)[number];
|
|
3
15
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/pager/@types/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,8CAA+C,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/pager/@types/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,OAAO,8CAA+C,CAAA;AAEnE;;;;;;;;GAQG;AACH,MAAM,MAAM,OAAO,GAAG,CAAC,OAAO,OAAO,CAAC,CAAC,MAAM,CAAC,CAAA"}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.pagination-root,
|
|
11
10
|
:global(.infonomic-pagination-root) {
|
|
12
11
|
display: flex;
|
|
@@ -141,7 +140,6 @@ infonomic-components;
|
|
|
141
140
|
*/
|
|
142
141
|
:global(.dark),
|
|
143
142
|
:global([data-theme="dark"]) {
|
|
144
|
-
|
|
145
143
|
.ellipses,
|
|
146
144
|
.number-button,
|
|
147
145
|
.next-button,
|
|
@@ -151,4 +149,4 @@ infonomic-components;
|
|
|
151
149
|
border-color: var(--canvas-700);
|
|
152
150
|
}
|
|
153
151
|
}
|
|
154
|
-
}
|
|
152
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scroll-area.d.ts","sourceRoot":"","sources":["../../../src/components/scroll-area/scroll-area.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,OAAO,EAAE,UAAU,IAAI,mBAAmB,EAAE,MAAM,UAAU,CAAA;AAI5D,UAAU,eAAgB,SAAQ,KAAK,CAAC,wBAAwB,CAAC,OAAO,mBAAmB,CAAC,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"scroll-area.d.ts","sourceRoot":"","sources":["../../../src/components/scroll-area/scroll-area.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,OAAO,EAAE,UAAU,IAAI,mBAAmB,EAAE,MAAM,UAAU,CAAA;AAI5D,UAAU,eAAgB,SAAQ,KAAK,CAAC,wBAAwB,CAAC,OAAO,mBAAmB,CAAC,IAAI,CAAC;CAAG;AAEpG,eAAO,MAAM,UAAU,GAAI,gCAAgC,eAAe,sBAsBzE,CAAA"}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.root,
|
|
11
10
|
:global(.infonomic-scroll-area) {
|
|
12
11
|
border-radius: 4px;
|
|
@@ -72,4 +71,4 @@ infonomic-components;
|
|
|
72
71
|
:global(.infonomic-scroll-area-corner) {
|
|
73
72
|
background: var(--surface-panel-scrollbar);
|
|
74
73
|
}
|
|
75
|
-
}
|
|
74
|
+
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-utilities,
|
|
3
|
-
infonomic-theme,
|
|
4
|
-
infonomic-typography,
|
|
5
|
-
infonomic-components;
|
|
2
|
+
infonomic-utilities,
|
|
3
|
+
infonomic-theme,
|
|
4
|
+
infonomic-typography,
|
|
5
|
+
infonomic-components;
|
|
6
6
|
|
|
7
7
|
@layer infonomic-components {
|
|
8
|
-
|
|
9
8
|
.scroll-to-top,
|
|
10
9
|
:global(.infonomic-scroll-to-top) {
|
|
11
10
|
display: flex;
|
|
@@ -68,7 +67,6 @@ infonomic-components;
|
|
|
68
67
|
}
|
|
69
68
|
|
|
70
69
|
@media screen and (min-width: 587px) {
|
|
71
|
-
|
|
72
70
|
.scroll-to-top,
|
|
73
71
|
:global(.infonomic-scroll-to-top) {
|
|
74
72
|
bottom: 45px;
|
|
@@ -89,4 +87,4 @@ infonomic-components;
|
|
|
89
87
|
right: 22px;
|
|
90
88
|
}
|
|
91
89
|
}
|
|
92
|
-
}
|
|
90
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"section.d.ts","sourceRoot":"","sources":["../../../src/components/section/section.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,KAAK,qBAAqB,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAA;AACnE,MAAM,WAAW,YAAa,SAAQ,qBAAqB;
|
|
1
|
+
{"version":3,"file":"section.d.ts","sourceRoot":"","sources":["../../../src/components/section/section.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,KAAK,qBAAqB,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAA;AACnE,MAAM,WAAW,YAAa,SAAQ,qBAAqB;CAAG;AAE9D,eAAO,MAAM,OAAO,GAAoB,uCAKrC,YAAY,GAAG;IAChB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,WAAW,CAAC,CAAA;CACnC,KAAG,KAAK,CAAC,GAAG,CAAC,OAMb,CAAA"}
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.section,
|
|
11
10
|
:global(.infonomic-section) {
|
|
12
11
|
width: 100%;
|
|
13
12
|
position: relative;
|
|
14
13
|
}
|
|
15
|
-
}
|
|
14
|
+
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
/* 'border-collapse w-full text-sm text-left text-gray-700 dark:text-gray-400 m-0', */
|
|
9
9
|
@layer infonomic-components {
|
|
10
|
-
|
|
11
10
|
.shimmer,
|
|
12
11
|
:global(.infonomic-shimmer) {
|
|
13
12
|
position: relative;
|
|
@@ -20,7 +19,6 @@ infonomic-components;
|
|
|
20
19
|
|
|
21
20
|
:global(.dark),
|
|
22
21
|
:global([data-theme="dark"]) {
|
|
23
|
-
|
|
24
22
|
.shimmer,
|
|
25
23
|
:global(.infonomic-shimmer) {
|
|
26
24
|
background-color: #141414;
|
|
@@ -60,4 +58,4 @@ infonomic-components;
|
|
|
60
58
|
background-position: 200% 0;
|
|
61
59
|
}
|
|
62
60
|
}
|
|
63
|
-
}
|
|
61
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../src/components/table/table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAMnC,MAAM,MAAM,UAAU,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAA;AAE7D,iBAAS,KAAK,CAAC,EACb,GAAG,EACH,SAAS,EACT,QAAQ,EACR,GAAG,IAAI,EACR,EAAE,UAAU,GAAG;IACd,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAA;CACxC,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO,CAQpB;kBAfQ,KAAK;2DAwBX,mBAAmB,GAAG;QACvB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;KACtC;sDAgBE,cAAc,GAAG;QAClB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAAA;KAC/C,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO;wDAelB,gBAAgB,GAAG;QACpB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAAA;KAC/C,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO;qDAiBlB,aAAa,GAAG;QACjB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,mBAAmB,CAAC,CAAA;KAC3C,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO;6DAiBlB,qBAAqB,GAAG;QACzB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,oBAAoB,CAAC,CAAA;KAC5C,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO;
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../src/components/table/table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAMnC,MAAM,MAAM,UAAU,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAA;AAE7D,iBAAS,KAAK,CAAC,EACb,GAAG,EACH,SAAS,EACT,QAAQ,EACR,GAAG,IAAI,EACR,EAAE,UAAU,GAAG;IACd,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAA;CACxC,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO,CAQpB;kBAfQ,KAAK;2DAwBX,mBAAmB,GAAG;QACvB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;KACtC;sDAgBE,cAAc,GAAG;QAClB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAAA;KAC/C,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO;wDAelB,gBAAgB,GAAG;QACpB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAAA;KAC/C,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO;qDAiBlB,aAAa,GAAG;QACjB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,mBAAmB,CAAC,CAAA;KAC3C,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO;6DAiBlB,qBAAqB,GAAG;QACzB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,oBAAoB,CAAC,CAAA;KAC5C,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO;sDAqBlB,cAAc,GAAG;QAClB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,oBAAoB,CAAC,CAAA;KAC5C,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO;wDAiBlB,gBAAgB,GAAG;QACpB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,uBAAuB,CAAC,CAAA;KAC/C,KAAG,KAAK,CAAC,GAAG,CAAC,OAAO;;AA5HrB,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;AAkBpE,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAA;AAiBjE,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAA;AAmBnE,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;AAmB7D,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;AAuBrE,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAA;AAmB9D,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAA;AA8BnE,OAAO,EAAE,KAAK,EAAE,CAAA"}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
/* 'border-collapse w-full text-sm text-left text-gray-700 dark:text-gray-400 m-0', */
|
|
9
9
|
@layer infonomic-components {
|
|
10
|
-
|
|
11
10
|
/* 'table--container break-normal overflow-hidden relative shadow-md rounded-md my-[16px] dark:border dark:border-canvas-700', */
|
|
12
11
|
.table-container,
|
|
13
12
|
:global(.infonomic-table-container) {
|
|
@@ -92,7 +91,6 @@ infonomic-components;
|
|
|
92
91
|
*/
|
|
93
92
|
:global(.dark),
|
|
94
93
|
:global([data-theme="dark"]) {
|
|
95
|
-
|
|
96
94
|
.table-header,
|
|
97
95
|
:global(.infonomic-table-header) {
|
|
98
96
|
background-color: var(--canvas-700);
|
|
@@ -119,4 +117,4 @@ infonomic-components;
|
|
|
119
117
|
background-color: var(--canvas-800);
|
|
120
118
|
}
|
|
121
119
|
}
|
|
122
|
-
}
|
|
120
|
+
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.tabs-root,
|
|
11
10
|
:global(.infonomic-tabs-root) {
|
|
12
11
|
display: flex;
|
|
@@ -72,4 +71,4 @@ infonomic-components;
|
|
|
72
71
|
outline: none;
|
|
73
72
|
}
|
|
74
73
|
}
|
|
75
|
-
}
|
|
74
|
+
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@layer infonomic-base,
|
|
2
|
-
infonomic-functional,
|
|
3
|
-
infonomic-utilities,
|
|
4
|
-
infonomic-theme,
|
|
5
|
-
infonomic-typography,
|
|
6
|
-
infonomic-components;
|
|
2
|
+
infonomic-functional,
|
|
3
|
+
infonomic-utilities,
|
|
4
|
+
infonomic-theme,
|
|
5
|
+
infonomic-typography,
|
|
6
|
+
infonomic-components;
|
|
7
7
|
|
|
8
8
|
@layer infonomic-components {
|
|
9
|
-
|
|
10
9
|
.tooltip,
|
|
11
10
|
:global(.infonomic-tooltip) {
|
|
12
11
|
font-size: 0.75rem;
|
|
@@ -46,4 +45,4 @@ infonomic-components;
|
|
|
46
45
|
:global(.infonomic-tooltip-arrow) {
|
|
47
46
|
fill: var(--surface-panel-border);
|
|
48
47
|
}
|
|
49
|
-
}
|
|
48
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eye-closed-icon.d.ts","sourceRoot":"","sources":["../../src/icons/eye-closed-icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAEhD,eAAO,MAAM,aAAa;2CAIvB,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO;;
|
|
1
|
+
{"version":3,"file":"eye-closed-icon.d.ts","sourceRoot":"","sources":["../../src/icons/eye-closed-icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAEhD,eAAO,MAAM,aAAa;2CAIvB,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO;;CAwB/B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eye-open-icon.d.ts","sourceRoot":"","sources":["../../src/icons/eye-open-icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAEhD,eAAO,MAAM,WAAW;
|
|
1
|
+
{"version":3,"file":"eye-open-icon.d.ts","sourceRoot":"","sources":["../../src/icons/eye-open-icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAM9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAEhD,eAAO,MAAM,WAAW;2CAA0C,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO;;CAoB9F,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datepicker.d.ts","sourceRoot":"","sources":["../../../src/widgets/datepicker/datepicker.tsx"],"names":[],"mappings":"AAEA;;;;;GAKG;AAEH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAgB9B,OAAO,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAA;AAEnF,MAAM,WAAW,eAAgB,SAAQ,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC;IAClF,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAA;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,UAAU,CAAA;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,IAAI,CAAA;IAChB,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,kBAAkB,CAAC,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"datepicker.d.ts","sourceRoot":"","sources":["../../../src/widgets/datepicker/datepicker.tsx"],"names":[],"mappings":"AAEA;;;;;GAKG;AAEH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAgB9B,OAAO,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAA;AAEnF,MAAM,WAAW,eAAgB,SAAQ,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC;IAClF,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,YAAY,CAAC,EAAE,IAAI,GAAG,IAAI,CAAA;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,UAAU,CAAA;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,IAAI,CAAA;IAChB,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;IACpB,YAAY,CAAC,EAAE,CAAC,KAAK,EAAE,IAAI,GAAG,IAAI,KAAK,IAAI,CAAA;IAC3C,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,IAAI,KAAK;QAC7B,KAAK,EAAE,OAAO,CAAA;QACd,KAAK,EAAE,IAAI,CAAA;KACZ,CAAA;IACD,eAAe,CAAC,EAAE,MAAM,CAAA;CACzB;AAED,wBAAgB,UAAU,CAAC,EACzB,EAAE,EACF,IAAI,EACJ,KAAK,EACL,QAAQ,EACR,YAAY,EACZ,IAAiB,EACjB,aAAiB,EACjB,WAAgB,EAChB,OAAO,EACP,MAAM,EACN,SAAS,EACT,cAAc,EACd,qBAAqB,EACrB,kBAAkB,EAClB,gBAAgB,EAChB,OAAkB,EAClB,YAAuB,EACvB,WAAW,EACX,QAAQ,EACR,SAAS,EACT,eAAoB,EACpB,kBAA2B,EAC3B,iBAA2B,EAC3B,GAAG,IAAI,EACR,EAAE,eAAe,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO,CA6QrC"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
@layer infonomic-base, infonomic-utilities, infonomic-theme, infonomic-components;
|
|
2
2
|
|
|
3
3
|
@layer infonomic-components {
|
|
4
|
-
|
|
5
4
|
.container,
|
|
6
5
|
:global(.infonomic-datepicker-container) {
|
|
7
6
|
position: relative;
|
|
@@ -205,4 +204,4 @@
|
|
|
205
204
|
transform: translateX(0);
|
|
206
205
|
}
|
|
207
206
|
}
|
|
208
|
-
}
|
|
207
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"drawer-container.d.ts","sourceRoot":"","sources":["../../../src/widgets/drawer/drawer-container.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAMnC,KAAK,6BAA6B,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;AACvE,MAAM,WAAW,oBAAqB,SAAQ,6BAA6B;IACzE,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,eAAe,CAAC,EAC9B,GAAG,EACH,QAAQ,EACR,SAAS,EACT,GAAG,IAAI,EACR,EAAE,oBAAoB,GAAG;IACxB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;CACtC,
|
|
1
|
+
{"version":3,"file":"drawer-container.d.ts","sourceRoot":"","sources":["../../../src/widgets/drawer/drawer-container.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAMnC,KAAK,6BAA6B,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;AACvE,MAAM,WAAW,oBAAqB,SAAQ,6BAA6B;IACzE,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,eAAe,CAAC,EAC9B,GAAG,EACH,QAAQ,EACR,SAAS,EACT,GAAG,IAAI,EACR,EAAE,oBAAoB,GAAG;IACxB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;CACtC,qBAWA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"drawer-content.d.ts","sourceRoot":"","sources":["../../../src/widgets/drawer/drawer-content.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAMnC,KAAK,2BAA2B,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;AACrE,MAAM,WAAW,kBAAmB,SAAQ,2BAA2B;IACrE,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,aAAa,CAAC,EAC5B,GAAG,EACH,QAAQ,EACR,SAAS,EACT,GAAG,IAAI,EACR,EAAE,kBAAkB,GAAG;IACtB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;CACtC,
|
|
1
|
+
{"version":3,"file":"drawer-content.d.ts","sourceRoot":"","sources":["../../../src/widgets/drawer/drawer-content.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAMnC,KAAK,2BAA2B,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;AACrE,MAAM,WAAW,kBAAmB,SAAQ,2BAA2B;IACrE,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,aAAa,CAAC,EAC5B,GAAG,EACH,QAAQ,EACR,SAAS,EACT,GAAG,IAAI,EACR,EAAE,kBAAkB,GAAG;IACtB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;CACtC,qBAUA"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
@layer infonomic-base, infonomic-utilities, infonomic-theme, infonomic-components;
|
|
2
2
|
|
|
3
3
|
@layer infonomic-components {
|
|
4
|
-
|
|
5
4
|
.drawer-wrapper,
|
|
6
5
|
:global(.infonomic-drawer-wrapper) {
|
|
7
6
|
position: fixed;
|
|
@@ -53,7 +52,6 @@
|
|
|
53
52
|
}
|
|
54
53
|
|
|
55
54
|
@media (min-width: 48rem) {
|
|
56
|
-
|
|
57
55
|
.drawer-depth-0.drawer-medium .drawer-container,
|
|
58
56
|
:global(.infonomic-drawer-depth-0.drawer-medium .drawer-container) {
|
|
59
57
|
width: 600px;
|
|
@@ -129,4 +127,4 @@
|
|
|
129
127
|
opacity: 1;
|
|
130
128
|
}
|
|
131
129
|
}
|
|
132
|
-
}
|
|
130
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modal-actions.d.ts","sourceRoot":"","sources":["../../../src/widgets/modal/modal-actions.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAMnC,KAAK,0BAA0B,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;AACpE,MAAM,WAAW,iBAAkB,SAAQ,0BAA0B;IACnE,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,YAAY,GAAyB,uCAK/C,iBAAiB,GAAG;IACrB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;CACtC,
|
|
1
|
+
{"version":3,"file":"modal-actions.d.ts","sourceRoot":"","sources":["../../../src/widgets/modal/modal-actions.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAMnC,KAAK,0BAA0B,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;AACpE,MAAM,WAAW,iBAAkB,SAAQ,0BAA0B;IACnE,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,YAAY,GAAyB,uCAK/C,iBAAiB,GAAG;IACrB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;CACtC,sBAUA,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modal-container.d.ts","sourceRoot":"","sources":["../../../src/widgets/modal/modal-container.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAMnC,KAAK,4BAA4B,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;AACtE,MAAM,WAAW,mBAAoB,SAAQ,4BAA4B;IACvE,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,cAAc,GAA2B,uCAKnD,mBAAmB,GAAG;IACvB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;CACtC,
|
|
1
|
+
{"version":3,"file":"modal-container.d.ts","sourceRoot":"","sources":["../../../src/widgets/modal/modal-container.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAMnC,KAAK,4BAA4B,GAAG,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;AACtE,MAAM,WAAW,mBAAoB,SAAQ,4BAA4B;IACvE,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,cAAc,GAA2B,uCAKnD,mBAAmB,GAAG;IACvB,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;CACtC,sBAUA,CAAA"}
|