@pismo/marola 2.1.19 → 2.1.20
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/{Button-Bh6rpTyY.js → Button-BrEDdtHO.js} +2 -2
- package/dist/{ClickAwayListener-BjqhGzJh.js → ClickAwayListener-Z08peX_P.js} +3 -3
- package/dist/{Popup-aWlctE1C.js → Popup-Dffqo7wT.js} +3 -3
- package/dist/{Portal-Dc9ej3DW.js → Portal-DJapUCn6.js} +14 -13
- package/dist/{RadioButton.module-VF7v9SuY.js → RadioButton.module-RTKWJmma.js} +1 -1
- package/dist/{Toggle-DPXiwAx3.js → Toggle-SlvGYQKW.js} +48 -46
- package/dist/assets/Draggable.css +1 -0
- package/dist/{combineHooksSlotProps-CNWfgylM.js → combineHooksSlotProps-BhQ14uyD.js} +5 -5
- package/dist/components/Autocomplete/Autocomplete.js +38 -38
- package/dist/components/Button/Button.js +1 -1
- package/dist/components/Chip/Chip.js +6 -3
- package/dist/components/DatePicker/DatePicker.js +4 -4
- package/dist/components/Dialog/CloseIconButton.js +1 -1
- package/dist/components/Dialog/Dialog.js +4 -4
- package/dist/components/Draggable/Draggable.d.ts +47 -0
- package/dist/components/Draggable/Draggable.js +151 -0
- package/dist/components/Draggable/Draggable.spec.d.ts +1 -0
- package/dist/components/Draggable/Draggable.stories.d.ts +44 -0
- package/dist/components/Draggable/useDraggable.d.ts +20 -0
- package/dist/components/Draggable/useDraggable.js +11 -0
- package/dist/components/IconButton/IconButton.js +1 -1
- package/dist/components/Input/Input.js +1 -1
- package/dist/components/Popover/Popover.js +2 -2
- package/dist/components/RadioButton/RadioButton.js +17 -15
- package/dist/components/RadioButton/RadioOption.js +13 -12
- package/dist/components/ResultWithChips/ResultWithChips.js +1 -1
- package/dist/components/RowItem/RowItem.js +5 -3
- package/dist/components/Select/Select.js +5 -5
- package/dist/components/Snackbar/Snackbar.js +3 -3
- package/dist/components/Tabs/Tab.js +3 -3
- package/dist/components/Tabs/TabPanel.js +1 -1
- package/dist/components/Tabs/Tabs.js +3 -3
- package/dist/components/Toggle/Toggle.js +1 -1
- package/dist/components/ToggleGroup/Toggle.js +4 -2
- package/dist/components/ToggleGroup/ToggleGroup.js +1 -1
- package/dist/components/Tooltip/Tooltip.js +3 -3
- package/dist/contexts/DraggableProvider/DraggableProvider.d.ts +3 -0
- package/dist/contexts/DraggableProvider/DraggableProvider.js +6 -0
- package/dist/contexts/SnackbarProvider/SnackbarProvider.js +1 -1
- package/dist/exactProp-SYjL19cU.js +13 -0
- package/dist/{index-Bppuplgd.js → index-1UpBa69h.js} +1361 -1372
- package/dist/main.d.ts +6 -0
- package/dist/main.js +123 -102
- package/dist/{ownerDocument-CXvpb_nj.js → ownerDocument-By592Iy6.js} +1 -1
- package/dist/react-BvI-Sw9b.js +509 -0
- package/dist/{useButton-B8Y1xR88.js → useButton-CezPDte8.js} +6 -6
- package/dist/{useList-9gbS2r78.js → useList-nqLfZem8.js} +2 -2
- package/dist/{useSlotProps-C7dqSmdM.js → useSlotProps-CYHDC4TN.js} +2 -2
- package/dist/utils/draggable.d.ts +8 -0
- package/dist/utils/draggable.js +30 -0
- package/dist/utils/draggable.test.d.ts +1 -0
- package/package.json +3 -2
package/dist/main.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export * from './components/ConfirmationDialog/ConfirmationDialog';
|
|
|
17
17
|
export * from './components/DatePicker/DatePicker';
|
|
18
18
|
export * from './components/Description/Description';
|
|
19
19
|
export * from './components/Dialog/Dialog';
|
|
20
|
+
export * from './components/Draggable/Draggable';
|
|
20
21
|
export * from './components/EllipsisTooltip/EllipsisTooltip';
|
|
21
22
|
export * from './components/Fieldset/Fieldset';
|
|
22
23
|
export * from './components/Icon/Icon';
|
|
@@ -46,4 +47,9 @@ export * from './components/ToggleGroup/ToggleGroup';
|
|
|
46
47
|
export * from './components/Tooltip/Tooltip';
|
|
47
48
|
export * from './components/TransactionRow/TransactionRow';
|
|
48
49
|
export * from './components/Typography/Typography';
|
|
50
|
+
export * from './contexts/DraggableProvider/DraggableProvider';
|
|
49
51
|
export * from './contexts/SnackbarProvider/SnackbarProvider';
|
|
52
|
+
export * from './utils/draggable';
|
|
53
|
+
export * from './utils/iconsList';
|
|
54
|
+
export * from './utils/inputNumberAsText';
|
|
55
|
+
export * from './utils/styleStrings';
|
package/dist/main.js
CHANGED
|
@@ -1,116 +1,137 @@
|
|
|
1
1
|
import { Adornment as t } from "./components/Adornment/Adornment.js";
|
|
2
2
|
import { Advice as a } from "./components/Advice/Advice.js";
|
|
3
|
-
import { Alert as
|
|
4
|
-
import { Autocomplete as
|
|
3
|
+
import { Alert as f } from "./components/Alert/Alert.js";
|
|
4
|
+
import { Autocomplete as l } from "./components/Autocomplete/Autocomplete.js";
|
|
5
5
|
import { Avatar as i } from "./components/Avatar/Avatar.js";
|
|
6
|
-
import { Badge as
|
|
7
|
-
import { BankCard as
|
|
6
|
+
import { Badge as T } from "./components/Badge/Badge.js";
|
|
7
|
+
import { BankCard as c } from "./components/BankCard/BankCard.js";
|
|
8
8
|
import { Button as u } from "./components/Button/Button.js";
|
|
9
|
-
import { Calendar as
|
|
10
|
-
import { Checkbox as
|
|
11
|
-
import { C
|
|
9
|
+
import { Calendar as b } from "./components/Calendar/Calendar.js";
|
|
10
|
+
import { Checkbox as B } from "./components/Checkbox/Checkbox.js";
|
|
11
|
+
import { C, R as k, T as D } from "./Toggle-SlvGYQKW.js";
|
|
12
12
|
import { ConfirmationDialog as v } from "./components/ConfirmationDialog/ConfirmationDialog.js";
|
|
13
13
|
import "./components/DatePicker/DatePicker.js";
|
|
14
|
-
import { Description as
|
|
15
|
-
import { Dialog as
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
14
|
+
import { Description as P } from "./components/Description/Description.js";
|
|
15
|
+
import { Dialog as R } from "./components/Dialog/Dialog.js";
|
|
16
|
+
import { Draggable as E } from "./components/Draggable/Draggable.js";
|
|
17
|
+
import { EllipsisTooltip as M } from "./components/EllipsisTooltip/EllipsisTooltip.js";
|
|
18
|
+
import { Fieldset as H } from "./components/Fieldset/Fieldset.js";
|
|
19
|
+
import { Icon as L } from "./components/Icon/Icon.js";
|
|
20
|
+
import { IconButton as V } from "./components/IconButton/IconButton.js";
|
|
21
|
+
import { Input as j } from "./components/Input/Input.js";
|
|
22
|
+
import { InputSearch as z } from "./components/InputSearch/InputSearch.js";
|
|
23
|
+
import { LoadingSpinner as Q } from "./components/LoadingSpinner/LoadingSpinner.js";
|
|
24
|
+
import { PageHeader as X } from "./components/PageHeader/PageHeader.js";
|
|
25
|
+
import { Pagination as Z, paginationDefaultTranslations as _ } from "./components/Pagination/Pagination.js";
|
|
26
|
+
import { Popover as oo } from "./components/Popover/Popover.js";
|
|
27
|
+
import { RadioButton as eo } from "./components/RadioButton/RadioButton.js";
|
|
28
|
+
import { ResultWithChips as po } from "./components/ResultWithChips/ResultWithChips.js";
|
|
29
|
+
import { Select as mo, SelectContext as fo, SelectOption as xo, useSelectContext as lo } from "./components/Select/Select.js";
|
|
30
|
+
import { Skeleton as io, SkeletonCircle as so, SkeletonTable as To } from "./components/Skeleton/Skeleton.js";
|
|
31
|
+
import { Snackbar as co } from "./components/Snackbar/Snackbar.js";
|
|
32
|
+
import { SortTooltip as So, sortTooltipDefaultTranslations as bo } from "./components/SortTooltip/SortTooltip.js";
|
|
33
|
+
import { Stepper as Bo } from "./components/Stepper/Stepper.js";
|
|
34
|
+
import { StepperNavigator as Co } from "./components/StepperNavigator/StepperNavigator.js";
|
|
35
|
+
import { TBody as Do, THead as ho, Table as vo, Td as Ao, Th as Po, Tr as wo } from "./components/Table/Table.js";
|
|
36
|
+
import { Tabs as Oo } from "./components/Tabs/Tabs.js";
|
|
37
|
+
import { Tag as Go } from "./components/Tag/Tag.js";
|
|
38
|
+
import { TextDisplay as No } from "./components/TextDisplay/TextDisplay.js";
|
|
39
|
+
import { ToastCard as Ko } from "./components/ToastCard/ToastCard.js";
|
|
40
|
+
import { Toggle as Fo } from "./components/Toggle/Toggle.js";
|
|
41
|
+
import { G as Wo } from "./Group-DJz1rK2n.js";
|
|
42
|
+
import { Tooltip as qo } from "./components/Tooltip/Tooltip.js";
|
|
43
|
+
import { TransactionRow as Jo } from "./components/TransactionRow/TransactionRow.js";
|
|
44
|
+
import { Text as Uo, Typography as Xo } from "./components/Typography/Typography.js";
|
|
45
|
+
import { DraggableProvider as Zo } from "./contexts/DraggableProvider/DraggableProvider.js";
|
|
46
|
+
import { SnackbarContext as $o, SnackbarProvider as or, useSnackbar as rr } from "./contexts/SnackbarProvider/SnackbarProvider.js";
|
|
47
|
+
import { replaceItemsByIndex as tr, replaceItemsByKey as pr, sortItemsByIndex as ar, sortItemsByKey as mr } from "./utils/draggable.js";
|
|
48
|
+
import { iconsList as xr } from "./utils/iconsList.js";
|
|
49
|
+
import { allowOnlyIntegerNumbers as nr, allowOnlyMathSignals as ir, allowOnlyNumbers as sr, formatDecimalValue as Tr, parseToInteger as gr } from "./utils/inputNumberAsText.js";
|
|
50
|
+
import { bemify as dr, getBEMBase as ur, getBEMBlock as Sr } from "./utils/styleStrings.js";
|
|
51
|
+
import { default as yr } from "./components/Dialog/DialogTitle.js";
|
|
52
|
+
import { default as Ir } from "./components/Dialog/Content.js";
|
|
53
|
+
import { default as kr } from "./components/Dialog/Actions.js";
|
|
54
|
+
import { Tab as hr } from "./components/Tabs/Tab.js";
|
|
55
|
+
import { TabPanel as Ar } from "./components/Tabs/TabPanel.js";
|
|
50
56
|
export {
|
|
51
|
-
|
|
57
|
+
kr as Actions,
|
|
52
58
|
t as Adornment,
|
|
53
59
|
a as Advice,
|
|
54
|
-
|
|
55
|
-
|
|
60
|
+
f as Alert,
|
|
61
|
+
l as Autocomplete,
|
|
56
62
|
i as Avatar,
|
|
57
|
-
|
|
58
|
-
|
|
63
|
+
T as Badge,
|
|
64
|
+
c as BankCard,
|
|
59
65
|
u as Button,
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
66
|
+
b as Calendar,
|
|
67
|
+
B as Checkbox,
|
|
68
|
+
C as Chip,
|
|
63
69
|
v as ConfirmationDialog,
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
po as
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
io as
|
|
87
|
-
so as
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
70
|
+
Ir as Content,
|
|
71
|
+
P as Description,
|
|
72
|
+
R as Dialog,
|
|
73
|
+
yr as DialogTitle,
|
|
74
|
+
E as Draggable,
|
|
75
|
+
Zo as DraggableProvider,
|
|
76
|
+
M as EllipsisTooltip,
|
|
77
|
+
H as Fieldset,
|
|
78
|
+
L as Icon,
|
|
79
|
+
V as IconButton,
|
|
80
|
+
j as Input,
|
|
81
|
+
z as InputSearch,
|
|
82
|
+
Q as LoadingSpinner,
|
|
83
|
+
X as PageHeader,
|
|
84
|
+
Z as Pagination,
|
|
85
|
+
oo as Popover,
|
|
86
|
+
eo as RadioButton,
|
|
87
|
+
po as ResultWithChips,
|
|
88
|
+
k as RowItem,
|
|
89
|
+
mo as Select,
|
|
90
|
+
fo as SelectContext,
|
|
91
|
+
xo as SelectOption,
|
|
92
|
+
io as Skeleton,
|
|
93
|
+
so as SkeletonCircle,
|
|
94
|
+
To as SkeletonTable,
|
|
95
|
+
co as Snackbar,
|
|
96
|
+
$o as SnackbarContext,
|
|
97
|
+
or as SnackbarProvider,
|
|
98
|
+
So as SortTooltip,
|
|
99
|
+
Bo as Stepper,
|
|
100
|
+
Co as StepperNavigator,
|
|
93
101
|
Do as TBody,
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
102
|
+
ho as THead,
|
|
103
|
+
hr as Tab,
|
|
104
|
+
Ar as TabPanel,
|
|
105
|
+
vo as Table,
|
|
106
|
+
Oo as Tabs,
|
|
107
|
+
Go as Tag,
|
|
108
|
+
Ao as Td,
|
|
109
|
+
Uo as Text,
|
|
110
|
+
No as TextDisplay,
|
|
111
|
+
Po as Th,
|
|
112
|
+
Ko as ToastCard,
|
|
113
|
+
Fo as Toggle,
|
|
114
|
+
Wo as ToggleGroup,
|
|
115
|
+
D as ToggleGroupItem,
|
|
116
|
+
qo as Tooltip,
|
|
117
|
+
wo as Tr,
|
|
118
|
+
Jo as TransactionRow,
|
|
119
|
+
Xo as Typography,
|
|
120
|
+
nr as allowOnlyIntegerNumbers,
|
|
121
|
+
ir as allowOnlyMathSignals,
|
|
122
|
+
sr as allowOnlyNumbers,
|
|
123
|
+
dr as bemify,
|
|
124
|
+
Tr as formatDecimalValue,
|
|
125
|
+
ur as getBEMBase,
|
|
126
|
+
Sr as getBEMBlock,
|
|
127
|
+
xr as iconsList,
|
|
128
|
+
_ as paginationDefaultTranslations,
|
|
129
|
+
gr as parseToInteger,
|
|
130
|
+
tr as replaceItemsByIndex,
|
|
131
|
+
pr as replaceItemsByKey,
|
|
132
|
+
ar as sortItemsByIndex,
|
|
133
|
+
mr as sortItemsByKey,
|
|
134
|
+
bo as sortTooltipDefaultTranslations,
|
|
135
|
+
lo as useSelectContext,
|
|
136
|
+
rr as useSnackbar
|
|
116
137
|
};
|