@ojiepermana/angular 22.0.35 → 22.0.36

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -67,9 +67,9 @@ stylesheet (the CSS ships inside the package and is reachable by name):
67
67
 
68
68
  ```css
69
69
  /* styles.css */
70
- @import '@ojiepermana/angular-theme/theme.css'; /* base tokens + component styles */
70
+ @import '@ojiepermana/angular-theme/styles/css/index.css'; /* base + all color + neutral palettes */
71
71
  @import 'tailwindcss';
72
- @import '@ojiepermana/angular-theme/styles/css/seasonal/base/tailwind.css'; /* maps tokens → bg-primary, text-foreground, … */
72
+ @import '@ojiepermana/angular-theme/styles/css/base/tailwind.css'; /* maps tokens → bg-primary, bg-brand, text-foreground, … */
73
73
  ```
74
74
 
75
75
  (The theme CSS lives in the `@ojiepermana/angular-theme` package, installed
@@ -79,7 +79,7 @@ automatically as a dependency.) Then register the provider:
79
79
  import { provideUiTheme } from '@ojiepermana/angular/theme/styles';
80
80
 
81
81
  export const appConfig = {
82
- providers: [provideUiTheme({ mode: 'light', season: 'base' })],
82
+ providers: [provideUiTheme({ mode: 'light', color: 'base', neutral: 'base' })],
83
83
  };
84
84
  ```
85
85
 
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@ojiepermana/angular",
3
- "version": "22.0.35",
3
+ "version": "22.0.36",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^22.0.0",
6
6
  "@angular/core": "^22.0.0"
7
7
  },
8
8
  "dependencies": {
9
- "@ojiepermana/angular-chart": "^22.0.35",
10
- "@ojiepermana/angular-component": "^22.0.35",
11
- "@ojiepermana/angular-navigation": "^22.0.35",
12
- "@ojiepermana/angular-sdk": "^22.0.35",
13
- "@ojiepermana/angular-theme": "^22.0.35",
9
+ "@ojiepermana/angular-chart": "^22.0.36",
10
+ "@ojiepermana/angular-component": "^22.0.36",
11
+ "@ojiepermana/angular-navigation": "^22.0.36",
12
+ "@ojiepermana/angular-sdk": "^22.0.36",
13
+ "@ojiepermana/angular-theme": "^22.0.36",
14
14
  "tslib": "^2.8.1"
15
15
  },
16
16
  "publishConfig": {