@proprioo/salatim 35.0.0 → 35.1.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 +4 -0
- package/README.md +26 -41
- package/lib/ui/src/tag/Tag.styles.d.ts +2 -2
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Please have a look on its storybook for each components.
|
|
|
6
6
|
|
|
7
7
|
## Before
|
|
8
8
|
|
|
9
|
-
Don't forget to add an empty
|
|
9
|
+
Don't forget to add an empty NPM_TOKEN in your bash_profile, zsh, etc.. and reload it.
|
|
10
10
|
|
|
11
11
|
```
|
|
12
12
|
export NPM_TOKEN=''
|
|
@@ -30,52 +30,37 @@ export NPM_TOKEN=''
|
|
|
30
30
|
|
|
31
31
|
Use `yarn dev`
|
|
32
32
|
|
|
33
|
-
##
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
- ui
|
|
37
|
-
- InputBase
|
|
38
|
-
- InputType
|
|
39
|
-
- phone
|
|
40
|
-
- isValidPhoneNumber
|
|
41
|
-
- Phone
|
|
42
|
-
- utils
|
|
43
|
-
- colors
|
|
44
|
-
- fonts
|
|
45
|
-
- Line
|
|
46
|
-
- Row
|
|
47
|
-
- phone
|
|
48
|
-
- ui
|
|
49
|
-
- InputBase
|
|
50
|
-
- InputBaseProps
|
|
51
|
-
- InputType
|
|
52
|
-
- InputProps
|
|
53
|
-
- MockForm
|
|
54
|
-
- BaseLayout
|
|
55
|
-
- date
|
|
56
|
-
- utils
|
|
57
|
-
- color
|
|
58
|
-
- GenericInputProps
|
|
59
|
-
- ui
|
|
60
|
-
- InputBase
|
|
61
|
-
- energy
|
|
62
|
-
- utils
|
|
63
|
-
- colors
|
|
64
|
-
- paragraphs
|
|
65
|
-
- utils
|
|
66
|
-
- ui
|
|
67
|
-
- utils (all)
|
|
33
|
+
## How to build ?
|
|
34
|
+
|
|
35
|
+
Use `yarn build`
|
|
68
36
|
|
|
69
37
|
## Update version
|
|
70
38
|
|
|
71
|
-
Before each change, please update `CHANGELOG.md` with a new version
|
|
39
|
+
Before each change, please update `CHANGELOG.md` with a new version using the following template:
|
|
40
|
+
|
|
41
|
+
```markdown
|
|
42
|
+
**major.minor.patch**
|
|
43
|
+
|
|
44
|
+
* Commit message
|
|
45
|
+
|
|
46
|
+
OR
|
|
47
|
+
|
|
48
|
+
**BREAKING CHANGE** Commit message
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
- Fix: **patch**
|
|
52
|
+
- Component / Feature: **minor**
|
|
53
|
+
- Everything which can bring changes in the different projects: **major**
|
|
54
|
+
|
|
55
|
+
When changelog is updated, don't forget to bump the `package.json` version with:
|
|
72
56
|
|
|
73
|
-
|
|
74
|
-
|
|
57
|
+
```
|
|
58
|
+
$ yarn version --major | --minor | --patch
|
|
59
|
+
```
|
|
75
60
|
|
|
76
|
-
|
|
61
|
+
## Release new version
|
|
77
62
|
|
|
78
|
-
|
|
63
|
+
Pushing a new version in the `master` branch automatically trigger a new release of the NPM package.
|
|
79
64
|
|
|
80
65
|
## Backport a fix
|
|
81
66
|
|
|
@@ -5,10 +5,10 @@ type TagBaseProps = {
|
|
|
5
5
|
};
|
|
6
6
|
export declare const TagBase: import("styled-components").FlattenSimpleInterpolation;
|
|
7
7
|
export declare const TAG_BUSINESS_BASE: import("styled-components").FlattenSimpleInterpolation;
|
|
8
|
-
export declare const BasicTag: import("styled-components").StyledComponent<"span", any, Pick<TagProps, "
|
|
8
|
+
export declare const BasicTag: import("styled-components").StyledComponent<"span", any, Pick<TagProps, "color" | "appearance"> & TagBaseProps, never>;
|
|
9
9
|
export declare const TagCloser: import("styled-components").StyledComponent<"button", any, Pick<TagProps, "appearance">, never>;
|
|
10
10
|
export declare const TagElement: import("styled-components").StyledComponent<"li", any, {}, never>;
|
|
11
|
-
export declare const List: import("styled-components").StyledComponent<"ul", any, Pick<TagProps, "
|
|
11
|
+
export declare const List: import("styled-components").StyledComponent<"ul", any, Pick<TagProps, "color" | "appearance">, never>;
|
|
12
12
|
export declare const TagList: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
13
13
|
export declare const IconWrapper: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
14
14
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proprioo/salatim",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.1.0",
|
|
4
4
|
"description": "Proprioo component library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"components",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"test:watch": "TZ=Europe/Paris vitest --watch"
|
|
37
37
|
},
|
|
38
38
|
"resolutions": {
|
|
39
|
-
"@types/react": "^18.2.
|
|
39
|
+
"@types/react": "^18.2.70"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@commitlint/cli": "^
|
|
43
|
-
"@commitlint/config-conventional": "^
|
|
42
|
+
"@commitlint/cli": "^19.2.1",
|
|
43
|
+
"@commitlint/config-conventional": "^19.1.0",
|
|
44
44
|
"@popperjs/core": "^2.11.8",
|
|
45
|
-
"@proprioo/hokkaido": "^12.
|
|
45
|
+
"@proprioo/hokkaido": "^12.4.0",
|
|
46
46
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
47
47
|
"@rollup/plugin-json": "^6.1.0",
|
|
48
48
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
@@ -53,22 +53,22 @@
|
|
|
53
53
|
"@storybook/addon-links": "^6.5.16",
|
|
54
54
|
"@storybook/react": "^6.5.16",
|
|
55
55
|
"@testing-library/jest-dom": "^6.4.2",
|
|
56
|
-
"@testing-library/react": "^14.2.
|
|
56
|
+
"@testing-library/react": "^14.2.2",
|
|
57
57
|
"@testing-library/user-event": "^14.5.2",
|
|
58
58
|
"@types/googlemaps": "^3.43.3",
|
|
59
59
|
"@types/jest-axe": "^3.5.9",
|
|
60
60
|
"@types/mailcheck": "^1.1.37",
|
|
61
|
-
"@types/react": "^18.2.
|
|
61
|
+
"@types/react": "^18.2.70",
|
|
62
62
|
"@types/react-color": "^3.0.12",
|
|
63
63
|
"@types/react-dates": "^21.8.6",
|
|
64
|
-
"@types/react-dom": "^18.2.
|
|
64
|
+
"@types/react-dom": "^18.2.22",
|
|
65
65
|
"@types/react-phone-number-input": "^3.0.17",
|
|
66
66
|
"@types/react-places-autocomplete": "^7.2.14",
|
|
67
67
|
"@types/react-test-renderer": "^18.0.7",
|
|
68
68
|
"@types/react-toggle": "^4.0.5",
|
|
69
69
|
"@types/styled-components": "^5.1.34",
|
|
70
70
|
"@vitejs/plugin-react": "^4.2.1",
|
|
71
|
-
"@vitest/coverage-v8": "^1.
|
|
71
|
+
"@vitest/coverage-v8": "^1.4.0",
|
|
72
72
|
"babel-loader": "^8.3.0",
|
|
73
73
|
"babel-preset-react-app": "^10.0.1",
|
|
74
74
|
"date-fns": "^2.30.0",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"mailcheck": "^1.1.1",
|
|
84
84
|
"mockdate": "^3.0.5",
|
|
85
85
|
"polished": "^4.3.1",
|
|
86
|
-
"postcss": "^8.4.
|
|
86
|
+
"postcss": "^8.4.38",
|
|
87
87
|
"prettier": "^3.2.5",
|
|
88
88
|
"react": "^18.2.0",
|
|
89
89
|
"react-day-picker": "^8.10.0",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"react-popper-tooltip": "^4.4.2",
|
|
94
94
|
"react-test-renderer": "^18.2.0",
|
|
95
95
|
"react-toggle": "^4.1.3",
|
|
96
|
-
"rollup": "^4.
|
|
96
|
+
"rollup": "^4.13.0",
|
|
97
97
|
"rollup-plugin-bundle-size": "^1.0.3",
|
|
98
98
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
99
99
|
"rollup-plugin-postcss": "^4.0.2",
|
|
@@ -106,17 +106,17 @@
|
|
|
106
106
|
"tslint-config-prettier": "^1.18.0",
|
|
107
107
|
"tslint-react": "^5.0.0",
|
|
108
108
|
"tslint-react-hooks": "^2.2.2",
|
|
109
|
-
"typescript": "^5.
|
|
110
|
-
"vitest": "^1.
|
|
111
|
-
"yup": "^1.
|
|
109
|
+
"typescript": "^5.4.3",
|
|
110
|
+
"vitest": "^1.4.0",
|
|
111
|
+
"yup": "^1.4.0"
|
|
112
112
|
},
|
|
113
113
|
"peerDependencies": {
|
|
114
|
-
"@proprioo/hokkaido": "^12.
|
|
114
|
+
"@proprioo/hokkaido": "^12.4.0",
|
|
115
115
|
"date-fns": "^2.30.0",
|
|
116
116
|
"polished": "^4.3.1",
|
|
117
117
|
"react": "^18.2.0",
|
|
118
118
|
"react-dom": "^18.2.0",
|
|
119
119
|
"styled-components": "^5.3.11",
|
|
120
|
-
"yup": "^1.
|
|
120
|
+
"yup": "^1.4.0"
|
|
121
121
|
}
|
|
122
122
|
}
|