valtech-components 2.0.655 → 2.0.656
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 +0 -38
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -243,44 +243,6 @@ npm run storybook
|
|
|
243
243
|
| `npm run build-storybook` | Build static Storybook |
|
|
244
244
|
| `npm run test` | Run unit tests |
|
|
245
245
|
| `npm run prettier` | Format source files |
|
|
246
|
-
| `npm run publish:patch` | Build and publish patch version to npm |
|
|
247
|
-
| `npm run update-apps` | Update dependent apps |
|
|
248
|
-
|
|
249
|
-
### Publishing
|
|
250
|
-
|
|
251
|
-
```bash
|
|
252
|
-
# Publish a new patch version (e.g., 2.0.654 → 2.0.655)
|
|
253
|
-
npm run publish:patch
|
|
254
|
-
```
|
|
255
|
-
|
|
256
|
-
## Project Structure
|
|
257
|
-
|
|
258
|
-
```
|
|
259
|
-
valtech-components/
|
|
260
|
-
├── .storybook/ # Storybook configuration
|
|
261
|
-
├── src/
|
|
262
|
-
│ ├── lib/
|
|
263
|
-
│ │ ├── components/ # UI components
|
|
264
|
-
│ │ │ ├── atoms/ # Basic elements (19)
|
|
265
|
-
│ │ │ ├── molecules/ # Compound components (81)
|
|
266
|
-
│ │ │ ├── organisms/ # Complex components (24)
|
|
267
|
-
│ │ │ └── templates/ # Page layouts (10)
|
|
268
|
-
│ │ ├── services/ # Angular services (23+)
|
|
269
|
-
│ │ │ ├── auth/ # Authentication
|
|
270
|
-
│ │ │ ├── firebase/ # Firebase integration
|
|
271
|
-
│ │ │ ├── i18n/ # Internationalization
|
|
272
|
-
│ │ │ ├── feedback/ # User feedback
|
|
273
|
-
│ │ │ ├── app-config/ # Remote configuration
|
|
274
|
-
│ │ │ └── ...
|
|
275
|
-
│ │ ├── shared/ # Utilities, pipes, constants
|
|
276
|
-
│ │ └── config/ # Shared configuration
|
|
277
|
-
│ ├── stories/ # Storybook stories
|
|
278
|
-
│ └── public-api.ts # Library exports
|
|
279
|
-
├── styles/ # Global SCSS styles
|
|
280
|
-
├── angular.json # Angular CLI config
|
|
281
|
-
├── ng-package.json # ng-packagr config
|
|
282
|
-
└── package.json # Dependencies and scripts
|
|
283
|
-
```
|
|
284
246
|
|
|
285
247
|
## Documentation
|
|
286
248
|
|