@kato-lee/components 1.0.7 → 1.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 (199) hide show
  1. package/assets/_grids.scss +5 -5
  2. package/assets/fonts/fonts.scss +11 -0
  3. package/assets/material/themes/dark.scss +2 -1
  4. package/assets/themes/_dark.scss +2 -1
  5. package/assets/themes/_default.scss +0 -1
  6. package/box-form/{box-form.component.d.ts → component.d.ts} +2 -2
  7. package/box-form/index.d.ts +2 -2
  8. package/box-form/module.d.ts +8 -0
  9. package/capsule/{capsule.component.d.ts → component.d.ts} +1 -1
  10. package/capsule/index.d.ts +2 -2
  11. package/capsule/{capsule.module.d.ts → module.d.ts} +3 -2
  12. package/cards/{simple-card.component.d.ts → component.d.ts} +1 -1
  13. package/cards/index.d.ts +2 -2
  14. package/cards/{cards.module.d.ts → module.d.ts} +3 -2
  15. package/dialogs/dismiss-dialog-button.component.d.ts +1 -1
  16. package/dialogs/index.d.ts +1 -1
  17. package/dialogs/module.d.ts +9 -0
  18. package/esm2022/box-form/component.mjs +112 -0
  19. package/esm2022/box-form/index.mjs +3 -3
  20. package/esm2022/box-form/module.mjs +17 -0
  21. package/esm2022/capsule/component.mjs +78 -0
  22. package/esm2022/capsule/index.mjs +3 -3
  23. package/esm2022/capsule/module.mjs +17 -0
  24. package/esm2022/cards/component.mjs +48 -0
  25. package/esm2022/cards/index.mjs +3 -3
  26. package/esm2022/cards/module.mjs +18 -0
  27. package/esm2022/dialogs/dismiss-dialog-button.component.mjs +14 -12
  28. package/esm2022/dialogs/index.mjs +2 -2
  29. package/esm2022/dialogs/module.mjs +19 -0
  30. package/esm2022/fields/autocomplete/component.mjs +259 -0
  31. package/esm2022/fields/autocomplete/index.mjs +2 -0
  32. package/esm2022/fields/common.mjs +11 -0
  33. package/esm2022/fields/date/component.mjs +163 -0
  34. package/esm2022/fields/date/index.mjs +2 -0
  35. package/esm2022/fields/date-range/component.mjs +85 -0
  36. package/esm2022/fields/date-range/index.mjs +2 -0
  37. package/esm2022/fields/error/component.mjs +57 -0
  38. package/esm2022/fields/error/error-equals.pipe.mjs +3 -3
  39. package/esm2022/fields/error/error.msg.pipe.mjs +3 -3
  40. package/esm2022/fields/general/component.mjs +202 -0
  41. package/esm2022/fields/general/index.mjs +2 -0
  42. package/esm2022/fields/index.mjs +14 -14
  43. package/esm2022/fields/module.mjs +82 -0
  44. package/esm2022/fields/money/component.mjs +202 -0
  45. package/esm2022/fields/money/index.mjs +2 -0
  46. package/esm2022/fields/number/component.mjs +179 -0
  47. package/esm2022/fields/number/index.mjs +2 -0
  48. package/esm2022/fields/remote-autocomplete/component.mjs +188 -0
  49. package/esm2022/fields/remote-autocomplete/index.mjs +2 -0
  50. package/esm2022/fields/select/component.mjs +158 -0
  51. package/esm2022/fields/select/index.mjs +2 -0
  52. package/esm2022/fields/text-area/component.mjs +186 -0
  53. package/esm2022/fields/validators.mjs +11 -0
  54. package/esm2022/modal/component.mjs +66 -0
  55. package/esm2022/modal/index.mjs +4 -4
  56. package/esm2022/modal/module.mjs +17 -0
  57. package/esm2022/modal/service.mjs +33 -0
  58. package/esm2022/pretty-box/component.mjs +94 -0
  59. package/esm2022/pretty-box/index.mjs +2 -2
  60. package/esm2022/tables/index.mjs +2 -2
  61. package/esm2022/tables/module.mjs +23 -0
  62. package/esm2022/toast/index.mjs +2 -2
  63. package/esm2022/toast/service.mjs +42 -0
  64. package/fesm2022/kato-lee-components-box-form.mjs +19 -29
  65. package/fesm2022/kato-lee-components-box-form.mjs.map +1 -1
  66. package/fesm2022/kato-lee-components-capsule.mjs +5 -4
  67. package/fesm2022/kato-lee-components-capsule.mjs.map +1 -1
  68. package/fesm2022/kato-lee-components-cards.mjs +7 -5
  69. package/fesm2022/kato-lee-components-cards.mjs.map +1 -1
  70. package/fesm2022/kato-lee-components-dialogs.mjs +16 -18
  71. package/fesm2022/kato-lee-components-dialogs.mjs.map +1 -1
  72. package/fesm2022/kato-lee-components-fields.mjs +135 -106
  73. package/fesm2022/kato-lee-components-fields.mjs.map +1 -1
  74. package/fesm2022/kato-lee-components-modal.mjs +9 -10
  75. package/fesm2022/kato-lee-components-modal.mjs.map +1 -1
  76. package/fesm2022/kato-lee-components-pretty-box.mjs +6 -6
  77. package/fesm2022/kato-lee-components-pretty-box.mjs.map +1 -1
  78. package/fesm2022/kato-lee-components-tables.mjs +1 -0
  79. package/fesm2022/kato-lee-components-tables.mjs.map +1 -1
  80. package/fesm2022/kato-lee-components-toast.mjs.map +1 -1
  81. package/fields/{autocomplete-field/autocomplete-field.component.d.ts → autocomplete/component.d.ts} +2 -2
  82. package/fields/autocomplete/index.d.ts +1 -0
  83. package/fields/{date-field/date-field.component.d.ts → date/component.d.ts} +2 -2
  84. package/fields/date/index.d.ts +1 -0
  85. package/fields/{date-range-field/date-range-field.component.d.ts → date-range/component.d.ts} +2 -2
  86. package/fields/date-range/index.d.ts +1 -0
  87. package/fields/error/{error.component.d.ts → component.d.ts} +1 -1
  88. package/fields/error/error-equals.pipe.d.ts +1 -1
  89. package/fields/error/error.msg.pipe.d.ts +1 -1
  90. package/fields/{general-field/general-field.component.d.ts → general/component.d.ts} +2 -2
  91. package/fields/general/index.d.ts +1 -0
  92. package/fields/index.d.ts +13 -13
  93. package/fields/module.d.ts +19 -0
  94. package/fields/{money-field/money-field.component.d.ts → money/component.d.ts} +1 -1
  95. package/fields/money/index.d.ts +1 -0
  96. package/fields/{number-field/number-field.component.d.ts → number/component.d.ts} +1 -1
  97. package/fields/number/index.d.ts +1 -0
  98. package/fields/remote-autocomplete/index.d.ts +1 -0
  99. package/fields/{select-field/select-field.component.d.ts → select/component.d.ts} +2 -2
  100. package/fields/select/index.d.ts +1 -0
  101. package/fields/text-area/{textarea.component.d.ts → component.d.ts} +1 -1
  102. package/modal/{modal.component.d.ts → component.d.ts} +1 -1
  103. package/modal/index.d.ts +3 -3
  104. package/modal/module.d.ts +8 -0
  105. package/package.json +1 -7
  106. package/pretty-box/component.d.ts +24 -0
  107. package/pretty-box/index.d.ts +1 -1
  108. package/tables/index.d.ts +1 -1
  109. package/tables/{tables.module.d.ts → module.d.ts} +1 -0
  110. package/toast/index.d.ts +1 -1
  111. package/assets/fonts/body/Transpass-Bold.ttf +0 -0
  112. package/assets/fonts/body/Transpass-Light.ttf +0 -0
  113. package/assets/fonts/body/Transpass-Medium.ttf +0 -0
  114. package/assets/fonts/body/Transpass-Regular.ttf +0 -0
  115. package/assets/fonts/body/style-font.scss +0 -40
  116. package/assets/fonts/main.scss +0 -18
  117. package/assets/fonts/title/Poppins-Bold.ttf +0 -0
  118. package/assets/fonts/title/Poppins-Light.ttf +0 -0
  119. package/assets/fonts/title/Poppins-Medium.ttf +0 -0
  120. package/assets/fonts/title/Poppins-Regular.ttf +0 -0
  121. package/assets/fonts/title/Poppins-SemiBold.ttf +0 -0
  122. package/assets/fonts/title/style-font.scss +0 -39
  123. package/assets/layouts/_loader.scss +0 -71
  124. package/assets/layouts/origin.scss +0 -775
  125. package/box-form/box-form.module.d.ts +0 -13
  126. package/dialogs/dialogs.module.d.ts +0 -11
  127. package/esm2022/box-form/box-form.component.mjs +0 -99
  128. package/esm2022/box-form/box-form.module.mjs +0 -40
  129. package/esm2022/capsule/capsule.component.mjs +0 -78
  130. package/esm2022/capsule/capsule.module.mjs +0 -16
  131. package/esm2022/cards/cards.module.mjs +0 -17
  132. package/esm2022/cards/simple-card.component.mjs +0 -47
  133. package/esm2022/dialogs/dialogs.module.mjs +0 -22
  134. package/esm2022/fields/autocomplete-field/autocomplete-field.component.mjs +0 -240
  135. package/esm2022/fields/date-field/date-field.component.mjs +0 -148
  136. package/esm2022/fields/date-range-field/date-range-field.component.mjs +0 -70
  137. package/esm2022/fields/error/error.component.mjs +0 -55
  138. package/esm2022/fields/error/error.module.mjs +0 -21
  139. package/esm2022/fields/fields.common.mjs +0 -11
  140. package/esm2022/fields/fields.module.mjs +0 -128
  141. package/esm2022/fields/fields.validators.mjs +0 -11
  142. package/esm2022/fields/general-field/general-field.component.mjs +0 -188
  143. package/esm2022/fields/money-field/money-field.component.mjs +0 -188
  144. package/esm2022/fields/number-field/number-field.component.mjs +0 -165
  145. package/esm2022/fields/remote-autocomplete-field/remote-autocomplete-field.component.mjs +0 -188
  146. package/esm2022/fields/select-field/select-field.component.mjs +0 -135
  147. package/esm2022/fields/text-area/textarea.component.mjs +0 -171
  148. package/esm2022/layouts/origin/breadcrumb/breadcrumb.component.mjs +0 -65
  149. package/esm2022/layouts/origin/footer/footer.component.mjs +0 -11
  150. package/esm2022/layouts/origin/header/header.component.mjs +0 -46
  151. package/esm2022/layouts/origin/index.mjs +0 -12
  152. package/esm2022/layouts/origin/kato-lee-components-layouts-origin.mjs +0 -5
  153. package/esm2022/layouts/origin/layout.component.mjs +0 -210
  154. package/esm2022/layouts/origin/layout.module.mjs +0 -52
  155. package/esm2022/layouts/origin/layout.navigation.mjs +0 -19
  156. package/esm2022/layouts/origin/navigation-interfaces.mjs +0 -2
  157. package/esm2022/layouts/origin/services/index.mjs +0 -4
  158. package/esm2022/layouts/origin/services/route-parts.service.mjs +0 -28
  159. package/esm2022/layouts/origin/services/toggle-sidebar.mjs +0 -48
  160. package/esm2022/layouts/origin/services/validate-access.pipe.mjs +0 -53
  161. package/esm2022/layouts/origin/sidebar/sidebar.component.mjs +0 -69
  162. package/esm2022/layouts/origin/sidebar/sidenav/expansion/accordion.component.mjs +0 -74
  163. package/esm2022/layouts/origin/sidebar/sidenav/expansion/expansion-panel-header.component.mjs +0 -51
  164. package/esm2022/layouts/origin/sidebar/sidenav/expansion/expansion-panel.component.mjs +0 -63
  165. package/esm2022/layouts/origin/sidebar/sidenav/sidenav.component.mjs +0 -130
  166. package/esm2022/modal/modal.component.mjs +0 -63
  167. package/esm2022/modal/modal.module.mjs +0 -21
  168. package/esm2022/modal/modal.service.mjs +0 -33
  169. package/esm2022/pretty-box/pretty-box.component.mjs +0 -94
  170. package/esm2022/tables/tables.module.mjs +0 -22
  171. package/esm2022/toast/toast.service.mjs +0 -42
  172. package/fesm2022/kato-lee-components-layouts-origin.mjs +0 -872
  173. package/fesm2022/kato-lee-components-layouts-origin.mjs.map +0 -1
  174. package/fields/error/error.module.d.ts +0 -11
  175. package/fields/fields.module.d.ts +0 -29
  176. package/layouts/origin/breadcrumb/breadcrumb.component.d.ts +0 -24
  177. package/layouts/origin/footer/footer.component.d.ts +0 -5
  178. package/layouts/origin/header/header.component.d.ts +0 -15
  179. package/layouts/origin/index.d.ts +0 -8
  180. package/layouts/origin/layout.component.d.ts +0 -58
  181. package/layouts/origin/layout.module.d.ts +0 -18
  182. package/layouts/origin/layout.navigation.d.ts +0 -10
  183. package/layouts/origin/navigation-interfaces.d.ts +0 -24
  184. package/layouts/origin/services/index.d.ts +0 -3
  185. package/layouts/origin/services/route-parts.service.d.ts +0 -15
  186. package/layouts/origin/services/toggle-sidebar.d.ts +0 -10
  187. package/layouts/origin/services/validate-access.pipe.d.ts +0 -7
  188. package/layouts/origin/sidebar/sidebar.component.d.ts +0 -27
  189. package/layouts/origin/sidebar/sidenav/expansion/accordion.component.d.ts +0 -10
  190. package/layouts/origin/sidebar/sidenav/expansion/expansion-panel-header.component.d.ts +0 -11
  191. package/layouts/origin/sidebar/sidenav/expansion/expansion-panel.component.d.ts +0 -12
  192. package/layouts/origin/sidebar/sidenav/sidenav.component.d.ts +0 -23
  193. package/modal/modal.module.d.ts +0 -11
  194. package/pretty-box/pretty-box.component.d.ts +0 -24
  195. /package/fields/{fields.common.d.ts → common.d.ts} +0 -0
  196. /package/fields/{remote-autocomplete-field/remote-autocomplete-field.component.d.ts → remote-autocomplete/component.d.ts} +0 -0
  197. /package/fields/{fields.validators.d.ts → validators.d.ts} +0 -0
  198. /package/modal/{modal.service.d.ts → service.d.ts} +0 -0
  199. /package/toast/{toast.service.d.ts → service.d.ts} +0 -0
