mautourco-components 0.2.0 → 0.2.2
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 +10 -6
- package/dist/components/atoms/Button/Button.css +203 -0
- package/dist/components/atoms/Tab/Tab.css +149 -0
- package/dist/styles/components/avatar.css +2165 -0
- package/dist/styles/components/calendar.css +2214 -0
- package/dist/styles/components/checkbox.css +2212 -0
- package/dist/styles/components/dropdown.css +2295 -0
- package/dist/styles/components/forms.css +2229 -0
- package/dist/styles/components/illustration.css +2081 -0
- package/dist/styles/components/molecule/calendarInput.css +2308 -0
- package/dist/styles/components/molecule/dateTime.css +2092 -0
- package/dist/styles/components/molecule/location-dropdown.css +2405 -0
- package/dist/styles/components/molecule/timePicker.css +2204 -0
- package/dist/styles/components/multiselect-dropdown.css +2312 -0
- package/dist/styles/components/organism/card-container.css +2128 -0
- package/dist/styles/components/organism/dialog.css +2441 -0
- package/dist/styles/components/organism/footer.css +2387 -0
- package/dist/styles/components/organism/pax-selector.css +2800 -0
- package/dist/styles/components/organism/round-trip.css +2143 -0
- package/dist/styles/components/organism/search-bar-transfer.css +2258 -0
- package/dist/styles/components/organism/topnavigation.css +2499 -0
- package/dist/styles/components/organism/transfer-line.css +2208 -0
- package/dist/styles/components/rating-star.css +2113 -0
- package/dist/styles/components/rating-tab.css +2157 -0
- package/dist/styles/components/scrollbar.css +2143 -0
- package/dist/styles/components/segmented-button.css +2218 -0
- package/dist/styles/components/selected-value.css +2159 -0
- package/dist/styles/components/slider.css +2164 -0
- package/dist/styles/components/typography.css +2417 -0
- package/dist/styles/tokens/_tokens.scss +2072 -0
- package/dist/styles/tokens/tokens.css +2075 -0
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mautourco-components",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Bibliothèque de composants Motorco pour le redesign",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -45,7 +45,9 @@
|
|
|
45
45
|
"scripts": {
|
|
46
46
|
"start": "concurrently \"npm run watch-tokens\" \"vite\"",
|
|
47
47
|
"build": "vite build && npm run build-storybook && npx cpx2 \"storybook-static/**\" build/storybook",
|
|
48
|
-
"build:
|
|
48
|
+
"build:css": "node scripts/build-css.js",
|
|
49
|
+
"build:css:copy": "node scripts/copy-css-to-components.js",
|
|
50
|
+
"build:package": "npm run build-tokens && npm run build:css && tsc --build tsconfig.build.json && npm run build:css:copy",
|
|
49
51
|
"prepublishOnly": "npm run build:package",
|
|
50
52
|
"test": "vitest",
|
|
51
53
|
"build-tokens": "style-dictionary build --config style-dictionary.config.js",
|
|
@@ -89,6 +91,8 @@
|
|
|
89
91
|
"eslint-plugin-storybook": "^9.1.5",
|
|
90
92
|
"nodemon": "^3.1.10",
|
|
91
93
|
"postcss": "^8.5.6",
|
|
94
|
+
"postcss-cli": "^11.0.1",
|
|
95
|
+
"postcss-import": "^16.1.1",
|
|
92
96
|
"prop-types": "^15.8.1",
|
|
93
97
|
"storybook": "^9.1.5",
|
|
94
98
|
"style-dictionary": "^5.0.4",
|
|
@@ -96,4 +100,4 @@
|
|
|
96
100
|
"vite": "^7.2.6",
|
|
97
101
|
"vitest": "^2.1.8"
|
|
98
102
|
}
|
|
99
|
-
}
|
|
103
|
+
}
|