@sd-angular/core 19.0.0-beta.4 → 19.0.0-beta.40

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 (177) hide show
  1. package/assets/scss/ckeditor5.scss +60 -2
  2. package/assets/scss/core/bootstrap.scss +17 -0
  3. package/assets/scss/core/grid.scss +40 -0
  4. package/assets/scss/sd-core.scss +1 -0
  5. package/components/avatar/index.d.ts +1 -0
  6. package/components/avatar/src/avatar.component.d.ts +15 -0
  7. package/components/badge/src/badge.component.d.ts +77 -19
  8. package/components/button/src/button.component.d.ts +26 -28
  9. package/components/document-builder/index.d.ts +1 -0
  10. package/components/document-builder/src/document-builder.component.d.ts +20 -37
  11. package/components/document-builder/src/document-builder.model.d.ts +11 -10
  12. package/components/document-builder/src/plugins/block-space/block-space.plugin.d.ts +9 -0
  13. package/components/document-builder/src/plugins/ck-comment/ck-comment.plugin.d.ts +43 -0
  14. package/components/document-builder/src/plugins/ck-comment/ck-comment.plugin.model.d.ts +50 -0
  15. package/components/document-builder/src/plugins/heading/heading.plugin.d.ts +5 -0
  16. package/components/document-builder/src/plugins/highlight-range/highlight-range.plugin.d.ts +4 -0
  17. package/components/document-builder/src/plugins/image-custom/image-custom.plugin.d.ts +31 -0
  18. package/components/document-builder/src/plugins/{image-upload.plugin.d.ts → image-upload/image-upload.plugin.d.ts} +0 -4
  19. package/components/document-builder/src/plugins/index.d.ts +11 -5
  20. package/components/document-builder/src/plugins/{page-orientation.plugin.d.ts → page-orientation/page-orientation.plugin.d.ts} +2 -2
  21. package/components/document-builder/src/plugins/paste-handler/filters/bookmark.d.ts +14 -0
  22. package/components/document-builder/src/plugins/paste-handler/filters/br.d.ts +15 -0
  23. package/components/document-builder/src/plugins/paste-handler/filters/image.d.ts +25 -0
  24. package/components/document-builder/src/plugins/paste-handler/filters/list.d.ts +29 -0
  25. package/components/document-builder/src/plugins/paste-handler/filters/parse.d.ts +35 -0
  26. package/components/document-builder/src/plugins/paste-handler/filters/removeboldwrapper.d.ts +15 -0
  27. package/components/document-builder/src/plugins/paste-handler/filters/removegooglesheetstag.d.ts +15 -0
  28. package/components/document-builder/src/plugins/paste-handler/filters/removeinvalidtablewidth.d.ts +15 -0
  29. package/components/document-builder/src/plugins/paste-handler/filters/removemsattributes.d.ts +15 -0
  30. package/components/document-builder/src/plugins/paste-handler/filters/removestyleblock.d.ts +15 -0
  31. package/components/document-builder/src/plugins/paste-handler/filters/removexmlns.d.ts +15 -0
  32. package/components/document-builder/src/plugins/paste-handler/filters/replacemsfootnotes.d.ts +54 -0
  33. package/components/document-builder/src/plugins/paste-handler/filters/replacetabswithinprewithspaces.d.ts +24 -0
  34. package/components/document-builder/src/plugins/paste-handler/filters/space.d.ts +27 -0
  35. package/components/document-builder/src/plugins/paste-handler/filters/table.d.ts +16 -0
  36. package/components/document-builder/src/plugins/paste-handler/filters/utils.d.ts +25 -0
  37. package/components/document-builder/src/plugins/paste-handler/index.d.ts +35 -0
  38. package/components/document-builder/src/plugins/paste-handler/normalizers/googledocsnormalizer.d.ts +31 -0
  39. package/components/document-builder/src/plugins/paste-handler/normalizers/googlesheetsnormalizer.d.ts +31 -0
  40. package/components/document-builder/src/plugins/paste-handler/normalizers/mswordnormalizer.d.ts +29 -0
  41. package/components/document-builder/src/plugins/paste-handler/types.d.ts +30 -0
  42. package/components/document-builder/src/plugins/table-custom/index.d.ts +34 -0
  43. package/components/index.d.ts +3 -0
  44. package/components/mini-editor/index.d.ts +2 -0
  45. package/components/mini-editor/src/mini-editor.component.d.ts +90 -0
  46. package/components/mini-editor/src/mini-editor.model.d.ts +42 -0
  47. package/components/side-drawer/src/side-drawer.component.d.ts +1 -2
  48. package/components/table/src/components/selector-action/action-filter.pipe.d.ts +11 -10
  49. package/components/table/src/directives/index.d.ts +2 -0
  50. package/components/table/src/directives/sd-table-column-filter-def.directive.d.ts +9 -0
  51. package/components/table/src/directives/sticky-shadow.directive.d.ts +17 -0
  52. package/components/table/src/models/table-column.model.d.ts +32 -32
  53. package/components/table/src/models/table-command.model.d.ts +7 -3
  54. package/components/table/src/models/table-item.model.d.ts +5 -3
  55. package/components/table/src/models/table-option-export.model.d.ts +3 -2
  56. package/components/table/src/models/table-option-selector.model.d.ts +11 -10
  57. package/components/table/src/models/table-option.model.d.ts +10 -8
  58. package/components/table/src/services/table-filter/table-filter.model.d.ts +2 -2
  59. package/components/table/src/table.component.d.ts +33 -35
  60. package/components/view/index.d.ts +1 -0
  61. package/components/view/src/view.component.d.ts +16 -0
  62. package/components/workflow/src/models/index.d.ts +1 -0
  63. package/directives/index.d.ts +1 -0
  64. package/directives/src/sd-href.directive.d.ts +9 -0
  65. package/fesm2022/sd-angular-core-components-avatar.mjs +90 -0
  66. package/fesm2022/sd-angular-core-components-avatar.mjs.map +1 -0
  67. package/fesm2022/sd-angular-core-components-badge.mjs +102 -91
  68. package/fesm2022/sd-angular-core-components-badge.mjs.map +1 -1
  69. package/fesm2022/sd-angular-core-components-button.mjs +64 -96
  70. package/fesm2022/sd-angular-core-components-button.mjs.map +1 -1
  71. package/fesm2022/sd-angular-core-components-document-builder.mjs +3860 -963
  72. package/fesm2022/sd-angular-core-components-document-builder.mjs.map +1 -1
  73. package/fesm2022/sd-angular-core-components-history.mjs +1 -1
  74. package/fesm2022/sd-angular-core-components-history.mjs.map +1 -1
  75. package/fesm2022/sd-angular-core-components-import-excel.mjs +1 -1
  76. package/fesm2022/sd-angular-core-components-import-excel.mjs.map +1 -1
  77. package/fesm2022/sd-angular-core-components-mini-editor.mjs +326 -0
  78. package/fesm2022/sd-angular-core-components-mini-editor.mjs.map +1 -0
  79. package/fesm2022/sd-angular-core-components-preview.mjs +1 -1
  80. package/fesm2022/sd-angular-core-components-preview.mjs.map +1 -1
  81. package/fesm2022/sd-angular-core-components-side-drawer.mjs +21 -8
  82. package/fesm2022/sd-angular-core-components-side-drawer.mjs.map +1 -1
  83. package/fesm2022/sd-angular-core-components-tab-router.mjs +1 -1
  84. package/fesm2022/sd-angular-core-components-tab-router.mjs.map +1 -1
  85. package/fesm2022/sd-angular-core-components-table.mjs +724 -472
  86. package/fesm2022/sd-angular-core-components-table.mjs.map +1 -1
  87. package/fesm2022/sd-angular-core-components-upload-file.mjs +1 -1
  88. package/fesm2022/sd-angular-core-components-upload-file.mjs.map +1 -1
  89. package/fesm2022/sd-angular-core-components-view.mjs +45 -0
  90. package/fesm2022/sd-angular-core-components-view.mjs.map +1 -0
  91. package/fesm2022/sd-angular-core-components-workflow.mjs +33 -43
  92. package/fesm2022/sd-angular-core-components-workflow.mjs.map +1 -1
  93. package/fesm2022/sd-angular-core-components.mjs +3 -0
  94. package/fesm2022/sd-angular-core-components.mjs.map +1 -1
  95. package/fesm2022/sd-angular-core-directives.mjs +80 -27
  96. package/fesm2022/sd-angular-core-directives.mjs.map +1 -1
  97. package/fesm2022/sd-angular-core-forms-autocomplete.mjs +211 -357
  98. package/fesm2022/sd-angular-core-forms-autocomplete.mjs.map +1 -1
  99. package/fesm2022/sd-angular-core-forms-date-range.mjs +145 -245
  100. package/fesm2022/sd-angular-core-forms-date-range.mjs.map +1 -1
  101. package/fesm2022/sd-angular-core-forms-date.mjs +137 -271
  102. package/fesm2022/sd-angular-core-forms-date.mjs.map +1 -1
  103. package/fesm2022/sd-angular-core-forms-datetime.mjs +138 -276
  104. package/fesm2022/sd-angular-core-forms-datetime.mjs.map +1 -1
  105. package/fesm2022/sd-angular-core-forms-input-number.mjs +174 -336
  106. package/fesm2022/sd-angular-core-forms-input-number.mjs.map +1 -1
  107. package/fesm2022/sd-angular-core-forms-input.mjs +130 -283
  108. package/fesm2022/sd-angular-core-forms-input.mjs.map +1 -1
  109. package/fesm2022/sd-angular-core-forms-radio.mjs +5 -2
  110. package/fesm2022/sd-angular-core-forms-radio.mjs.map +1 -1
  111. package/fesm2022/sd-angular-core-forms-select.mjs +241 -416
  112. package/fesm2022/sd-angular-core-forms-select.mjs.map +1 -1
  113. package/fesm2022/sd-angular-core-forms-textarea.mjs +133 -226
  114. package/fesm2022/sd-angular-core-forms-textarea.mjs.map +1 -1
  115. package/fesm2022/sd-angular-core-modules-keycloak.mjs +126 -0
  116. package/fesm2022/sd-angular-core-modules-keycloak.mjs.map +1 -0
  117. package/fesm2022/sd-angular-core-modules-layout.mjs +54 -19
  118. package/fesm2022/sd-angular-core-modules-layout.mjs.map +1 -1
  119. package/fesm2022/sd-angular-core-modules.mjs +1 -1
  120. package/fesm2022/sd-angular-core-pipes.mjs +21 -1
  121. package/fesm2022/sd-angular-core-pipes.mjs.map +1 -1
  122. package/fesm2022/sd-angular-core-services-confirm.mjs +2 -2
  123. package/fesm2022/sd-angular-core-services-confirm.mjs.map +1 -1
  124. package/fesm2022/sd-angular-core-services-docx.mjs +173 -0
  125. package/fesm2022/sd-angular-core-services-docx.mjs.map +1 -0
  126. package/fesm2022/sd-angular-core-services-notify.mjs +2 -2
  127. package/fesm2022/sd-angular-core-services-notify.mjs.map +1 -1
  128. package/fesm2022/sd-angular-core-services.mjs +1 -0
  129. package/fesm2022/sd-angular-core-services.mjs.map +1 -1
  130. package/fesm2022/sd-angular-core-utilities-extensions.mjs +10 -6
  131. package/fesm2022/sd-angular-core-utilities-extensions.mjs.map +1 -1
  132. package/fesm2022/sd-angular-core-utilities-models.mjs +15 -1
  133. package/fesm2022/sd-angular-core-utilities-models.mjs.map +1 -1
  134. package/forms/autocomplete/src/autocomplete.component.d.ts +50 -56
  135. package/forms/date/src/date.component.d.ts +41 -45
  136. package/forms/date-range/src/date-range.component.d.ts +28 -33
  137. package/forms/datetime/src/datetime.component.d.ts +41 -45
  138. package/forms/input/src/input.component.d.ts +46 -56
  139. package/forms/input-number/src/input-number.component.d.ts +47 -54
  140. package/forms/select/src/select.component.d.ts +50 -58
  141. package/forms/textarea/src/textarea.component.d.ts +34 -41
  142. package/modules/index.d.ts +1 -1
  143. package/modules/keycloak/index.d.ts +4 -0
  144. package/modules/keycloak/keycloak.configuration.d.ts +11 -0
  145. package/modules/keycloak/keycloak.interceptor.d.ts +2 -0
  146. package/modules/keycloak/keycloak.module.d.ts +18 -0
  147. package/modules/keycloak/keycloak.service.d.ts +14 -0
  148. package/modules/layout/components/sidebar-v1/components/sidebar/sidebar.component.d.ts +1 -0
  149. package/modules/layout/components/sidebar-v1/components/user/user.component.d.ts +5 -2
  150. package/modules/layout/configurations/layout.configuration.d.ts +3 -0
  151. package/modules/layout/services/storage/storage.service.d.ts +1 -0
  152. package/package.json +89 -71
  153. package/pipes/index.d.ts +1 -0
  154. package/pipes/src/empty.pipe.d.ts +7 -0
  155. package/sd-angular-core-19.0.0-beta.40.tgz +0 -0
  156. package/services/confirm/src/lib/confirm.service.d.ts +1 -0
  157. package/services/docx/index.d.ts +1 -0
  158. package/services/docx/src/lib/docx.model.d.ts +9 -0
  159. package/services/docx/src/lib/docx.service.d.ts +13 -0
  160. package/services/docx/src/public-api.d.ts +2 -0
  161. package/services/index.d.ts +1 -0
  162. package/utilities/extensions/src/string.extension.d.ts +2 -0
  163. package/utilities/models/index.d.ts +3 -0
  164. package/utilities/models/src/filter.model.d.ts +14 -2
  165. package/utilities/models/src/icon.model.d.ts +2 -0
  166. package/utilities/models/src/nested-key-of.model.d.ts +5 -0
  167. package/utilities/models/src/pattern.model.d.ts +1 -1
  168. package/utilities/models/src/unwrap-signal.model.d.ts +6 -0
  169. package/components/document-builder/src/plugins/comment.plugin.d.ts +0 -4
  170. package/components/document-builder/src/plugins/table-fit.plugin.d.ts +0 -4
  171. package/fesm2022/sd-angular-core-modules-oidc.mjs +0 -127
  172. package/fesm2022/sd-angular-core-modules-oidc.mjs.map +0 -1
  173. package/modules/oidc/dynamic-sts.loader.d.ts +0 -11
  174. package/modules/oidc/index.d.ts +0 -2
  175. package/modules/oidc/oidc.configuration.d.ts +0 -11
  176. package/modules/oidc/oidc.module.d.ts +0 -14
  177. /package/components/document-builder/src/plugins/{variable.plugin.d.ts → variable/variable.plugin.d.ts} +0 -0