@@ -1,45 +1,43 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { Component, ViewEncapsulation, ChangeDetectionStrategy, NgModule } from '@angular/core';
3
- import * as i1 from '@kato-lee/material/dialog';
4
- import { MatDialogModule } from '@kato-lee/material/dialog';
5
- import * as i2 from '@kato-lee/material/icon';
6
- import { MatIconModule } from '@kato-lee/material/icon';
7
3
  import * as i3 from '@kato-lee/material/button';
8
4
  import { MatButtonModule } from '@kato-lee/material/button';
5
+ import * as i2 from '@kato-lee/material/icon';
6
+ import { MatIconModule } from '@kato-lee/material/icon';
9
7
  import * as i4 from '@kato-lee/material/divider';
10
8
  import { MatDividerModule } from '@kato-lee/material/divider';
9
+ import * as i1 from '@kato-lee/material/dialog';
10
+ import { MatDialogModule } from '@kato-lee/material/dialog';
11
11
 
12
12
  class TakDismissDialogButtonComponent {
13
13
  constructor(dialogRef) {
14
14
  this.dialogRef = dialogRef;
15
15
  }
16
16
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: TakDismissDialogButtonComponent, deps: [{ token: i1.MatDialogRef }], target: i0.ɵɵFactoryTarget.Component }); }
17
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.3", type: TakDismissDialogButtonComponent, selector: "tak-dismiss-dialog-button", host: { attributes: { "directive": "tak-dialog-title" } }, ngImport: i0, template: `
17
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.3", type: TakDismissDialogButtonComponent, isStandalone: true, selector: "tak-dismiss-dialog-button", host: { attributes: { "directive": "tak-dialog-title" } }, ngImport: i0, template: `
18
18
  <div class="tak-modal__top-container--custom">
