@ojiepermana/angular 22.0.35 → 22.0.41
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 +3 -3
- 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/
|
|
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/
|
|
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',
|
|
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.
|
|
3
|
+
"version": "22.0.41",
|
|
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.
|
|
10
|
-
"@ojiepermana/angular-component": "^22.0.
|
|
11
|
-
"@ojiepermana/angular-navigation": "^22.0.
|
|
12
|
-
"@ojiepermana/angular-sdk": "^22.0.
|
|
13
|
-
"@ojiepermana/angular-theme": "^22.0.
|
|
9
|
+
"@ojiepermana/angular-chart": "^22.0.41",
|
|
10
|
+
"@ojiepermana/angular-component": "^22.0.41",
|
|
11
|
+
"@ojiepermana/angular-navigation": "^22.0.41",
|
|
12
|
+
"@ojiepermana/angular-sdk": "^22.0.41",
|
|
13
|
+
"@ojiepermana/angular-theme": "^22.0.41",
|
|
14
14
|
"tslib": "^2.8.1"
|
|
15
15
|
},
|
|
16
16
|
"publishConfig": {
|