package/package.json CHANGED
@@ -1,20 +1,22 @@
1
1
  {
2
2
  "name": "@sd-angular/core",
3
- "version": "19.0.0-beta.4",
3
+ "version": "19.0.0-beta.40",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0 || ^20.0.0 || ^21.0.0",
6
6
  "@angular/core": "^19.0.0 || ^20.0.0 || ^21.0.0",
7
7
  "@angular/material": "^19.0.0 || ^20.0.0 || ^21.0.0",
8
- "@angular/material-moment-adapter": "^19.0.0 || ^20.0.0 || ^21.0.0",
9
- "angular-auth-oidc-client": "^19.0.0 || ^20.0.0 || ^21.0.0"
8
+ "@angular/material-moment-adapter": "^19.0.0 || ^20.0.0 || ^21.0.0"
10
9
  },
11
10
  "dependencies": {
12
- "tslib": "^2.8.0",
13
11
  "@ckeditor/ckeditor5-angular": "^11.0.0",
12
+ "@omer-go/docx-parser-converter-ts": "^1.0.0",
14
13
  "ckeditor5": "^47.3.0",
15
- "moment": "^2.30.1",
16
14
  "exceljs": "^4.4.0",
17
- "export-to-csv": "^1.4.0"
15
+ "export-to-csv": "^1.4.0",
16
+ "mammoth": "^1.11.0",
17
+ "moment": "^2.30.1",
18
+ "keycloak-js": "^26.0.0",
19
+ "tslib": "^2.8.0"
18
20
  },