19
- <h1 class="tak-modal__top-container--custom--title">
20
- <ng-content></ng-content>
21
- </h1>
19
+ <h1 class="tak-modal__top-container--custom--title"><ng-content /></h1>
22
20
  <button mat-icon-button (click)="dialogRef.close()"><mat-icon>close</mat-icon></button>
23
21
  </div>
24
- <mat-divider></mat-divider>
22
+ <mat-divider />
25
23
  <input style="display: none !important;" cdkFocusInitial />
26
- `, isInline: true, dependencies: [{ kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i3.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i4.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
24
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "ngmodule", type: MatDividerModule }, { kind: "component", type: i4.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "ngmodule", type: MatDialogModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
27
25
  }
28
26
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: TakDismissDialogButtonComponent, decorators: [{
29
27
  type: Component,
30
28
  args: [{
29
+ standalone: true,
30
+ imports: [MatIconModule, MatButtonModule, MatDividerModule, MatDialogModule],
31
31
  selector: 'tak-dismiss-dialog-button',
32
32
  host: {
33
33
  directive: 'tak-dialog-title',
34
34
  },
35
35
  template: `
36
36
  <div class="tak-modal__top-container--custom">
37
- <h1 class="tak-modal__top-container--custom--title">
38
- <ng-content></ng-content>
39
- </h1>
37
+ <h1 class="tak-modal__top-container--custom--title"><ng-content /></h1>
40
38
  <button mat-icon-button (click)="dialogRef.close()"><mat-icon>close</mat-icon></button>
