@sd-angular/core 19.0.0-beta.59 → 19.0.0-beta.60
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.
|
@@ -52,14 +52,12 @@ class SdAvatar {
|
|
|
52
52
|
this.#imageError.set(true);
|
|
53
53
|
}
|
|
54
54
|
#getInitials = (name) => {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
.toUpperCase()
|
|
62
|
-
.substring(0, 2) || '');
|
|
55
|
+
const words = name.trim().split(' ').filter(Boolean);
|
|
56
|
+
if (!words.length)
|
|
57
|
+
return '';
|
|
58
|
+
if (words.length === 1)
|
|
59
|
+
return words[0][0].toUpperCase();
|
|
60
|
+
return (words[0][0] + words[words.length - 1][0]).toUpperCase();
|
|
63
61
|
};
|
|
64
62
|
#generateColor = (name) => {
|
|
65
63
|
const colors = [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sd-angular-core-components-avatar.mjs","sources":["../../../projects/sd-angular/components/avatar/src/avatar.component.ts","../../../projects/sd-angular/components/avatar/src/avatar.component.html","../../../projects/sd-angular/components/avatar/sd-angular-core-components-avatar.ts"],"sourcesContent":["import { CommonModule } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, computed, effect, input, signal } from '@angular/core';\n\n@Component({\n selector: 'sd-avatar',\n standalone: true,\n imports: [CommonModule],\n templateUrl: './avatar.component.html',\n styleUrls: ['./avatar.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class SdAvatar {\n /**\n * The source string to be used for the avatar.\n * - If it matches a URL pattern, an image is displayed.\n * - If it is a string representing a name, initials and a colored background are generated.\n * - If undefined, it falls back to a neutral ? initial.\n */\n readonly src = input.required<string | undefined | null>();\n readonly size = input<number>(32);\n\n readonly #imageError = signal<boolean>(false);\n\n constructor() {\n // Reset image error state whenever src changes\n effect(() => {\n this.src();\n this.#imageError.set(false);\n });\n }\n\n readonly isUrl = computed(() => {\n // If image has failed to load, treat it as a non-url to fallback to initials using the literal URL text\n if (this.#imageError()) {\n return false;\n }\n const val = this.src() || '';\n const urlPattern = /^(http|https|data:image|\\/)/;\n return urlPattern.test(val);\n });\n\n readonly bgColor = computed(() => {\n if (this.isUrl()) {\n return 'transparent';\n }\n const val = this.src() || '';\n if (!val) {\n return '#bdc3c7';\n }\n return this.#generateColor(val);\n });\n\n readonly initials = computed(() => {\n if (this.isUrl()) {\n return '';\n }\n const val = this.src() || '';\n if (!val) {\n return '?';\n }\n return this.#getInitials(val);\n });\n\n handleError() {\n this.#imageError.set(true);\n }\n\n #getInitials = (name: string): string => {\n
|
|
1
|
+
{"version":3,"file":"sd-angular-core-components-avatar.mjs","sources":["../../../projects/sd-angular/components/avatar/src/avatar.component.ts","../../../projects/sd-angular/components/avatar/src/avatar.component.html","../../../projects/sd-angular/components/avatar/sd-angular-core-components-avatar.ts"],"sourcesContent":["import { CommonModule } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, computed, effect, input, signal } from '@angular/core';\n\n@Component({\n selector: 'sd-avatar',\n standalone: true,\n imports: [CommonModule],\n templateUrl: './avatar.component.html',\n styleUrls: ['./avatar.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class SdAvatar {\n /**\n * The source string to be used for the avatar.\n * - If it matches a URL pattern, an image is displayed.\n * - If it is a string representing a name, initials and a colored background are generated.\n * - If undefined, it falls back to a neutral ? initial.\n */\n readonly src = input.required<string | undefined | null>();\n readonly size = input<number>(32);\n\n readonly #imageError = signal<boolean>(false);\n\n constructor() {\n // Reset image error state whenever src changes\n effect(() => {\n this.src();\n this.#imageError.set(false);\n });\n }\n\n readonly isUrl = computed(() => {\n // If image has failed to load, treat it as a non-url to fallback to initials using the literal URL text\n if (this.#imageError()) {\n return false;\n }\n const val = this.src() || '';\n const urlPattern = /^(http|https|data:image|\\/)/;\n return urlPattern.test(val);\n });\n\n readonly bgColor = computed(() => {\n if (this.isUrl()) {\n return 'transparent';\n }\n const val = this.src() || '';\n if (!val) {\n return '#bdc3c7';\n }\n return this.#generateColor(val);\n });\n\n readonly initials = computed(() => {\n if (this.isUrl()) {\n return '';\n }\n const val = this.src() || '';\n if (!val) {\n return '?';\n }\n return this.#getInitials(val);\n });\n\n handleError() {\n this.#imageError.set(true);\n }\n\n #getInitials = (name: string): string => {\n const words = name.trim().split(' ').filter(Boolean);\n if (!words.length) return '';\n if (words.length === 1) return words[0][0].toUpperCase();\n return (words[0][0] + words[words.length - 1][0]).toUpperCase();\n };\n\n #generateColor = (name: string): string => {\n const colors = [\n '#1abc9c',\n '#2ecc71',\n '#3498db',\n '#9b59b6',\n '#34495e',\n '#16a085',\n '#27ae60',\n '#2980b9',\n '#8e44ad',\n '#2c3e50',\n '#f1c40f',\n '#e67e22',\n '#e74c3c',\n '#95a5a6',\n '#f39c12',\n '#d35400',\n '#c0392b',\n '#bdc3c7',\n '#7f8c8d',\n ];\n let hash = 0;\n for (let i = 0; i < name.length; i++) {\n hash = name.charCodeAt(i) + ((hash << 5) - hash);\n }\n return colors[Math.abs(hash) % colors.length];\n };\n}\n","<div class=\"sd-avatar\" [style.width.px]=\"size()\" [style.height.px]=\"size()\" [style.line-height.px]=\"size()\" [style.backgroundColor]=\"bgColor()\">\n @if (isUrl()) {\n <img [src]=\"src()\" (error)=\"handleError()\" alt=\"avatar\" />\n } @else {\n <span class=\"sd-avatar-text\" [style.fontSize.px]=\"size() / 2.5\">\n {{ initials() }}\n </span>\n }\n</div>\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;MAWa,QAAQ,CAAA;AACnB;;;;;AAKG;AACM,IAAA,GAAG,GAAG,KAAK,CAAC,QAAQ,EAA6B;AACjD,IAAA,IAAI,GAAG,KAAK,CAAS,EAAE,CAAC;AAExB,IAAA,WAAW,GAAG,MAAM,CAAU,KAAK,CAAC;AAE7C,IAAA,WAAA,GAAA;;QAEE,MAAM,CAAC,MAAK;YACV,IAAI,CAAC,GAAG,EAAE;AACV,YAAA,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC;AAC7B,QAAA,CAAC,CAAC;IACJ;AAES,IAAA,KAAK,GAAG,QAAQ,CAAC,MAAK;;AAE7B,QAAA,IAAI,IAAI,CAAC,WAAW,EAAE,EAAE;AACtB,YAAA,OAAO,KAAK;QACd;QACA,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,EAAE,IAAI,EAAE;QAC5B,MAAM,UAAU,GAAG,6BAA6B;AAChD,QAAA,OAAO,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC;AAC7B,IAAA,CAAC,CAAC;AAEO,IAAA,OAAO,GAAG,QAAQ,CAAC,MAAK;AAC/B,QAAA,IAAI,IAAI,CAAC,KAAK,EAAE,EAAE;AAChB,YAAA,OAAO,aAAa;QACtB;QACA,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,EAAE,IAAI,EAAE;QAC5B,IAAI,CAAC,GAAG,EAAE;AACR,YAAA,OAAO,SAAS;QAClB;AACA,QAAA,OAAO,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC;AACjC,IAAA,CAAC,CAAC;AAEO,IAAA,QAAQ,GAAG,QAAQ,CAAC,MAAK;AAChC,QAAA,IAAI,IAAI,CAAC,KAAK,EAAE,EAAE;AAChB,YAAA,OAAO,EAAE;QACX;QACA,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,EAAE,IAAI,EAAE;QAC5B,IAAI,CAAC,GAAG,EAAE;AACR,YAAA,OAAO,GAAG;QACZ;AACA,QAAA,OAAO,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC;AAC/B,IAAA,CAAC,CAAC;IAEF,WAAW,GAAA;AACT,QAAA,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,IAAI,CAAC;IAC5B;AAEA,IAAA,YAAY,GAAG,CAAC,IAAY,KAAY;AACtC,QAAA,MAAM,KAAK,GAAG,IAAI,CAAC,IAAI,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC;QACpD,IAAI,CAAC,KAAK,CAAC,MAAM;AAAE,YAAA,OAAO,EAAE;AAC5B,QAAA,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC;YAAE,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE;QACxD,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,EAAE;AACjE,IAAA,CAAC;AAED,IAAA,cAAc,GAAG,CAAC,IAAY,KAAY;AACxC,QAAA,MAAM,MAAM,GAAG;YACb,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;YACT,SAAS;SACV;QACD,IAAI,IAAI,GAAG,CAAC;AACZ,QAAA,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;AACpC,YAAA,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;QAClD;AACA,QAAA,OAAO,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC;AAC/C,IAAA,CAAC;wGA1FU,QAAQ,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;4FAAR,QAAQ,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,EAAA,GAAA,EAAA,EAAA,iBAAA,EAAA,KAAA,EAAA,UAAA,EAAA,KAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,IAAA,EAAA,EAAA,iBAAA,EAAA,MAAA,EAAA,UAAA,EAAA,MAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECXrB,gYASA,EAAA,MAAA,EAAA,CAAA,iQAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDHY,YAAY,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;4FAKX,QAAQ,EAAA,UAAA,EAAA,CAAA;kBARpB,SAAS;+BACE,WAAW,EAAA,UAAA,EACT,IAAI,EAAA,OAAA,EACP,CAAC,YAAY,CAAC,EAAA,eAAA,EAGN,uBAAuB,CAAC,MAAM,EAAA,QAAA,EAAA,gYAAA,EAAA,MAAA,EAAA,CAAA,iQAAA,CAAA,EAAA;;;AETjD;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sd-angular/core",
|
|
3
|
-
"version": "19.0.0-beta.
|
|
3
|
+
"version": "19.0.0-beta.60",
|
|
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",
|
|
@@ -30,17 +30,17 @@
|
|
|
30
30
|
"types": "./index.d.ts",
|
|
31
31
|
"default": "./fesm2022/sd-angular-core.mjs"
|
|
32
32
|
},
|
|
33
|
-
"./
|
|
34
|
-
"types": "./
|
|
35
|
-
"default": "./fesm2022/sd-angular-core-
|
|
33
|
+
"./directives": {
|
|
34
|
+
"types": "./directives/index.d.ts",
|
|
35
|
+
"default": "./fesm2022/sd-angular-core-directives.mjs"
|
|
36
36
|
},
|
|
37
37
|
"./configurations": {
|
|
38
38
|
"types": "./configurations/index.d.ts",
|
|
39
39
|
"default": "./fesm2022/sd-angular-core-configurations.mjs"
|
|
40
40
|
},
|
|
41
|
-
"./
|
|
42
|
-
"types": "./
|
|
43
|
-
"default": "./fesm2022/sd-angular-core-
|
|
41
|
+
"./components": {
|
|
42
|
+
"types": "./components/index.d.ts",
|
|
43
|
+
"default": "./fesm2022/sd-angular-core-components.mjs"
|
|
44
44
|
},
|
|
45
45
|
"./forms": {
|
|
46
46
|
"types": "./forms/index.d.ts",
|
|
@@ -74,6 +74,10 @@
|
|
|
74
74
|
"types": "./utilities/index.d.ts",
|
|
75
75
|
"default": "./fesm2022/sd-angular-core-utilities.mjs"
|
|
76
76
|
},
|
|
77
|
+
"./components/avatar": {
|
|
78
|
+
"types": "./components/avatar/index.d.ts",
|
|
79
|
+
"default": "./fesm2022/sd-angular-core-components-avatar.mjs"
|
|
80
|
+
},
|
|
77
81
|
"./components/anchor": {
|
|
78
82
|
"types": "./components/anchor/index.d.ts",
|
|
79
83
|
"default": "./fesm2022/sd-angular-core-components-anchor.mjs"
|
|
@@ -82,18 +86,10 @@
|
|
|
82
86
|
"types": "./components/anchor-v2/index.d.ts",
|
|
83
87
|
"default": "./fesm2022/sd-angular-core-components-anchor-v2.mjs"
|
|
84
88
|
},
|
|
85
|
-
"./components/avatar": {
|
|
86
|
-
"types": "./components/avatar/index.d.ts",
|
|
87
|
-
"default": "./fesm2022/sd-angular-core-components-avatar.mjs"
|
|
88
|
-
},
|
|
89
89
|
"./components/badge": {
|
|
90
90
|
"types": "./components/badge/index.d.ts",
|
|
91
91
|
"default": "./fesm2022/sd-angular-core-components-badge.mjs"
|
|
92
92
|
},
|
|
93
|
-
"./components/base": {
|
|
94
|
-
"types": "./components/base/index.d.ts",
|
|
95
|
-
"default": "./fesm2022/sd-angular-core-components-base.mjs"
|
|
96
|
-
},
|
|
97
93
|
"./components/button": {
|
|
98
94
|
"types": "./components/button/index.d.ts",
|
|
99
95
|
"default": "./fesm2022/sd-angular-core-components-button.mjs"
|
|
@@ -106,6 +102,10 @@
|
|
|
106
102
|
"types": "./components/document-builder/index.d.ts",
|
|
107
103
|
"default": "./fesm2022/sd-angular-core-components-document-builder.mjs"
|
|
108
104
|
},
|
|
105
|
+
"./components/base": {
|
|
106
|
+
"types": "./components/base/index.d.ts",
|
|
107
|
+
"default": "./fesm2022/sd-angular-core-components-base.mjs"
|
|
108
|
+
},
|
|
109
109
|
"./components/history": {
|
|
110
110
|
"types": "./components/history/index.d.ts",
|
|
111
111
|
"default": "./fesm2022/sd-angular-core-components-history.mjs"
|
|
@@ -122,6 +122,10 @@
|
|
|
122
122
|
"types": "./components/modal/index.d.ts",
|
|
123
123
|
"default": "./fesm2022/sd-angular-core-components-modal.mjs"
|
|
124
124
|
},
|
|
125
|
+
"./components/preview": {
|
|
126
|
+
"types": "./components/preview/index.d.ts",
|
|
127
|
+
"default": "./fesm2022/sd-angular-core-components-preview.mjs"
|
|
128
|
+
},
|
|
125
129
|
"./components/query-builder": {
|
|
126
130
|
"types": "./components/query-builder/index.d.ts",
|
|
127
131
|
"default": "./fesm2022/sd-angular-core-components-query-builder.mjs"
|
|
@@ -130,18 +134,6 @@
|
|
|
130
134
|
"types": "./components/quick-action/index.d.ts",
|
|
131
135
|
"default": "./fesm2022/sd-angular-core-components-quick-action.mjs"
|
|
132
136
|
},
|
|
133
|
-
"./components/preview": {
|
|
134
|
-
"types": "./components/preview/index.d.ts",
|
|
135
|
-
"default": "./fesm2022/sd-angular-core-components-preview.mjs"
|
|
136
|
-
},
|
|
137
|
-
"./components/section": {
|
|
138
|
-
"types": "./components/section/index.d.ts",
|
|
139
|
-
"default": "./fesm2022/sd-angular-core-components-section.mjs"
|
|
140
|
-
},
|
|
141
|
-
"./components/side-drawer": {
|
|
142
|
-
"types": "./components/side-drawer/index.d.ts",
|
|
143
|
-
"default": "./fesm2022/sd-angular-core-components-side-drawer.mjs"
|
|
144
|
-
},
|
|
145
137
|
"./components/tab-router": {
|
|
146
138
|
"types": "./components/tab-router/index.d.ts",
|
|
147
139
|
"default": "./fesm2022/sd-angular-core-components-tab-router.mjs"
|
|
@@ -154,18 +146,30 @@
|
|
|
154
146
|
"types": "./components/upload-file/index.d.ts",
|
|
155
147
|
"default": "./fesm2022/sd-angular-core-components-upload-file.mjs"
|
|
156
148
|
},
|
|
157
|
-
"./forms/autocomplete": {
|
|
158
|
-
"types": "./forms/autocomplete/index.d.ts",
|
|
159
|
-
"default": "./fesm2022/sd-angular-core-forms-autocomplete.mjs"
|
|
160
|
-
},
|
|
161
149
|
"./components/workflow": {
|
|
162
150
|
"types": "./components/workflow/index.d.ts",
|
|
163
151
|
"default": "./fesm2022/sd-angular-core-components-workflow.mjs"
|
|
164
152
|
},
|
|
153
|
+
"./components/section": {
|
|
154
|
+
"types": "./components/section/index.d.ts",
|
|
155
|
+
"default": "./fesm2022/sd-angular-core-components-section.mjs"
|
|
156
|
+
},
|
|
157
|
+
"./components/view": {
|
|
158
|
+
"types": "./components/view/index.d.ts",
|
|
159
|
+
"default": "./fesm2022/sd-angular-core-components-view.mjs"
|
|
160
|
+
},
|
|
165
161
|
"./forms/checkbox": {
|
|
166
162
|
"types": "./forms/checkbox/index.d.ts",
|
|
167
163
|
"default": "./fesm2022/sd-angular-core-forms-checkbox.mjs"
|
|
168
164
|
},
|
|
165
|
+
"./forms/autocomplete": {
|
|
166
|
+
"types": "./forms/autocomplete/index.d.ts",
|
|
167
|
+
"default": "./fesm2022/sd-angular-core-forms-autocomplete.mjs"
|
|
168
|
+
},
|
|
169
|
+
"./forms/chip-calendar": {
|
|
170
|
+
"types": "./forms/chip-calendar/index.d.ts",
|
|
171
|
+
"default": "./fesm2022/sd-angular-core-forms-chip-calendar.mjs"
|
|
172
|
+
},
|
|
169
173
|
"./forms/chip": {
|
|
170
174
|
"types": "./forms/chip/index.d.ts",
|
|
171
175
|
"default": "./fesm2022/sd-angular-core-forms-chip.mjs"
|
|
@@ -174,14 +178,6 @@
|
|
|
174
178
|
"types": "./forms/date/index.d.ts",
|
|
175
179
|
"default": "./fesm2022/sd-angular-core-forms-date.mjs"
|
|
176
180
|
},
|
|
177
|
-
"./forms/chip-calendar": {
|
|
178
|
-
"types": "./forms/chip-calendar/index.d.ts",
|
|
179
|
-
"default": "./fesm2022/sd-angular-core-forms-chip-calendar.mjs"
|
|
180
|
-
},
|
|
181
|
-
"./forms/datetime": {
|
|
182
|
-
"types": "./forms/datetime/index.d.ts",
|
|
183
|
-
"default": "./fesm2022/sd-angular-core-forms-datetime.mjs"
|
|
184
|
-
},
|
|
185
181
|
"./forms/date-range": {
|
|
186
182
|
"types": "./forms/date-range/index.d.ts",
|
|
187
183
|
"default": "./fesm2022/sd-angular-core-forms-date-range.mjs"
|
|
@@ -190,6 +186,10 @@
|
|
|
190
186
|
"types": "./forms/directives/index.d.ts",
|
|
191
187
|
"default": "./fesm2022/sd-angular-core-forms-directives.mjs"
|
|
192
188
|
},
|
|
189
|
+
"./forms/datetime": {
|
|
190
|
+
"types": "./forms/datetime/index.d.ts",
|
|
191
|
+
"default": "./fesm2022/sd-angular-core-forms-datetime.mjs"
|
|
192
|
+
},
|
|
193
193
|
"./forms/input": {
|
|
194
194
|
"types": "./forms/input/index.d.ts",
|
|
195
195
|
"default": "./fesm2022/sd-angular-core-forms-input.mjs"
|
|
@@ -198,14 +198,14 @@
|
|
|
198
198
|
"types": "./forms/input-number/index.d.ts",
|
|
199
199
|
"default": "./fesm2022/sd-angular-core-forms-input-number.mjs"
|
|
200
200
|
},
|
|
201
|
-
"./forms/label": {
|
|
202
|
-
"types": "./forms/label/index.d.ts",
|
|
203
|
-
"default": "./fesm2022/sd-angular-core-forms-label.mjs"
|
|
204
|
-
},
|
|
205
201
|
"./forms/models": {
|
|
206
202
|
"types": "./forms/models/index.d.ts",
|
|
207
203
|
"default": "./fesm2022/sd-angular-core-forms-models.mjs"
|
|
208
204
|
},
|
|
205
|
+
"./forms/label": {
|
|
206
|
+
"types": "./forms/label/index.d.ts",
|
|
207
|
+
"default": "./fesm2022/sd-angular-core-forms-label.mjs"
|
|
208
|
+
},
|
|
209
209
|
"./forms/radio": {
|
|
210
210
|
"types": "./forms/radio/index.d.ts",
|
|
211
211
|
"default": "./fesm2022/sd-angular-core-forms-radio.mjs"
|
|
@@ -234,18 +234,22 @@
|
|
|
234
234
|
"types": "./modules/keycloak/index.d.ts",
|
|
235
235
|
"default": "./fesm2022/sd-angular-core-modules-keycloak.mjs"
|
|
236
236
|
},
|
|
237
|
-
"./modules/layout": {
|
|
238
|
-
"types": "./modules/layout/index.d.ts",
|
|
239
|
-
"default": "./fesm2022/sd-angular-core-modules-layout.mjs"
|
|
240
|
-
},
|
|
241
237
|
"./modules/permission": {
|
|
242
238
|
"types": "./modules/permission/index.d.ts",
|
|
243
239
|
"default": "./fesm2022/sd-angular-core-modules-permission.mjs"
|
|
244
240
|
},
|
|
241
|
+
"./modules/layout": {
|
|
242
|
+
"types": "./modules/layout/index.d.ts",
|
|
243
|
+
"default": "./fesm2022/sd-angular-core-modules-layout.mjs"
|
|
244
|
+
},
|
|
245
245
|
"./services/api": {
|
|
246
246
|
"types": "./services/api/index.d.ts",
|
|
247
247
|
"default": "./fesm2022/sd-angular-core-services-api.mjs"
|
|
248
248
|
},
|
|
249
|
+
"./services/docx": {
|
|
250
|
+
"types": "./services/docx/index.d.ts",
|
|
251
|
+
"default": "./fesm2022/sd-angular-core-services-docx.mjs"
|
|
252
|
+
},
|
|
249
253
|
"./services/cache": {
|
|
250
254
|
"types": "./services/cache/index.d.ts",
|
|
251
255
|
"default": "./fesm2022/sd-angular-core-services-cache.mjs"
|
|
@@ -254,18 +258,14 @@
|
|
|
254
258
|
"types": "./services/confirm/index.d.ts",
|
|
255
259
|
"default": "./fesm2022/sd-angular-core-services-confirm.mjs"
|
|
256
260
|
},
|
|
257
|
-
"./services/
|
|
258
|
-
"types": "./services/
|
|
259
|
-
"default": "./fesm2022/sd-angular-core-services-
|
|
261
|
+
"./services/excel": {
|
|
262
|
+
"types": "./services/excel/index.d.ts",
|
|
263
|
+
"default": "./fesm2022/sd-angular-core-services-excel.mjs"
|
|
260
264
|
},
|
|
261
265
|
"./services/firebase": {
|
|
262
266
|
"types": "./services/firebase/index.d.ts",
|
|
263
267
|
"default": "./fesm2022/sd-angular-core-services-firebase.mjs"
|
|
264
268
|
},
|
|
265
|
-
"./services/excel": {
|
|
266
|
-
"types": "./services/excel/index.d.ts",
|
|
267
|
-
"default": "./fesm2022/sd-angular-core-services-excel.mjs"
|
|
268
|
-
},
|
|
269
269
|
"./services/license": {
|
|
270
270
|
"types": "./services/license/index.d.ts",
|
|
271
271
|
"default": "./fesm2022/sd-angular-core-services-license.mjs"
|
|
@@ -290,9 +290,9 @@
|
|
|
290
290
|
"types": "./utilities/models/index.d.ts",
|
|
291
291
|
"default": "./fesm2022/sd-angular-core-utilities-models.mjs"
|
|
292
292
|
},
|
|
293
|
-
"./components/
|
|
294
|
-
"types": "./components/
|
|
295
|
-
"default": "./fesm2022/sd-angular-core-components-
|
|
293
|
+
"./components/side-drawer": {
|
|
294
|
+
"types": "./components/side-drawer/index.d.ts",
|
|
295
|
+
"default": "./fesm2022/sd-angular-core-components-side-drawer.mjs"
|
|
296
296
|
}
|
|
297
297
|
}
|
|
298
298
|
}
|
|
Binary file
|
|
Binary file
|