19
21
  "sideEffects": false,
20
22
  "module": "fesm2022/sd-angular-core.mjs",
@@ -27,6 +29,10 @@
27
29
  "types": "./index.d.ts",
28
30
  "default": "./fesm2022/sd-angular-core.mjs"
29
31
  },
32
+ "./configurations": {
33
+ "types": "./configurations/index.d.ts",
34
+ "default": "./fesm2022/sd-angular-core-configurations.mjs"
35
+ },
30
36
  "./directives": {
31
37
  "types": "./directives/index.d.ts",
32
38
  "default": "./fesm2022/sd-angular-core-directives.mjs"
@@ -35,10 +41,6 @@
35
41
  "types": "./components/index.d.ts",
36
42
  "default": "./fesm2022/sd-angular-core-components.mjs"
37
43
  },
38
- "./configurations": {
39
- "types": "./configurations/index.d.ts",
40
- "default": "./fesm2022/sd-angular-core-configurations.mjs"
41
- },
42
44
  "./guards": {
43
45
  "types": "./guards/index.d.ts",
44
46
  "default": "./fesm2022/sd-angular-core-guards.mjs"
@@ -71,101 +73,105 @@
71
73
  "types": "./utilities/index.d.ts",
72
74
  "default": "./fesm2022/sd-angular-core-utilities.mjs"
73
75
  },
74
- "./components/badge": {
75
- "types": "./components/badge/index.d.ts",
76
- "default": "./fesm2022/sd-angular-core-components-badge.mjs"
77
- },
78
76
  "./components/anchor": {
79
77
  "types": "./components/anchor/index.d.ts",
80
78
  "default": "./fesm2022/sd-angular-core-components-anchor.mjs"
81
79
  },
80
+ "./components/avatar": {
81
+ "types": "./components/avatar/index.d.ts",
82
+ "default": "./fesm2022/sd-angular-core-components-avatar.mjs"
83
+ },
84
+ "./components/badge": {
85
+ "types": "./components/badge/index.d.ts",
86
+ "default": "./fesm2022/sd-angular-core-components-badge.mjs"
87
+ },
82
88
  "./components/anchor-v2": {
83
89
  "types": "./components/anchor-v2/index.d.ts",
84
90
  "default": "./fesm2022/sd-angular-core-components-anchor-v2.mjs"
85
91
  },