41
39
  </div>
42
- <mat-divider></mat-divider>
40
+ <mat-divider />
43
41
  <input style="display: none !important;" cdkFocusInitial />
44
42
  `,
45
43
  encapsulation: ViewEncapsulation.None,
@@ -48,16 +46,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImpor
48
46
  }], ctorParameters: () => [{ type: i1.MatDialogRef }] });
49
47
 
50
48
  const components = [TakDismissDialogButtonComponent];
49
+ /** @deprecated Use standalone */
51
50
  class TakDialogModule {
52
51
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: TakDialogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
53
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.3", ngImport: i0, type: TakDialogModule, declarations: [TakDismissDialogButtonComponent], imports: [MatIconModule, MatButtonModule, MatDividerModule, MatDialogModule], exports: [TakDismissDialogButtonComponent, MatDialogModule] }); }
54
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: TakDialogModule, imports: [MatIconModule, MatButtonModule, MatDividerModule, MatDialogModule, MatDialogModule] }); }
52
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.3", ngImport: i0, type: TakDialogModule, imports: [TakDismissDialogButtonComponent], exports: [TakDismissDialogButtonComponent, MatDialogModule] }); }
53
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: TakDialogModule, imports: [components, MatDialogModule] }); }
55
54
  }
56
55
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.3", ngImport: i0, type: TakDialogModule, decorators: [{
57
56
  type: NgModule,
58
57
  args: [{
59
- declarations: components,
60
- imports: [MatIconModule, MatButtonModule, MatDividerModule, MatDialogModule],
58
+ imports: [...components],
61
59
  exports: [...components, MatDialogModule],
62
60
  }]
63
61
  }] });
@@ -1 +1 @@
1
- {"version":3,"file":"kato-lee-components-dialogs.mjs","sources":["../../../libraries/components/dialogs/dismiss-dialog-button.component.ts","../../../libraries/components/dialogs/dialogs.module.ts","../../../libraries/components/dialogs/index.ts","../../../libraries/components/dialogs/kato-lee-components-dialogs.ts"],"sourcesContent":["import {\r\n ChangeDetectionStrategy,\r\n Component,\r\n EventEmitter,\r\n Output,\r\n ViewEncapsulation,\r\n} from '@angular/core';\r\nimport { MatDialogRef } from '@kato-lee/material/dialog';\r\n\r\n@Component({\r\n selector: 'tak-dismiss-dialog-button',\r\n host: {\r\n directive: 'tak-dialog-title',\r\n },\r\n template: `\r\n <div class=\"tak-modal__top-container--custom\">\r\n <h1 class=\"tak-modal__top-container--custom--title\">\r\n <ng-content></ng-content>\r\n </h1>\r\n <button mat-icon-button (click)=\"dialogRef.close()\"><mat-icon>close</mat-icon></button>\r\n </div>\r\n <mat-divider></mat-divider>\r\n <input style=\"display: none !important;\" cdkFocusInitial />\r\n `,\r\n encapsulation: ViewEncapsulation.None,\r\n changeDetection: ChangeDetectionStrategy.OnPush,\r\n})\r\nexport class TakDismissDialogButtonComponent {\r\n constructor(public dialogRef: MatDialogRef<TakDismissDialogButtonComponent>) {}\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { TakDismissDialogButtonComponent } from './dismiss-dialog-button.component';\r\nimport { MatButtonModule } from '@kato-lee/material/button';\r\nimport { MatDialogModule } from '@kato-lee/material/dialog';\r\nimport { MatIconModule } from '@kato-lee/material/icon';\r\nimport { MatDividerModule } from '@kato-lee/material/divider';\r\n\r\nconst components = [TakDismissDialogButtonComponent];\r\n\r\n@NgModule({\r\n declarations: components,\r\n imports: [MatIconModule, MatButtonModule, MatDividerModule, MatDialogModule],\r\n exports: [...components, MatDialogModule],\r\n})\r\nexport class TakDialogModule {}\r\n","/*\r\n * Public API Surface of @kato-lee/components/dialogs\r\n */\r\n\r\nexport * from './dialogs.module';\r\nexport * from './dismiss-dialog-button.component';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"kato-lee-components-dialogs.mjs","sources":["../../../libraries/components/dialogs/dismiss-dialog-button.component.ts","../../../libraries/components/dialogs/module.ts","../../../libraries/components/dialogs/index.ts","../../../libraries/components/dialogs/kato-lee-components-dialogs.ts"],"sourcesContent":["import { ChangeDetectionStrategy, ViewEncapsulation, Component } from '@angular/core';\r\nimport { MatDialogRef } from '@kato-lee/material/dialog';\r\nimport { MatButtonModule } from '@kato-lee/material/button';\r\nimport { MatIconModule } from '@kato-lee/material/icon';\r\nimport { MatDividerModule } from '@kato-lee/material/divider';\r\nimport { MatDialogModule } from '@kato-lee/material/dialog';\r\n\r\n@Component({\r\n standalone: true,\r\n imports: [MatIconModule, MatButtonModule, MatDividerModule, MatDialogModule],\r\n selector: 'tak-dismiss-dialog-button',\r\n host: {\r\n directive: 'tak-dialog-title',\r\n },\r\n template: `\r\n <div class=\"tak-modal__top-container--custom\">\r\n <h1 class=\"tak-modal__top-container--custom--title\"><ng-content /></h1>\r\n <button mat-icon-button (click)=\"dialogRef.close()\"><mat-icon>close</mat-icon></button>\r\n </div>\r\n <mat-divider />\r\n <input style=\"display: none !important;\" cdkFocusInitial />\r\n `,\r\n encapsulation: ViewEncapsulation.None,\r\n changeDetection: ChangeDetectionStrategy.OnPush,\r\n})\r\nexport class TakDismissDialogButtonComponent {\r\n constructor(public dialogRef: MatDialogRef<TakDismissDialogButtonComponent>) {}\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { TakDismissDialogButtonComponent } from './dismiss-dialog-button.component';\r\nimport { MatDialogModule } from '@kato-lee/material/dialog';\r\n\r\nconst components = [TakDismissDialogButtonComponent];\r\n\r\n/** @deprecated Use standalone */\r\n@NgModule({\r\n imports: [...components],\r\n exports: [...components, MatDialogModule],\r\n})\r\nexport class TakDialogModule {}\r\n","/*\r\n * Public API Surface of @kato-lee/components/dialogs\r\n */\r\n\r\nexport * from './module';\r\nexport * from './dismiss-dialog-button.component';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}