pantheon-libraries 0.1.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.
Files changed (36) hide show
  1. package/README.md +27 -0
  2. package/dist/pantheon-ui/README.md +63 -0
  3. package/dist/pantheon-ui/esm2022/lib/pantheon-Cards/card.component.mjs +32 -0
  4. package/dist/pantheon-ui/esm2022/lib/pantheon-Cards/card.module.mjs +32 -0
  5. package/dist/pantheon-ui/esm2022/lib/pantheon-Panels/grid-panel/grid-panel.component.mjs +48 -0
  6. package/dist/pantheon-ui/esm2022/lib/pantheon-Panels/grid-panel/grid-panel.module.mjs +36 -0
  7. package/dist/pantheon-ui/esm2022/lib/pantheon-Panels/grid-panel/grid-pannel-header/grid-panel-header.component.mjs +34 -0
  8. package/dist/pantheon-ui/esm2022/lib/pantheon-Panels/grid-panel/grid-pannel-header/grid-panel-header.module.mjs +25 -0
  9. package/dist/pantheon-ui/esm2022/lib/pantheon-ui.mjs +19 -0
  10. package/dist/pantheon-ui/esm2022/lib/pantheon-windows/SideActionPanel/interface.mjs +2 -0
  11. package/dist/pantheon-ui/esm2022/lib/pantheon-windows/SideActionPanel/side-action-panel.component.mjs +65 -0
  12. package/dist/pantheon-ui/esm2022/lib/pantheon-windows/SideActionPanel/side-action-panel.module.mjs +28 -0
  13. package/dist/pantheon-ui/esm2022/lib/pantheon-windows/window/constants.mjs +9 -0
  14. package/dist/pantheon-ui/esm2022/lib/pantheon-windows/window/window.component.mjs +44 -0
  15. package/dist/pantheon-ui/esm2022/lib/pantheon-windows/window/window.module.mjs +28 -0
  16. package/dist/pantheon-ui/esm2022/pantheon-ui.mjs +5 -0
  17. package/dist/pantheon-ui/esm2022/public-api.mjs +15 -0
  18. package/dist/pantheon-ui/fesm2022/pantheon-ui.mjs +369 -0
  19. package/dist/pantheon-ui/fesm2022/pantheon-ui.mjs.map +1 -0
  20. package/dist/pantheon-ui/index.d.ts +5 -0
  21. package/dist/pantheon-ui/lib/pantheon-Cards/card.component.d.ts +11 -0
  22. package/dist/pantheon-ui/lib/pantheon-Cards/card.module.d.ts +10 -0
  23. package/dist/pantheon-ui/lib/pantheon-Panels/grid-panel/grid-panel.component.d.ts +21 -0
  24. package/dist/pantheon-ui/lib/pantheon-Panels/grid-panel/grid-panel.module.d.ts +11 -0
  25. package/dist/pantheon-ui/lib/pantheon-Panels/grid-panel/grid-pannel-header/grid-panel-header.component.d.ts +17 -0
  26. package/dist/pantheon-ui/lib/pantheon-Panels/grid-panel/grid-pannel-header/grid-panel-header.module.d.ts +8 -0
  27. package/dist/pantheon-ui/lib/pantheon-ui.d.ts +5 -0
  28. package/dist/pantheon-ui/lib/pantheon-windows/SideActionPanel/interface.d.ts +6 -0
  29. package/dist/pantheon-ui/lib/pantheon-windows/SideActionPanel/side-action-panel.component.d.ts +12 -0
  30. package/dist/pantheon-ui/lib/pantheon-windows/SideActionPanel/side-action-panel.module.d.ts +9 -0
  31. package/dist/pantheon-ui/lib/pantheon-windows/window/constants.d.ts +5 -0
  32. package/dist/pantheon-ui/lib/pantheon-windows/window/window.component.d.ts +16 -0
  33. package/dist/pantheon-ui/lib/pantheon-windows/window/window.module.d.ts +9 -0
  34. package/dist/pantheon-ui/package.json +25 -0
  35. package/dist/pantheon-ui/public-api.d.ts +11 -0
  36. package/package.json +49 -0
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./side-action-panel.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/icon";
5
+ export declare class SideActionPanelModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<SideActionPanelModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SideActionPanelModule, [typeof i1.SideActionPanelComponent], [typeof i2.CommonModule, typeof i3.MatIconModule], [typeof i1.SideActionPanelComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<SideActionPanelModule>;
9
+ }
@@ -0,0 +1,5 @@
1
+ export type ModalSize = typeof MODAL_SIZES[number];
2
+ export type ModalVariant = typeof MODAL_VARIANTS[number];
3
+ export declare const MODAL_SIZES: string[];
4
+ export declare const MODAL_VARIANTS: string[];
5
+ export declare const ICONS: Record<ModalVariant, string>;
@@ -0,0 +1,16 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ModalSize, ModalVariant } from './constants';
3
+ import * as i0 from "@angular/core";
4
+ export declare class WindowComponent {
5
+ size: ModalSize;
6
+ variant: ModalVariant;
7
+ show: boolean;
8
+ titleBtnClose: string;
9
+ titleBtnNext: string;
10
+ onAction: () => void;
11
+ showChange: EventEmitter<boolean>;
12
+ get icon(): string;
13
+ close(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<WindowComponent, "pantehon-window", never, { "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "show": { "alias": "show"; "required": false; }; "titleBtnClose": { "alias": "titleBtnClose"; "required": false; }; "titleBtnNext": { "alias": "titleBtnNext"; "required": false; }; "onAction": { "alias": "onAction"; "required": false; }; }, { "showChange": "showChange"; }, never, ["[title]", "[body]"], false, never>;
16
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./window.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/icon";
5
+ export declare class WindowModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<WindowModule, [typeof i1.WindowComponent], [typeof i2.CommonModule, typeof i3.MatIconModule], [typeof i1.WindowComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<WindowModule>;
9
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "pantheon-ui",
3
+ "version": "0.0.1",
4
+ "peerDependencies": {
5
+ "@angular/common": "^21.0.0",
6
+ "@angular/core": "^21.0.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "sideEffects": false,
12
+ "module": "fesm2022/pantheon-ui.mjs",
13
+ "typings": "index.d.ts",
14
+ "exports": {
15
+ "./package.json": {
16
+ "default": "./package.json"
17
+ },
18
+ ".": {
19
+ "types": "./index.d.ts",
20
+ "esm2022": "./esm2022/pantheon-ui.mjs",
21
+ "esm": "./esm2022/pantheon-ui.mjs",
22
+ "default": "./fesm2022/pantheon-ui.mjs"
23
+ }
24
+ }
25
+ }
@@ -0,0 +1,11 @@
1
+ export * from './lib/pantheon-ui';
2
+ export * from './lib/pantheon-Panels/grid-panel/grid-panel.module';
3
+ export * from './lib/pantheon-Panels/grid-panel/grid-panel.component';
4
+ export * from './lib/pantheon-Panels/grid-panel/grid-pannel-header/grid-panel-header.module';
5
+ export * from './lib/pantheon-Panels/grid-panel/grid-pannel-header/grid-panel-header.component';
6
+ export * from './lib/pantheon-Cards/card.module';
7
+ export * from './lib/pantheon-Cards/card.component';
8
+ export * from './lib/pantheon-windows/window/window.module';
9
+ export * from './lib/pantheon-windows/window/window.component';
10
+ export * from './lib/pantheon-windows/SideActionPanel/side-action-panel.module';
11
+ export * from './lib/pantheon-windows/SideActionPanel/side-action-panel.component';
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "pantheon-libraries",
3
+ "version": "0.1.0",
4
+ "main": "dist/pantheon-ui/pantheon-ui.js",
5
+ "types": "dist/pantheon-ui/pantheon-ui.d.ts",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "scripts": {
10
+ "ng": "ng",
11
+ "start": "ng serve",
12
+ "build": "ng build",
13
+ "watch": "ng build --watch --configuration development",
14
+ "test": "ng test"
15
+ },
16
+ "private": false,
17
+ "dependencies": {
18
+ "@angular/animations": "^16.2.12",
19
+ "@angular/cdk": "^16.2.14",
20
+ "@angular/common": "^16.2.0",
21
+ "@angular/compiler": "^16.2.0",
22
+ "@angular/core": "^16.2.0",
23
+ "@angular/forms": "^16.2.0",
24
+ "@angular/material": "^16.2.14",
25
+ "@angular/platform-browser": "^16.2.0",
26
+ "@angular/platform-browser-dynamic": "^16.2.0",
27
+ "@angular/router": "^16.2.0",
28
+ "rxjs": "~7.8.0",
29
+ "tslib": "^2.3.0",
30
+ "zone.js": "~0.13.0"
31
+ },
32
+ "devDependencies": {
33
+ "@angular-devkit/build-angular": "^16.2.16",
34
+ "@angular/build": "^21.0.1",
35
+ "@angular/cli": "^16.2.16",
36
+ "@angular/compiler-cli": "^16.2.0",
37
+ "@types/jasmine": "~4.3.0",
38
+ "jasmine-core": "~4.6.0",
39
+ "jsdom": "^27.1.0",
40
+ "karma": "~6.4.0",
41
+ "karma-chrome-launcher": "~3.2.0",
42
+ "karma-coverage": "~2.2.0",
43
+ "karma-jasmine": "~5.1.0",
44
+ "karma-jasmine-html-reporter": "~2.1.0",
45
+ "ng-packagr": "^16.2.0",
46
+ "typescript": "~4.9.5",
47
+ "vitest": "^4.0.8"
48
+ }
49
+ }