86
- "./components/button": {
87
- "types": "./components/button/index.d.ts",
88
- "default": "./fesm2022/sd-angular-core-components-button.mjs"
89
- },
90
92
  "./components/base": {
91
93
  "types": "./components/base/index.d.ts",
92
94
  "default": "./fesm2022/sd-angular-core-components-base.mjs"
93
95
  },
96
+ "./components/button": {
97
+ "types": "./components/button/index.d.ts",
98
+ "default": "./fesm2022/sd-angular-core-components-button.mjs"
99
+ },
94
100
  "./components/document-builder": {
95
101
  "types": "./components/document-builder/index.d.ts",
96
102
  "default": "./fesm2022/sd-angular-core-components-document-builder.mjs"
97
103
  },
98
- "./components/modal": {
99
- "types": "./components/modal/index.d.ts",
100
- "default": "./fesm2022/sd-angular-core-components-modal.mjs"
104
+ "./components/history": {
105
+ "types": "./components/history/index.d.ts",
106
+ "default": "./fesm2022/sd-angular-core-components-history.mjs"
101
107
  },
102
108
  "./components/import-excel": {
103
109
  "types": "./components/import-excel/index.d.ts",
104
110
  "default": "./fesm2022/sd-angular-core-components-import-excel.mjs"
105
111
  },
106
- "./components/history": {
107
- "types": "./components/history/index.d.ts",
108
- "default": "./fesm2022/sd-angular-core-components-history.mjs"
112
+ "./components/mini-editor": {
113
+ "types": "./components/mini-editor/index.d.ts",
114
+ "default": "./fesm2022/sd-angular-core-components-mini-editor.mjs"
115
+ },
116
+ "./components/modal": {
117
+ "types": "./components/modal/index.d.ts",
118
+ "default": "./fesm2022/sd-angular-core-components-modal.mjs"
109
119
  },
110
120
  "./components/preview": {
111
121
  "types": "./components/preview/index.d.ts",
112
122
  "default": "./fesm2022/sd-angular-core-components-preview.mjs"
113
123
  },
114
- "./components/query-builder": {
115
- "types": "./components/query-builder/index.d.ts",
116
- "default": "./fesm2022/sd-angular-core-components-query-builder.mjs"
117
- },
118
124
  "./components/quick-action": {
119
125
  "types": "./components/quick-action/index.d.ts",
120
126
  "default": "./fesm2022/sd-angular-core-components-quick-action.mjs"
121
127
  },
128
+ "./components/query-builder": {
129
+ "types": "./components/query-builder/index.d.ts",
130
+ "default": "./fesm2022/sd-angular-core-components-query-builder.mjs"
131
+ },
122
132
  "./components/section": {
123
133
  "types": "./components/section/index.d.ts",
124
134
  "default": "./fesm2022/sd-angular-core-components-section.mjs"
125
135
  },
126
- "./components/tab-router": {
127
- "types": "./components/tab-router/index.d.ts",
128
- "default": "./fesm2022/sd-angular-core-components-tab-router.mjs"
129
- },
130
136
  "./components/side-drawer": {
131
137
  "types": "./components/side-drawer/index.d.ts",
132
138
  "default": "./fesm2022/sd-angular-core-components-side-drawer.mjs"
133
139
  },
140
+ "./components/tab-router": {
141
+ "types": "./components/tab-router/index.d.ts",
142
+ "default": "./fesm2022/sd-angular-core-components-tab-router.mjs"
143
+ },
134
144
  "./components/table": {
135
145
  "types": "./components/table/index.d.ts",
136
146
  "default": "./fesm2022/sd-angular-core-components-table.mjs"
137
147
  },
138
- "./components/workflow": {
139
- "types": "./components/workflow/index.d.ts",
140
- "default": "./fesm2022/sd-angular-core-components-workflow.mjs"
141
- },
142
- "./components/upload-file": {
143
- "types": "./components/upload-file/index.d.ts",
144
- "default": "./fesm2022/sd-angular-core-components-upload-file.mjs"
148
+ "./components/view": {
149
+ "types": "./components/view/index.d.ts",
150
+ "default": "./fesm2022/sd-angular-core-components-view.mjs"
145
151
  },
146
152
  "./guards/permission": {
147
153
  "types": "./guards/permission/index.d.ts",
148
154
  "default": "./fesm2022/sd-angular-core-guards-permission.mjs"
149
155
  },
150
- "./forms/autocomplete": {
151
- "types": "./forms/autocomplete/index.d.ts",
152
- "default": "./fesm2022/sd-angular-core-forms-autocomplete.mjs"
156
+ "./forms/checkbox": {
157
+ "types": "./forms/checkbox/index.d.ts",
158
+ "default": "./fesm2022/sd-angular-core-forms-checkbox.mjs"
159
+ },
160
+ "./components/workflow": {
161
+ "types": "./components/workflow/index.d.ts",
162
+ "default": "./fesm2022/sd-angular-core-components-workflow.mjs"
153
163
  },
154
164
  "./forms/chip": {
155
165
  "types": "./forms/chip/index.d.ts",
156
166
  "default": "./fesm2022/sd-angular-core-forms-chip.mjs"
157
167
  },
158
- "./forms/date": {
159
- "types": "./forms/date/index.d.ts",
160
- "default": "./fesm2022/sd-angular-core-forms-date.mjs"
161
- },
162
168
  "./forms/chip-calendar": {
163
169
  "types": "./forms/chip-calendar/index.d.ts",
164
170
  "default": "./fesm2022/sd-angular-core-forms-chip-calendar.mjs"
165
171
  },
166
- "./forms/checkbox": {
167
- "types": "./forms/checkbox/index.d.ts",
168
- "default": "./fesm2022/sd-angular-core-forms-checkbox.mjs"
172
+ "./forms/date": {
173
+ "types": "./forms/date/index.d.ts",
174
+ "default": "./fesm2022/sd-angular-core-forms-date.mjs"
169
175
  },
170
176
  "./forms/date-range": {
171
177
  "types": "./forms/date-range/index.d.ts",
@@ -175,14 +181,18 @@
175
181
  "types": "./forms/datetime/index.d.ts",
176
182
  "default": "./fesm2022/sd-angular-core-forms-datetime.mjs"
177
183
  },
178
- "./forms/input": {
179
- "types": "./forms/input/index.d.ts",
180
- "default": "./fesm2022/sd-angular-core-forms-input.mjs"
181
- },
182
184
  "./forms/directives": {
183
185
  "types": "./forms/directives/index.d.ts",
184
186
  "default": "./fesm2022/sd-angular-core-forms-directives.mjs"
185
187
  },
188
+ "./forms/autocomplete": {
189
+ "types": "./forms/autocomplete/index.d.ts",
190
+ "default": "./fesm2022/sd-angular-core-forms-autocomplete.mjs"
191
+ },
192
+ "./forms/input": {
193
+ "types": "./forms/input/index.d.ts",
194
+ "default": "./fesm2022/sd-angular-core-forms-input.mjs"
195
+ },
186
196
  "./forms/input-number": {
187
197
  "types": "./forms/input-number/index.d.ts",
188
198
  "default": "./fesm2022/sd-angular-core-forms-input-number.mjs"
@@ -195,14 +205,14 @@
195
205
  "types": "./forms/models/index.d.ts",
196
206
  "default": "./fesm2022/sd-angular-core-forms-models.mjs"
197
207
  },
198
- "./forms/select": {
199
- "types": "./forms/select/index.d.ts",
200
- "default": "./fesm2022/sd-angular-core-forms-select.mjs"
201
- },
202
208
  "./forms/radio": {
203
209
  "types": "./forms/radio/index.d.ts",
204
210
  "default": "./fesm2022/sd-angular-core-forms-radio.mjs"
205
211
  },
212
+ "./forms/select": {
213
+ "types": "./forms/select/index.d.ts",
214
+ "default": "./fesm2022/sd-angular-core-forms-select.mjs"
215
+ },
206
216
  "./forms/switch": {
207
217
  "types": "./forms/switch/index.d.ts",
208
218
  "default": "./fesm2022/sd-angular-core-forms-switch.mjs"
@@ -215,6 +225,10 @@
215
225
  "types": "./modules/auth/index.d.ts",
216
226
  "default": "./fesm2022/sd-angular-core-modules-auth.mjs"
217
227
  },
228
+ "./modules/keycloak": {
229
+ "types": "./modules/keycloak/index.d.ts",
230
+ "default": "./fesm2022/sd-angular-core-modules-keycloak.mjs"
231
+ },
218
232
  "./modules/layout": {
219
233
  "types": "./modules/layout/index.d.ts",
220
234
  "default": "./fesm2022/sd-angular-core-modules-layout.mjs"
@@ -223,38 +237,38 @@
223
237
  "types": "./modules/permission/index.d.ts",
224
238
  "default": "./fesm2022/sd-angular-core-modules-permission.mjs"
225
239
  },
226
- "./modules/oidc": {
227
- "types": "./modules/oidc/index.d.ts",
228
- "default": "./fesm2022/sd-angular-core-modules-oidc.mjs"
229
- },
230
240
  "./services/api": {
231
241
  "types": "./services/api/index.d.ts",
232
242
  "default": "./fesm2022/sd-angular-core-services-api.mjs"
233
243
  },
234
- "./services/excel": {
235
- "types": "./services/excel/index.d.ts",
236
- "default": "./fesm2022/sd-angular-core-services-excel.mjs"
244
+ "./services/cache": {
245
+ "types": "./services/cache/index.d.ts",
246
+ "default": "./fesm2022/sd-angular-core-services-cache.mjs"
237
247
  },
238
248
  "./services/confirm": {
239
249
  "types": "./services/confirm/index.d.ts",
240
250
  "default": "./fesm2022/sd-angular-core-services-confirm.mjs"
241
251
  },
242
- "./services/cache": {
243
- "types": "./services/cache/index.d.ts",
244
- "default": "./fesm2022/sd-angular-core-services-cache.mjs"
252
+ "./services/docx": {
253
+ "types": "./services/docx/index.d.ts",
254
+ "default": "./fesm2022/sd-angular-core-services-docx.mjs"
255
+ },
256
+ "./services/excel": {
257
+ "types": "./services/excel/index.d.ts",
258
+ "default": "./fesm2022/sd-angular-core-services-excel.mjs"
245
259
  },
246
260
  "./services/firebase": {
247
261
  "types": "./services/firebase/index.d.ts",
248
262
  "default": "./fesm2022/sd-angular-core-services-firebase.mjs"
249
263
  },
250
- "./services/loading": {
251
- "types": "./services/loading/index.d.ts",
252
- "default": "./fesm2022/sd-angular-core-services-loading.mjs"
253
- },
254
264
  "./services/license": {
255
265
  "types": "./services/license/index.d.ts",
256
266
  "default": "./fesm2022/sd-angular-core-services-license.mjs"
257
267
  },
268
+ "./services/loading": {
269
+ "types": "./services/loading/index.d.ts",
270
+ "default": "./fesm2022/sd-angular-core-services-loading.mjs"
271
+ },
258
272
  "./services/notify": {
259
273
  "types": "./services/notify/index.d.ts",
260
274
  "default": "./fesm2022/sd-angular-core-services-notify.mjs"
@@ -270,6 +284,10 @@
270
284
  "./utilities/models": {
271
285
  "types": "./utilities/models/index.d.ts",
272
286
  "default": "./fesm2022/sd-angular-core-utilities-models.mjs"
287
+ },
288
+ "./components/upload-file": {
289
+ "types": "./components/upload-file/index.d.ts",
290
+ "default": "./fesm2022/sd-angular-core-components-upload-file.mjs"
273
291
  }
274
292
  }
275
293
  }
package/pipes/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './src/format-number.pipe';
2
2
  export * from './src/safe-html.pipe';
3
3
  export * from './src/time-different.pipe';
4
+ export * from './src/empty.pipe';
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SdEmptyPipe implements PipeTransform {
4
+ transform(value: any): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SdEmptyPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<SdEmptyPipe, "sdEmpty", true>;
7
+ }
@@ -10,6 +10,7 @@ export declare class SdConfirmService {
10
10
  noTitle?: string;
11
11
  yesButtonColor?: SdColor;
12
12
  noButtonColor?: SdColor;
13
+ width?: string;
13
14
  }) => Promise<unknown>;
14
15
  withInput: (message?: string, option?: {
15
16
  title?: string;
@@ -0,0 +1 @@
1
+ export * from './src/public-api';
@@ -0,0 +1,9 @@
1
+ export interface SdDocxConvertOptions {
2
+ validateFormat?: boolean;
3
+ validateSize?: boolean;
4
+ maxSizeInMb?: number;
5
+ }
6
+ export interface SdDocxConvertResult {
7
+ html: string;
8
+ messages: string[];
9
+ }
@@ -0,0 +1,13 @@
1
+ import { SdDocxConvertOptions, SdDocxConvertResult } from './docx.model';
2
+ import { SdNotifyService } from '@sd-angular/core/services/notify';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SdDocxService {
5
+ #private;
6
+ private notifyService;
7
+ constructor(notifyService: SdNotifyService);
8
+ open(options?: SdDocxConvertOptions): Promise<SdDocxConvertResult | null>;
9
+ convertToHtml(input: File | Blob | ArrayBuffer, options?: SdDocxConvertOptions): Promise<SdDocxConvertResult | null>;
10
+ convertToHtmlString(input: File | Blob | ArrayBuffer, options?: SdDocxConvertOptions): Promise<string | null>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SdDocxService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<SdDocxService>;
13
+ }
@@ -0,0 +1,2 @@
1
+ export { SdDocxService } from './lib/docx.service';
2
+ export type { SdDocxConvertOptions, SdDocxConvertResult } from './lib/docx.model';
@@ -5,3 +5,4 @@ export * from '@sd-angular/core/services/confirm';
5
5
  export * from '@sd-angular/core/services/api';
6
6
  export * from '@sd-angular/core/services/loading';
7
7
  export * from '@sd-angular/core/services/excel';
8
+ export * from '@sd-angular/core/services/docx';
@@ -2,6 +2,8 @@ export declare const StringUtilities: {
2
2
  REGEX_EMAIL: string;
3
3
  REGEX_PHONE: string;
4
4
  REGEX_PHONE_VN: string;
5
+ REGEX_IDVN_OR_PASSPORT: string;
6
+ REGEX_TIME: string;
5
7
  isValidEmail: (value: any) => boolean;
6
8
  isValidPhone: (value: any) => boolean;
7
9
  isValidCode: (value: any) => boolean;
@@ -1,8 +1,11 @@
1
1
  export * from './src/color.model';
2
2
  export * from './src/size.model';
3
+ export * from './src/icon.model';
3
4
  export * from './src/pattern.model';
4
5
  export * from './src/empty.model';
5
6
  export * from './src/maybe-async.model';
7
+ export * from './src/nested-key-of.model';
8
+ export * from './src/unwrap-signal.model';
6
9
  export * from './src/operator.model';
7
10
  export * from './src/filter.model';
8
11
  export * from './src/order.model';
@@ -1,11 +1,23 @@
1
1
  import { SdOperatorHasData, SdOperatorNoData } from './operator.model';
2
- export type SdFilter<T = any> = SdFilterHasData<T> | SdFilterNoData<T>;
2
+ export type SdFilter<T = any> = SdFilterHasData<T> | SdFilterBetween<T> | SdFilterNoData<T> | SdFilterAndOr<T>;
3
3
  export interface SdFilterHasData<T = any> {
4
4
  field: Extract<keyof T, string>;
5
- operator: SdOperatorHasData;
5
+ operator: Exclude<SdOperatorHasData, 'BETWEEN'>;
6
6
  data: any;
7
7
  }
8
+ export interface SdFilterBetween<T = any> {
9
+ field: Extract<keyof T, string>;
10
+ operator: 'BETWEEN';
11
+ data: {
12
+ from: string | number;
13
+ to: string | number;
14
+ };
15
+ }
8
16
  export interface SdFilterNoData<T = any> {
9
17
  field: Extract<keyof T, string>;
10
18
  operator: SdOperatorNoData;
11
19
  }
20
+ export interface SdFilterAndOr<T = any> {
21
+ operator: 'AND' | 'OR';
22
+ data: SdFilter<T>[];
23
+ }
@@ -0,0 +1,2 @@
1
+ export type MaterialIconFontSet = 'material-icons' | 'material-icons-outlined' | 'material-icons-round' | 'material-icons-sharp' | 'material-symbols-outlined';
2
+ export declare const DefaultMaterialIconFontSet: MaterialIconFontSet;
@@ -0,0 +1,5 @@
1
+ type Primitive = string | number | boolean | null | undefined | Date | Function;
2
+ export type SdNestedKeyOf<ObjectType, Depth extends number[] = []> = Depth['length'] extends 5 ? never : ObjectType extends object ? {
3
+ [Key in keyof ObjectType & string]: ObjectType[Key] extends Primitive ? Key : ObjectType[Key] extends Array<any> ? Key : ObjectType[Key] extends object ? Key | `${Key}.${SdNestedKeyOf<ObjectType[Key], [...Depth, 1]>}` : Key;
4
+ }[keyof ObjectType & string] : string;
5
+ export {};
@@ -1,4 +1,4 @@
1
- export type SdPatternType = 'EMAIL' | 'PHONE' | 'PHONE_VN';
1
+ export type SdPatternType = 'EMAIL' | 'PHONE' | 'PHONE_VN' | 'IDVN_OR_PASSPORT' | 'TIME';
2
2
  export interface SdPatternCommon {
3
3
  type: SdPatternType;
4
4
  name: string;
@@ -0,0 +1,6 @@
1
+ import { InputSignal, InputSignalWithTransform, ModelSignal } from '@angular/core';
2
+ /**
3
+ * Utility Type: Bóc tách kiểu dữ liệu gốc từ Angular Signal Inputs & Models
4
+ */
5
+ export type SdUnwrapSignal<T> = T extends InputSignalWithTransform<any, infer WriteT> ? WriteT : T extends InputSignal<infer ReadT> ? ReadT : T extends ModelSignal<infer ModelT> ? ModelT : T;
6
+ export type SdUnwrapSafe<T> = SdUnwrapSignal<NonNullable<T>>;
@@ -1,4 +0,0 @@
1
- import { Plugin } from 'ckeditor5';
2
- export declare class CommentPlugin extends Plugin {
3
- init(): void;
4
- }
@@ -1,4 +0,0 @@
1
- import { Plugin } from 'ckeditor5';
2
- export declare class TableFitPlugin extends Plugin {
3
- init(): void;
4
- }
@@ -1,127 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { InjectionToken, Inject, Injectable, NgModule } from '@angular/core';
3
- import { CommonModule } from '@angular/common';
4
- import { StsConfigLoader, LogLevel, provideAuth, authInterceptor } from 'angular-auth-oidc-client';
5
- import { from, map } from 'rxjs';
6
- import { provideHttpClient, withInterceptors } from '@angular/common/http';
7
-
8
- const SD_OIDC_CONFIGURATION = new InjectionToken('sd-oidc.configuration');
9
-
10
- class DynamicStsLoader extends StsConfigLoader {
11
- oidcConfiguration;
12
- constructor(oidcConfiguration) {
13
- super();
14
- this.oidcConfiguration = oidcConfiguration;
15
- }
16
- // SỬA LỖI TYPE: Trả về Observable<OpenIdConfiguration[]>
17
- loadConfigs() {
18
- const loaderPromise = this.oidcConfiguration.loadTenantConfig();
19
- // Dùng 'from' chuyển Promise -> Observable
20
- return from(loaderPromise).pipe(map(tenantConfig => {
21
- const authority = `${tenantConfig.url}/realms/${tenantConfig.realm}`;
22
- console.log('Authority:', authority);
23
- console.log('SecureRoutes:', tenantConfig.secureRoutes);
24
- const config = {
25
- authority,
26
- redirectUrl: window.location.origin,
27
- postLogoutRedirectUri: window.location.origin,
28
- clientId: tenantConfig.clientId,
29
- scope: 'openid profile email offline_access',
30
- responseType: 'code',
31
- silentRenew: true, // Tự động Refresh Token
32
- useRefreshToken: true,
33
- ignoreNonceAfterRefresh: true,
34
- renewTimeBeforeTokenExpiresInSeconds: 10,
35
- logLevel: LogLevel.Warn,
36
- // Cập nhật domain API của bạn vào đây để Interceptor tự đính Token
37
- secureRoutes: tenantConfig.secureRoutes?.filter(route => !!route)?.map(route => route.trim()),
38
- };
39
- // Trả về mảng (bắt buộc với bản mới)
40
- return [config];
41
- }));
42
- }
43
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: DynamicStsLoader, deps: [{ token: SD_OIDC_CONFIGURATION }], target: i0.ɵɵFactoryTarget.Injectable });
44
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: DynamicStsLoader });
45
- }
46
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: DynamicStsLoader, decorators: [{
47
- type: Injectable
48
- }], ctorParameters: () => [{ type: undefined, decorators: [{
49
- type: Inject,
50
- args: [SD_OIDC_CONFIGURATION]
51
- }] }] });
52
-
53
- // 5. Module Wrapper
54
- class SdOidcModule {
55
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
56
- static forRoot(options) {
57
- if (options.useFactory) {
58
- return {
59
- ngModule: SdOidcModule,
60
- providers: [
61
- {
62
- provide: SD_OIDC_CONFIGURATION,
63
- useFactory: options.useFactory,
64
- deps: options.deps,
65
- },
66
- // B. Provide Auth Logic (Dùng cú pháp provideAuth mới ngay trong NgModule)
67
- provideAuth({
68
- loader: {
69
- provide: StsConfigLoader,
70
- useClass: DynamicStsLoader,
71
- },
72
- }),
73
- provideHttpClient(withInterceptors([authInterceptor()])),
74
- ],
75
- };
76
- }
77
- if (options.useClass) {
78
- return {
79
- ngModule: SdOidcModule,
80
- providers: [
81
- {
82
- provide: SD_OIDC_CONFIGURATION,
83
- useClass: options.useClass,
84
- },
85
- // B. Provide Auth Logic (Dùng cú pháp provideAuth mới ngay trong NgModule)
86
- provideAuth({
87
- loader: {
88
- provide: StsConfigLoader,
89
- useClass: DynamicStsLoader,
90
- },
91
- }),
92
- provideHttpClient(withInterceptors([authInterceptor()])),
93
- ],
94
- };
95
- }
96
- return {
97
- ngModule: SdOidcModule,
98
- providers: [
99
- // B. Provide Auth Logic (Dùng cú pháp provideAuth mới ngay trong NgModule)
100
- provideAuth({
101
- loader: {
102
- provide: StsConfigLoader,
103
- useClass: DynamicStsLoader,
104
- },
105
- }),
106
- provideHttpClient(withInterceptors([authInterceptor()])),
107
- ],
108
- };
109
- }
110
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SdOidcModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
111
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.17", ngImport: i0, type: SdOidcModule, imports: [CommonModule] });
112
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SdOidcModule, imports: [CommonModule] });
113
- }
114
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SdOidcModule, decorators: [{
115
- type: NgModule,
116
- args: [{
117
- imports: [CommonModule],
118
- exports: [],
119
- }]
120
- }] });
121
-
122
- /**
123
- * Generated bundle index. Do not edit.
124
- */
125
-
126
- export { SD_OIDC_CONFIGURATION, SdOidcModule };
127
- //# sourceMappingURL=sd-angular-core-modules-oidc.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"sd-angular-core-modules-oidc.mjs","sources":["../../../projects/sd-angular/modules/oidc/oidc.configuration.ts","../../../projects/sd-angular/modules/oidc/dynamic-sts.loader.ts","../../../projects/sd-angular/modules/oidc/oidc.module.ts","../../../projects/sd-angular/modules/oidc/sd-angular-core-modules-oidc.ts"],"sourcesContent":["import { InjectionToken } from \"@angular/core\";\r\n\r\nexport interface SdOidcTenantConfig {\r\n url: string;\r\n realm: string;\r\n clientId: string;\r\n // Cập nhật domain API của bạn vào đây để Interceptor tự đính Token, ví dụ: ['https://dev.api.com']\r\n secureRoutes: string[];\r\n}\r\n\r\nexport interface ISdOidcConfiguration {\r\n loadTenantConfig: () => Promise<SdOidcTenantConfig>;\r\n}\r\n\r\nexport const SD_OIDC_CONFIGURATION = new InjectionToken<ISdOidcConfiguration>('sd-oidc.configuration');","import { Inject, Injectable } from '@angular/core';\r\nimport { LogLevel, OpenIdConfiguration, StsConfigLoader } from 'angular-auth-oidc-client';\r\nimport { from, map, Observable } from 'rxjs';\r\nimport { ISdOidcConfiguration, SD_OIDC_CONFIGURATION } from './oidc.configuration';\r\n\r\n@Injectable()\r\nexport class DynamicStsLoader extends StsConfigLoader {\r\n constructor(@Inject(SD_OIDC_CONFIGURATION) private oidcConfiguration: ISdOidcConfiguration) {\r\n super();\r\n }\r\n\r\n // SỬA LỖI TYPE: Trả về Observable<OpenIdConfiguration[]>\r\n override loadConfigs(): Observable<OpenIdConfiguration[]> {\r\n const loaderPromise = this.oidcConfiguration.loadTenantConfig();\r\n\r\n // Dùng 'from' chuyển Promise -> Observable\r\n return from(loaderPromise).pipe(\r\n map(tenantConfig => {\r\n const authority = `${tenantConfig.url}/realms/${tenantConfig.realm}`;\r\n console.log('Authority:', authority);\r\n console.log('SecureRoutes:', tenantConfig.secureRoutes);\r\n const config: OpenIdConfiguration = {\r\n authority,\r\n redirectUrl: window.location.origin,\r\n postLogoutRedirectUri: window.location.origin,\r\n clientId: tenantConfig.clientId,\r\n scope: 'openid profile email offline_access',\r\n responseType: 'code',\r\n silentRenew: true, // Tự động Refresh Token\r\n useRefreshToken: true,\r\n ignoreNonceAfterRefresh: true,\r\n renewTimeBeforeTokenExpiresInSeconds: 10,\r\n logLevel: LogLevel.Warn,\r\n // Cập nhật domain API của bạn vào đây để Interceptor tự đính Token\r\n secureRoutes: tenantConfig.secureRoutes?.filter(route => !!route)?.map(route => route.trim()),\r\n };\r\n // Trả về mảng (bắt buộc với bản mới)\r\n return [config];\r\n })\r\n );\r\n }\r\n}\r\n","import { CommonModule } from '@angular/common';\r\nimport { ModuleWithProviders, NgModule, Type } from '@angular/core';\r\nimport { authInterceptor, provideAuth, StsConfigLoader } from 'angular-auth-oidc-client';\r\nimport { DynamicStsLoader } from './dynamic-sts.loader';\r\nimport { provideHttpClient, withInterceptors } from '@angular/common/http';\r\nimport { ISdOidcConfiguration, SD_OIDC_CONFIGURATION } from './oidc.configuration';\r\n\r\n// 5. Module Wrapper\r\n@NgModule({\r\n imports: [CommonModule],\r\n exports: [],\r\n})\r\nexport class SdOidcModule {\r\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\r\n static forRoot(options: {\r\n useClass?: Type<ISdOidcConfiguration>;\r\n useFactory?: (...args: any[]) => ISdOidcConfiguration;\r\n deps?: any[];\r\n }): ModuleWithProviders<SdOidcModule> {\r\n if (options.useFactory) {\r\n return {\r\n ngModule: SdOidcModule,\r\n providers: [\r\n {\r\n provide: SD_OIDC_CONFIGURATION,\r\n useFactory: options.useFactory,\r\n deps: options.deps,\r\n },\r\n // B. Provide Auth Logic (Dùng cú pháp provideAuth mới ngay trong NgModule)\r\n provideAuth({\r\n loader: {\r\n provide: StsConfigLoader,\r\n useClass: DynamicStsLoader,\r\n },\r\n }),\r\n provideHttpClient(withInterceptors([authInterceptor()])),\r\n ],\r\n };\r\n }\r\n if (options.useClass) {\r\n return {\r\n ngModule: SdOidcModule,\r\n providers: [\r\n {\r\n provide: SD_OIDC_CONFIGURATION,\r\n useClass: options.useClass,\r\n },\r\n // B. Provide Auth Logic (Dùng cú pháp provideAuth mới ngay trong NgModule)\r\n provideAuth({\r\n loader: {\r\n provide: StsConfigLoader,\r\n useClass: DynamicStsLoader,\r\n },\r\n }),\r\n provideHttpClient(withInterceptors([authInterceptor()])),\r\n ],\r\n };\r\n }\r\n return {\r\n ngModule: SdOidcModule,\r\n providers: [\r\n // B. Provide Auth Logic (Dùng cú pháp provideAuth mới ngay trong NgModule)\r\n provideAuth({\r\n loader: {\r\n provide: StsConfigLoader,\r\n useClass: DynamicStsLoader,\r\n },\r\n }),\r\n provideHttpClient(withInterceptors([authInterceptor()])),\r\n ],\r\n };\r\n }\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -1,11 +0,0 @@
1
- import { OpenIdConfiguration, StsConfigLoader } from 'angular-auth-oidc-client';
2
- import { Observable } from 'rxjs';
3
- import { ISdOidcConfiguration } from './oidc.configuration';
4
- import * as i0 from "@angular/core";
5
- export declare class DynamicStsLoader extends StsConfigLoader {
6
- private oidcConfiguration;
7
- constructor(oidcConfiguration: ISdOidcConfiguration);
8
- loadConfigs(): Observable<OpenIdConfiguration[]>;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<DynamicStsLoader, never>;
10
- static ɵprov: i0.ɵɵInjectableDeclaration<DynamicStsLoader>;
11
- }
@@ -1,2 +0,0 @@
1
- export * from './oidc.configuration';
2
- export * from './oidc.module';
@@ -1,11 +0,0 @@
1
- import { InjectionToken } from "@angular/core";
2
- export interface SdOidcTenantConfig {
3
- url: string;
4
- realm: string;
5
- clientId: string;
6
- secureRoutes: string[];
7
- }
8
- export interface ISdOidcConfiguration {
9
- loadTenantConfig: () => Promise<SdOidcTenantConfig>;
10
- }
11
- export declare const SD_OIDC_CONFIGURATION: InjectionToken<ISdOidcConfiguration>;