@pismo/marola 0.0.1-alpha.12 → 0.0.1-alpha.14
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/README.md +1 -1
- package/dist/Dialog.module-B8COssqi.js +15 -0
- package/dist/assets/Button.css +1 -1
- package/dist/assets/Chip.css +1 -0
- package/dist/assets/Dialog.css +1 -1
- package/dist/assets/IconButton.css +1 -1
- package/dist/assets/Input.css +1 -1
- package/dist/assets/InputSearch.css +1 -1
- package/dist/assets/Table.css +1 -1
- package/dist/assets/Typography.css +1 -1
- package/dist/components/Advice/Advice.d.ts +12 -0
- package/dist/components/Advice/Advice.stories.d.ts +16 -0
- package/dist/components/Advice/Advice.stories.js +48 -0
- package/dist/components/Button/Button.d.ts +5 -2
- package/dist/components/Button/Button.js +87 -63
- package/dist/components/Button/Button.stories.d.ts +2 -0
- package/dist/components/Button/Button.stories.js +1 -2
- package/dist/components/Chip/Chip.d.ts +37 -0
- package/dist/components/Chip/Chip.js +143 -0
- package/dist/components/Chip/Chip.stories.d.ts +40 -0
- package/dist/components/Chip/Chip.stories.js +59 -0
- package/dist/components/Chip/chip.test.d.ts +1 -0
- package/dist/components/Chip/chip.test.js +17303 -0
- package/dist/components/Dialog/Actions.js +1 -1
- package/dist/components/Dialog/Backdrop.js +1 -1
- package/dist/components/Dialog/CloseIconButton.js +1 -1
- package/dist/components/Dialog/Dialog.js +1 -1
- package/dist/components/Dialog/Dialog.stories.d.ts +3 -3
- package/dist/components/Dialog/Dialog.stories.js +1 -2
- package/dist/components/Dialog/Title.js +1 -1
- package/dist/components/Icon/Icon.d.ts +1 -1
- package/dist/components/Icon/Icon.js +27 -20
- package/dist/components/IconButton/IconButton.d.ts +2 -2
- package/dist/components/IconButton/IconButton.js +63 -61
- package/dist/components/Input/Input.d.ts +1 -1
- package/dist/components/Input/Input.js +32 -32
- package/dist/components/InputSearch/InputSearch.d.ts +7 -9
- package/dist/components/InputSearch/InputSearch.js +31 -26
- package/dist/components/InputSearch/InputSearch.stories.d.ts +21 -4
- package/dist/components/InputSearch/InputSearch.stories.js +55 -18
- package/dist/components/LoadingSpinner/LoadingSpinner.d.ts +1 -1
- package/dist/components/LoadingSpinner/LoadingSpinner.stories.js +1 -2
- package/dist/components/Select/Select.stories.js +1 -2
- package/dist/components/Table/Table.js +64 -64
- package/dist/components/Typography/Typography.d.ts +1 -1
- package/dist/components/Typography/Typography.js +76 -74
- package/dist/components/Typography/Typography.stories.js +1 -2
- package/dist/components/Typography/typography.test.js +195 -11319
- package/dist/main.d.ts +1 -0
- package/dist/main.js +57 -57
- package/dist/react.esm-DGd9_oKA.js +11126 -0
- package/dist/utils/styleStrings.test.js +1 -1
- package/dist/{vi.Y_w82WR8-Df0JUamG.js → vi.Y_w82WR8-XVYrIxgm.js} +2 -1
- package/package.json +2 -2
- package/dist/Dialog.module-CGVM5V_D.js +0 -15
- package/dist/assets/global.css +0 -1
package/dist/main.d.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
export * from './components/Advice/Advice';
|
|
3
3
|
export * from './components/Button/Button';
|
|
4
4
|
export * from './components/Checkbox/Checkbox';
|
|
5
|
+
export * from './components/Chip/Chip';
|
|
5
6
|
export * from './components/Dialog/Dialog';
|
|
6
7
|
export * from './components/Icon/Icon';
|
|
7
8
|
export * from './components/IconButton/IconButton';
|
package/dist/main.js
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import { PageHeader as D } from "./components/PageHeader/PageHeader.js";
|
|
1
|
+
import { Chip as t } from "./components/Chip/Chip.js";
|
|
2
|
+
import { Advice as p } from "./components/Advice/Advice.js";
|
|
3
|
+
import { Button as f } from "./components/Button/Button.js";
|
|
4
|
+
import { Checkbox as n } from "./components/Checkbox/Checkbox.js";
|
|
5
|
+
import { Dialog as l } from "./components/Dialog/Dialog.js";
|
|
6
|
+
import { FamilyAndIcons as T, Icon as s } from "./components/Icon/Icon.js";
|
|
7
|
+
import { IconButton as g } from "./components/IconButton/IconButton.js";
|
|
8
|
+
import { Input as S } from "./components/Input/Input.js";
|
|
9
|
+
import { InputSearch as d } from "./components/InputSearch/InputSearch.js";
|
|
10
|
+
import { LoadingSpinner as I } from "./components/LoadingSpinner/LoadingSpinner.js";
|
|
11
|
+
import { PageHeader as C } from "./components/PageHeader/PageHeader.js";
|
|
13
12
|
import { Pagination as y, paginationDefaultTranslations as A } from "./components/Pagination/Pagination.js";
|
|
14
|
-
import { Option as
|
|
15
|
-
import { Skeleton as
|
|
16
|
-
import { Snackbar as
|
|
17
|
-
import { SortTooltip as
|
|
18
|
-
import { Stepper as
|
|
19
|
-
import { Table as
|
|
20
|
-
import { Tabs as
|
|
21
|
-
import { Toggle as
|
|
22
|
-
import { Tooltip as
|
|
23
|
-
import { Typography as
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
27
|
-
import { Tab as
|
|
28
|
-
import { TabPanel as
|
|
13
|
+
import { Option as B, Select as v } from "./components/Select/Select.js";
|
|
14
|
+
import { Skeleton as H, SkeletonCircle as L, SkeletonTable as O } from "./components/Skeleton/Skeleton.js";
|
|
15
|
+
import { Snackbar as q } from "./components/Snackbar/Snackbar.js";
|
|
16
|
+
import { SortTooltip as z, sortTooltipDefaultTranslations as E } from "./components/SortTooltip/SortTooltip.js";
|
|
17
|
+
import { Stepper as J } from "./components/Stepper/Stepper.js";
|
|
18
|
+
import { Table as M } from "./components/Table/Table.js";
|
|
19
|
+
import { Tabs as Q } from "./components/Tabs/Tabs.js";
|
|
20
|
+
import { Toggle as U } from "./components/Toggle/Toggle.js";
|
|
21
|
+
import { Tooltip as W } from "./components/Tooltip/Tooltip.js";
|
|
22
|
+
import { Typography as Y } from "./components/Typography/Typography.js";
|
|
23
|
+
import { default as _ } from "./components/Dialog/Title.js";
|
|
24
|
+
import { default as oo } from "./components/Dialog/Content.js";
|
|
25
|
+
import { default as to } from "./components/Dialog/Actions.js";
|
|
26
|
+
import { Tab as po } from "./components/Tabs/Tab.js";
|
|
27
|
+
import { TabPanel as fo } from "./components/Tabs/TabPanel.js";
|
|
29
28
|
export {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
T as
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
29
|
+
to as Actions,
|
|
30
|
+
p as Advice,
|
|
31
|
+
f as Button,
|
|
32
|
+
n as Checkbox,
|
|
33
|
+
t as Chip,
|
|
34
|
+
oo as Content,
|
|
35
|
+
l as Dialog,
|
|
36
|
+
_ as DialogTitle,
|
|
37
|
+
T as FamilyAndIcons,
|
|
38
|
+
s as Icon,
|
|
39
|
+
g as IconButton,
|
|
40
|
+
S as Input,
|
|
41
|
+
d as InputSearch,
|
|
42
|
+
I as LoadingSpinner,
|
|
43
|
+
B as Option,
|
|
44
|
+
C as PageHeader,
|
|
45
45
|
y as Pagination,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
46
|
+
v as Select,
|
|
47
|
+
H as Skeleton,
|
|
48
|
+
L as SkeletonCircle,
|
|
49
|
+
O as SkeletonTable,
|
|
50
|
+
q as Snackbar,
|
|
51
|
+
z as SortTooltip,
|
|
52
|
+
J as Stepper,
|
|
53
|
+
po as Tab,
|
|
54
|
+
fo as TabPanel,
|
|
55
|
+
M as Table,
|
|
56
|
+
Q as Tabs,
|
|
57
|
+
U as Toggle,
|
|
58
|
+
W as Tooltip,
|
|
59
|
+
Y as Typography,
|
|
60
60
|
A as paginationDefaultTranslations,
|
|
61
|
-
|
|
61
|
+
E as sortTooltipDefaultTranslations
|
|
62
62
|
};
|