@proprioo/salatim 28.3.1 → 28.4.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/CHANGELOG.md +8 -0
- package/lib/date/src/typings.d.ts +2 -2
- package/lib/index.js +991 -987
- package/lib/index.js.map +1 -1
- package/lib/ui/src/accordion/Accordion.d.ts +1 -1
- package/lib/ui/src/accordion/AccordionContextProvider.d.ts +1 -1
- package/lib/ui/src/accordion/ItemContextProvider.d.ts +1 -1
- package/lib/ui/src/agentBanner/AgentBanner.styles.d.ts +1 -1
- package/lib/ui/src/button/Button.styles.d.ts +1 -1
- package/lib/ui/src/card/Card.d.ts +1 -1
- package/lib/ui/src/dateInput/DateInput.d.ts +1 -1
- package/lib/ui/src/modal/Modal.styles.d.ts +1 -1
- package/lib/ui/src/numberInput/NumberInput.d.ts +1 -1
- package/lib/ui/src/tag/Tag.styles.js +6 -2
- package/lib/ui/src/tag/Tag.styles.js.map +1 -1
- package/lib/ui/src/textarea/Textarea.styles.d.ts +1 -1
- package/lib/ui/src/title/Title.d.ts +1 -1
- package/lib/utils/src/actions.d.ts +1 -1
- package/lib/utils/src/test-utils.d.ts +3 -3
- package/package.json +29 -30
|
@@ -6,7 +6,7 @@ export interface ProviderProps {
|
|
|
6
6
|
allowMultipleExpanded?: boolean;
|
|
7
7
|
children?: ReactNode;
|
|
8
8
|
}
|
|
9
|
-
|
|
9
|
+
type ProviderState = AccordionStore;
|
|
10
10
|
export interface AccordionContext {
|
|
11
11
|
allowMultipleExpanded: boolean;
|
|
12
12
|
isItemExpanded(uuid: UUID): boolean;
|
|
@@ -6,7 +6,7 @@ interface ProviderProps {
|
|
|
6
6
|
uuid: UUID;
|
|
7
7
|
accordionContext: AccordionContext;
|
|
8
8
|
}
|
|
9
|
-
export
|
|
9
|
+
export type ProviderWrapperProps = Pick<ProviderProps, Exclude<keyof ProviderProps, 'accordionContext'>>;
|
|
10
10
|
export interface ItemContext {
|
|
11
11
|
uuid: UUID;
|
|
12
12
|
expanded: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ButtonProps } from './Button';
|
|
2
|
-
|
|
2
|
+
type LayoutProps = Pick<ButtonProps, 'appearance' | 'iconPosition' | 'rounded' | 'size' | 'theme' | 'icon'>;
|
|
3
3
|
export declare const minusPadding: (padding: string) => string;
|
|
4
4
|
export declare const LabelLayout: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
5
5
|
export declare const IconWrapper: import("styled-components").StyledComponent<"div", any, LayoutProps, never>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import { nullOrString } from '@proprioo/hokkaido';
|
|
3
3
|
import { InputProps } from '../..';
|
|
4
|
-
|
|
4
|
+
type BaseInputProps = Omit<InputProps, 'gmap' | 'onChange' | 'type' | 'value'>;
|
|
5
5
|
export declare const formatDate: (date: Date) => string;
|
|
6
6
|
export declare const formatISODate: (date: Date) => string;
|
|
7
7
|
export declare const formatValue: (value: string) => string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ModalProps } from './Modal';
|
|
2
2
|
import { FadeEnum } from './Modal.reducer';
|
|
3
|
-
|
|
3
|
+
type LayoutProps = Pick<ModalProps, 'isFullScreen' | 'noPadding'>;
|
|
4
4
|
export declare const CloseLayout: import("styled-components").StyledComponent<"button", any, {
|
|
5
5
|
hasTitle: boolean;
|
|
6
6
|
}, never>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import { nullOrNumber } from '@proprioo/hokkaido';
|
|
3
3
|
import { InputProps } from '../..';
|
|
4
|
-
|
|
4
|
+
type BaseInputProps = Omit<InputProps, 'gmap' | 'onChange' | 'type' | 'value'>;
|
|
5
5
|
export interface NumberInputProps extends BaseInputProps {
|
|
6
6
|
onChange(value: nullOrNumber): void;
|
|
7
7
|
value?: nullOrNumber;
|
|
@@ -95,17 +95,21 @@ exports.TagCloser = styled_components_1.default.button `
|
|
|
95
95
|
width: ${(0, utils_1.convertPxToRem)(12)};
|
|
96
96
|
height: ${(0, utils_1.convertPxToRem)(12)};
|
|
97
97
|
margin-left: ${(0, utils_1.convertPxToRem)(8)};
|
|
98
|
+
cursor: pointer;
|
|
98
99
|
|
|
99
100
|
${({ appearance }) => appearance === interfaces_1.TagAppearance.CUSTOMER &&
|
|
100
101
|
(0, styled_components_1.css) `
|
|
101
102
|
margin-right: ${(0, utils_1.convertPxToRem)(8)};
|
|
102
103
|
`}
|
|
103
104
|
|
|
104
|
-
cursor: pointer;
|
|
105
|
-
|
|
106
105
|
> svg {
|
|
107
106
|
width: 100%;
|
|
108
107
|
height: 100%;
|
|
108
|
+
transition: opacity 0.2s ease;
|
|
109
|
+
|
|
110
|
+
:hover {
|
|
111
|
+
opacity: 0.7;
|
|
112
|
+
}
|
|
109
113
|
}
|
|
110
114
|
`;
|
|
111
115
|
exports.TagElement = styled_components_1.default.li `
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tag.styles.js","sourceRoot":"","sources":["../../../../packages/ui/src/tag/Tag.styles.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uEAAgD;AAEhD,0CAOwB;AACxB,6CAAuE;AACvE,2CAAwC;AAO3B,QAAA,OAAO,GAAG,IAAA,uBAAG,EAAA;IACtB,mBAAW;;;;mBAII,cAAM,CAAC,OAAO;eAClB,aAAK,CAAC,KAAK;iBACT,IAAA,sBAAc,EAAC,EAAE,CAAC;eACpB,IAAA,sBAAc,EAAC,EAAE,CAAC;aACpB,IAAA,sBAAc,EAAC,CAAC,CAAC,IAAI,IAAA,sBAAc,EAAC,EAAE,CAAC;;;cAGtC,IAAA,sBAAc,EAAC,CAAC,CAAC,IAAI,IAAA,sBAAc,EAAC,CAAC,CAAC,IAAI,IAAA,sBAAc,EAAC,CAAC,CAAC;;CAExE,CAAC;AAEW,QAAA,iBAAiB,GAAG,IAAA,uBAAG,EAAA;eACrB,aAAK,CAAC,QAAQ;mBACV,IAAA,sBAAc,EAAC,CAAC,CAAC;aACvB,IAAA,sBAAc,EAAC,CAAC,CAAC,IAAI,IAAA,sBAAc,EAAC,CAAC,CAAC;;CAElD,CAAC;AAEF,MAAM,eAAe,GAAG,CACtB,KAAqB,EACrB,UAA0B,EAC1B,UAAoB,EACpB,EAAE;IACF,MAAM,UAAU,GAAG,UAAU,KAAK,0BAAa,CAAC,QAAQ,CAAC;IAEzD,IAAI,UAAU,EAAE;QACd,OAAO,IAAA,uBAAG,EAAA;eACC,qBAAS,CAAC,KAAK,CAAC,CAAC,aAAa;;QAErC,UAAU;YACV,CAAC,CAAC,IAAA,uBAAG,EAAA;sBACS,IAAA,sBAAc,EAAC,CAAC,CAAC;gBACvB,qBAAS,CAAC,KAAK,CAAC,CAAC,kBAAkB;;WAExC;YACH,CAAC,CAAC,IAAA,uBAAG,EAAA;0BACa,qBAAS,CAAC,KAAK,CAAC,CAAC,kBAAkB;WAClD;KACN,CAAC;KACH;SAAM;QACL,OAAO,IAAA,uBAAG,EAAA;eACC,qBAAS,CAAC,KAAK,CAAC,CAAC,KAAK;oBACjB,qBAAS,CAAC,KAAK,CAAC,CAAC,UAAU;KAC1C,CAAC;KACH;AACH,CAAC,CAAC;AAEW,QAAA,QAAQ,GAAG,2BAAM,CAAC,IAAI,CAElC;IACG,eAAO;;IAEP,CAAC,EAAE,UAAU,EAAE,EAAE,EAAE,CACnB,UAAU,KAAK,0BAAa,CAAC,QAAQ,IAAI,yBAAiB;;IAE1D,CAAC,EAAE,UAAU,EAAE,KAAK,EAAE,UAAU,EAAE,EAAE,EAAE,CACtC,KAAK,IAAI,eAAe,CAAC,KAAK,EAAE,UAAU,EAAE,UAAU,CAAC;;IAEvD,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE,CACb,IAAI;IACJ,IAAA,uBAAG,EAAA;sBACe,IAAA,sBAAc,EAAC,CAAC,CAAC;KAClC;;IAED,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CACd,KAAK;IACL,IAAA,uBAAG,EAAA;uBACgB,IAAA,sBAAc,EAAC,CAAC,CAAC;KACnC;CACJ,CAAC;AAEW,QAAA,SAAS,GAAG,2BAAM,CAAC,MAAM,CAA8B;IAChE,sBAAc;WACP,IAAA,sBAAc,EAAC,EAAE,CAAC;YACjB,IAAA,sBAAc,EAAC,EAAE,CAAC;iBACb,IAAA,sBAAc,EAAC,CAAC,CAAC
|
|
1
|
+
{"version":3,"file":"Tag.styles.js","sourceRoot":"","sources":["../../../../packages/ui/src/tag/Tag.styles.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { TextareaProps } from './Textarea';
|
|
2
|
-
export
|
|
2
|
+
export type TextareaLayoutProps = Pick<TextareaProps, 'error' | 'focused' | 'autoResize' | 'disabled' | 'borderRadius'>;
|
|
3
3
|
export declare const TextareaLayout: import("styled-components").StyledComponent<"textarea", any, TextareaLayoutProps, never>;
|
|
4
4
|
export declare const Counter: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -3,7 +3,7 @@ export interface TitleProps {
|
|
|
3
3
|
color?: string;
|
|
4
4
|
isAlternative?: boolean;
|
|
5
5
|
}
|
|
6
|
-
export
|
|
6
|
+
export type TitleCSSProps = Pick<TitleProps, 'color' | 'isAlternative'>;
|
|
7
7
|
export declare const TitleDefaultProps: {
|
|
8
8
|
color: string;
|
|
9
9
|
isAlternative: boolean;
|
|
@@ -26,5 +26,5 @@ interface ActionCreatorsMapObject {
|
|
|
26
26
|
* Use this Type to merge several action object that has field created with createActionPayload or createAction
|
|
27
27
|
* E.g. type ReducerWithActionFromTwoObjects = ActionsUnion<typeof ActionsObject1 & typeof ActionsObject2>;
|
|
28
28
|
*/
|
|
29
|
-
export
|
|
29
|
+
export type ActionsUnion<A extends ActionCreatorsMapObject> = ReturnType<A[keyof A]>;
|
|
30
30
|
export {};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { RunOptions } from 'jest-axe/node_modules/axe-core';
|
|
2
2
|
import React, { ReactElement } from 'react';
|
|
3
3
|
import { render as rtlRender, RenderOptions, RenderResult } from '@testing-library/react';
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
type UIComponent = Parameters<typeof rtlRender>[0];
|
|
5
|
+
type TestA11YOptions = TestOptions & {
|
|
6
6
|
axeOptions?: RunOptions;
|
|
7
7
|
};
|
|
8
8
|
declare const ChildrenPassthrough: ({ children }: {
|
|
@@ -18,7 +18,7 @@ interface TestOptions extends Omit<RenderOptions, 'wrapper'> {
|
|
|
18
18
|
* @param component the component under test
|
|
19
19
|
* @param options customized test options
|
|
20
20
|
*/
|
|
21
|
-
export declare const render: (component: Parameters<typeof rtlRender>[0], { wrapper, ...options }?: TestOptions) => RenderResult;
|
|
21
|
+
export declare const render: (component: Parameters<typeof rtlRender>[0], { wrapper: Wrapper, ...options }?: TestOptions) => RenderResult;
|
|
22
22
|
export declare const testA11y: (ui: UIComponent | Element, { axeOptions, ...options }?: TestA11YOptions) => Promise<undefined>;
|
|
23
23
|
export declare const triggerCloseModal: (userEvent: Promise<any>) => Promise<void>;
|
|
24
24
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proprioo/salatim",
|
|
3
|
-
"version": "28.
|
|
3
|
+
"version": "28.4.0",
|
|
4
4
|
"description": "Proprioo component library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"components",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"scripts": {
|
|
22
22
|
"analyze": "yarn build && mkdir -p explorer && source-map-explorer \"lib/*.js\" --html explorer/index.html",
|
|
23
|
-
"build": "rm -rf lib && tsc --module commonjs && rollup -c rollup.config.ts",
|
|
23
|
+
"build": "rm -rf lib && tsc --module commonjs && rollup -c rollup.config.ts --bundleConfigAsCjs",
|
|
24
24
|
"clean": "rm -rf ./node_modules && yarn install",
|
|
25
25
|
"coverage": "yarn test --coverage --logHeapUsage --maxWorkers=2 --verbose && jest-coverage-badges",
|
|
26
26
|
"deploy": "yarn build && yarn publish --access=public --non-interactive",
|
|
@@ -39,31 +39,30 @@
|
|
|
39
39
|
"@types/react": "^18"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@commitlint/cli": "^17.
|
|
43
|
-
"@commitlint/config-conventional": "^17.
|
|
42
|
+
"@commitlint/cli": "^17.2.0",
|
|
43
|
+
"@commitlint/config-conventional": "^17.2.0",
|
|
44
44
|
"@popperjs/core": "^2.11.6",
|
|
45
|
-
"@proprioo/hokkaido": "^
|
|
46
|
-
"@rollup/plugin-commonjs": "
|
|
47
|
-
"@rollup/plugin-json": "^
|
|
48
|
-
"@rollup/plugin-node-resolve": "^
|
|
49
|
-
"@rollup/plugin-url": "^
|
|
45
|
+
"@proprioo/hokkaido": "^5.1.0",
|
|
46
|
+
"@rollup/plugin-commonjs": "23.0.2",
|
|
47
|
+
"@rollup/plugin-json": "^5.0.1",
|
|
48
|
+
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
49
|
+
"@rollup/plugin-url": "^8.0.1",
|
|
50
50
|
"@sambego/storybook-state": "^2.0.1",
|
|
51
|
-
"@
|
|
52
|
-
"@storybook/addon-actions": "^6.5.12",
|
|
51
|
+
"@storybook/addon-actions": "^6.5.13",
|
|
53
52
|
"@storybook/addon-knobs": "^6.4.0",
|
|
54
|
-
"@storybook/addon-links": "^6.5.
|
|
55
|
-
"@storybook/react": "^6.5.
|
|
53
|
+
"@storybook/addon-links": "^6.5.13",
|
|
54
|
+
"@storybook/react": "^6.5.13",
|
|
56
55
|
"@testing-library/jest-dom": "^5.16.5",
|
|
57
56
|
"@testing-library/react": "^13.4.0",
|
|
58
57
|
"@testing-library/user-event": "^14.4.3",
|
|
59
58
|
"@types/googlemaps": "^3.43.3",
|
|
60
|
-
"@types/jest": "^29.
|
|
61
|
-
"@types/jest-axe": "^3.5.
|
|
59
|
+
"@types/jest": "^29.2.3",
|
|
60
|
+
"@types/jest-axe": "^3.5.5",
|
|
62
61
|
"@types/mailcheck": "^1.1.33",
|
|
63
|
-
"@types/react": "^18.0.
|
|
62
|
+
"@types/react": "^18.0.25",
|
|
64
63
|
"@types/react-color": "^3.0.6",
|
|
65
64
|
"@types/react-dates": "^21.8.3",
|
|
66
|
-
"@types/react-dom": "^18.0.
|
|
65
|
+
"@types/react-dom": "^18.0.9",
|
|
67
66
|
"@types/react-phone-number-input": "^3.0.14",
|
|
68
67
|
"@types/react-places-autocomplete": "^7.2.9",
|
|
69
68
|
"@types/react-test-renderer": "^18.0.0",
|
|
@@ -71,46 +70,46 @@
|
|
|
71
70
|
"@types/storybook__addon-actions": "^5.2.1",
|
|
72
71
|
"@types/storybook__react": "^5.2.1",
|
|
73
72
|
"@types/styled-components": "^5.1.26",
|
|
74
|
-
"babel-loader": "^
|
|
73
|
+
"babel-loader": "^9.1.0",
|
|
75
74
|
"babel-preset-react-app": "^10.0.1",
|
|
76
75
|
"date-fns": "^2.29.3",
|
|
77
76
|
"email-validator": "^2.0.4",
|
|
78
77
|
"full-icu": "^1.5.0",
|
|
79
|
-
"husky": "^8.0.
|
|
80
|
-
"jest": "^29.
|
|
81
|
-
"jest-axe": "^
|
|
78
|
+
"husky": "^8.0.2",
|
|
79
|
+
"jest": "^29.3.1",
|
|
80
|
+
"jest-axe": "^7.0.0",
|
|
82
81
|
"jest-coverage-badges": "^1.1.2",
|
|
83
|
-
"jest-environment-jsdom": "^29.
|
|
82
|
+
"jest-environment-jsdom": "^29.3.1",
|
|
84
83
|
"libphonenumber-metadata-generator": "^1.0.1",
|
|
85
84
|
"mockdate": "^3.0.5",
|
|
86
85
|
"polished": "^4.2.2",
|
|
87
|
-
"postcss": "^8.4.
|
|
86
|
+
"postcss": "^8.4.19",
|
|
88
87
|
"prettier": "^2.7.1",
|
|
89
88
|
"pretty-quick": "^3.1.3",
|
|
90
89
|
"react": "^18.2.0",
|
|
91
90
|
"react-dates": "^21.8.0",
|
|
92
91
|
"react-dom": "^18.2.0",
|
|
93
|
-
"react-phone-number-input": "^3.2.
|
|
92
|
+
"react-phone-number-input": "^3.2.12",
|
|
94
93
|
"react-places-autocomplete": "^7.3.0",
|
|
95
94
|
"react-popper-tooltip": "^4.4.2",
|
|
96
95
|
"react-test-renderer": "^18.2.0",
|
|
97
96
|
"react-toggle": "^4.1.3",
|
|
98
|
-
"rollup": "^
|
|
97
|
+
"rollup": "^3.3.0",
|
|
99
98
|
"rollup-plugin-bundle-size": "^1.0.3",
|
|
100
99
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
101
100
|
"rollup-plugin-postcss": "^4.0.2",
|
|
102
101
|
"rollup-plugin-svgo": "^2.0.0",
|
|
103
102
|
"rollup-plugin-terser": "^7.0.2",
|
|
104
|
-
"rollup-plugin-typescript2": "^0.34.
|
|
103
|
+
"rollup-plugin-typescript2": "^0.34.1",
|
|
105
104
|
"source-map-explorer": "^2.5.3",
|
|
106
|
-
"styled-components": "^5.3.
|
|
107
|
-
"ts-jest": "^29.0.
|
|
105
|
+
"styled-components": "^5.3.6",
|
|
106
|
+
"ts-jest": "^29.0.3",
|
|
108
107
|
"ts-node": "^10.9.1",
|
|
109
108
|
"tslint": "^6.1.3",
|
|
110
109
|
"tslint-config-prettier": "^1.18.0",
|
|
111
110
|
"tslint-react": "^5.0.0",
|
|
112
111
|
"tslint-react-hooks": "^2.2.2",
|
|
113
|
-
"typescript": "^4.
|
|
112
|
+
"typescript": "^4.9.3"
|
|
114
113
|
},
|
|
115
114
|
"peerDependencies": {
|
|
116
115
|
"@proprioo/hokkaido": "^2.12.1",
|
|
@@ -119,7 +118,7 @@
|
|
|
119
118
|
"polished": "^4.2.2",
|
|
120
119
|
"react": "^18.2.0",
|
|
121
120
|
"react-dom": "^18.2.0",
|
|
122
|
-
"styled-components": "^5.3.
|
|
121
|
+
"styled-components": "^5.3.6"
|
|
123
122
|
},
|
|
124
123
|
"dependencies": {
|
|
125
124
|
"mailcheck": "^1.1.1",
|