@arclux/arc-ui-angular 1.7.1 → 1.8.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/package.json +2 -2
- package/src/content/IconLibrary.ts +13 -0
- package/src/content/index.ts +1 -0
- package/src/index.ts +1 -0
- package/src/layout/DashboardGrid.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arclux/arc-ui-angular",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "Angular standalone component wrappers for ARC UI Web Components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@angular/core": ">=17.0.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@arclux/arc-ui": "1.
|
|
47
|
+
"@arclux/arc-ui": "1.8.0"
|
|
48
48
|
},
|
|
49
49
|
"license": "MIT",
|
|
50
50
|
"keywords": [
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
|
+
|
|
3
|
+
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
4
|
+
import '@arclux/arc-ui';
|
|
5
|
+
|
|
6
|
+
@Component({
|
|
7
|
+
selector: 'arc-icon-library',
|
|
8
|
+
standalone: true,
|
|
9
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
10
|
+
template: `<arc-icon-library><ng-content /></arc-icon-library>`,
|
|
11
|
+
})
|
|
12
|
+
export class IconLibrary {
|
|
13
|
+
}
|
package/src/content/index.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -115,3 +115,4 @@ export { MenuDivider } from './shared/MenuDivider.js';
|
|
|
115
115
|
export { MenuItem } from './shared/MenuItem.js';
|
|
116
116
|
export { Option } from './shared/Option.js';
|
|
117
117
|
export { CtaBanner } from './content/CtaBanner.js';
|
|
118
|
+
export { IconLibrary } from './content/IconLibrary.js';
|
|
@@ -10,7 +10,7 @@ import '@arclux/arc-ui';
|
|
|
10
10
|
template: `<arc-dashboard-grid [attr.columns]="columns" [attr.gap]="gap" [attr.minColumnWidth]="minColumnWidth"><ng-content /></arc-dashboard-grid>`,
|
|
11
11
|
})
|
|
12
12
|
export class DashboardGrid {
|
|
13
|
-
@Input() columns: number =
|
|
13
|
+
@Input() columns: number = 0;
|
|
14
14
|
@Input() gap: string = 'var(--space-lg)';
|
|
15
15
|
@Input() minColumnWidth: string = '280px';
|
|
16
16
|
}
|