@bootkit/ng0 0.0.0-alpha.6 → 0.0.0-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/backdrop/index.d.ts +8 -0
- package/components/sidenav/index.d.ts +46 -0
- package/fesm2022/bootkit-ng0-components-backdrop.mjs +41 -0
- package/fesm2022/bootkit-ng0-components-backdrop.mjs.map +1 -0
- package/fesm2022/bootkit-ng0-components-sidenav.mjs +132 -0
- package/fesm2022/bootkit-ng0-components-sidenav.mjs.map +1 -0
- package/fesm2022/bootkit-ng0-components-table.mjs +2 -2
- package/fesm2022/bootkit-ng0-components-table.mjs.map +1 -1
- package/fesm2022/bootkit-ng0-form.mjs +2 -28
- package/fesm2022/bootkit-ng0-form.mjs.map +1 -1
- package/fesm2022/bootkit-ng0-localization.mjs +185 -79
- package/fesm2022/bootkit-ng0-localization.mjs.map +1 -1
- package/fesm2022/bootkit-ng0-platform-browser.mjs +51 -0
- package/fesm2022/bootkit-ng0-platform-browser.mjs.map +1 -0
- package/form/index.d.ts +1 -9
- package/localization/index.d.ts +83 -28
- package/package.json +25 -13
- package/platform/browser/index.d.ts +22 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Injectable, input, HostListener, Directive } from '@angular/core';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
|
+
|
|
5
|
+
class ClipboardService {
|
|
6
|
+
_writeSubject = new Subject;
|
|
7
|
+
write = this._writeSubject.asObservable();
|
|
8
|
+
constructor() { }
|
|
9
|
+
writeText(text) {
|
|
10
|
+
window.navigator.clipboard.writeText(text);
|
|
11
|
+
this._writeSubject.next(text);
|
|
12
|
+
}
|
|
13
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ClipboardService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ClipboardService, providedIn: 'root' });
|
|
15
|
+
}
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ClipboardService, decorators: [{
|
|
17
|
+
type: Injectable,
|
|
18
|
+
args: [{
|
|
19
|
+
providedIn: 'root'
|
|
20
|
+
}]
|
|
21
|
+
}], ctorParameters: () => [] });
|
|
22
|
+
|
|
23
|
+
class ClipboardCopyDirective {
|
|
24
|
+
clipboardService;
|
|
25
|
+
value = input(undefined, { alias: 'ng0-clipboard-copy' });
|
|
26
|
+
constructor(clipboardService) {
|
|
27
|
+
this.clipboardService = clipboardService;
|
|
28
|
+
}
|
|
29
|
+
_onHostClick() {
|
|
30
|
+
this.clipboardService.writeText(this.value());
|
|
31
|
+
}
|
|
32
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ClipboardCopyDirective, deps: [{ token: ClipboardService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
33
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.6", type: ClipboardCopyDirective, isStandalone: true, selector: "[ng0-clipboard-copy]", inputs: { value: { classPropertyName: "value", publicName: "ng0-clipboard-copy", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "click": "_onHostClick()" } }, ngImport: i0 });
|
|
34
|
+
}
|
|
35
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: ClipboardCopyDirective, decorators: [{
|
|
36
|
+
type: Directive,
|
|
37
|
+
args: [{
|
|
38
|
+
selector: '[ng0-clipboard-copy]',
|
|
39
|
+
standalone: true
|
|
40
|
+
}]
|
|
41
|
+
}], ctorParameters: () => [{ type: ClipboardService }], propDecorators: { _onHostClick: [{
|
|
42
|
+
type: HostListener,
|
|
43
|
+
args: ['click']
|
|
44
|
+
}] } });
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Generated bundle index. Do not edit.
|
|
48
|
+
*/
|
|
49
|
+
|
|
50
|
+
export { ClipboardCopyDirective, ClipboardService };
|
|
51
|
+
//# sourceMappingURL=bootkit-ng0-platform-browser.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bootkit-ng0-platform-browser.mjs","sources":["../../../projects/ng0/platform/browser/clipboard/clipboard.service.ts","../../../projects/ng0/platform/browser/clipboard/clipboard-copy.directive.ts","../../../projects/ng0/platform/browser/bootkit-ng0-platform-browser.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\nimport { Subject } from 'rxjs';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class ClipboardService {\r\n private _writeSubject = new Subject<any>;\r\n public readonly write = this._writeSubject.asObservable();\r\n\r\n constructor() { }\r\n\r\n public writeText(text: string) {\r\n window.navigator.clipboard.writeText(text);\r\n this._writeSubject.next(text);\r\n }\r\n}\r\n","import { Directive, HostListener, input } from '@angular/core';\r\nimport { ClipboardService } from './clipboard.service';\r\n\r\n@Directive({\r\n selector: '[ng0-clipboard-copy]',\r\n standalone: true\r\n})\r\nexport class ClipboardCopyDirective {\r\n public value = input<string>(undefined, {alias: 'ng0-clipboard-copy'})\r\n\r\n constructor(private clipboardService: ClipboardService) {\r\n }\r\n\r\n \r\n\r\n @HostListener('click') private _onHostClick() {\r\n this.clipboardService.writeText(this.value()!);\r\n }\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1.ClipboardService"],"mappings":";;;;MAMa,gBAAgB,CAAA;IACnB,aAAa,GAAG,IAAI,OAAY;AACxB,IAAA,KAAK,GAAG,IAAI,CAAC,aAAa,CAAC,YAAY,EAAE;AAEzD,IAAA,WAAA,GAAA;AAEO,IAAA,SAAS,CAAC,IAAY,EAAA;QAC3B,MAAM,CAAC,SAAS,CAAC,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC;AAC1C,QAAA,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC;;uGARpB,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAhB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gBAAgB,cAFf,MAAM,EAAA,CAAA;;2FAEP,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAH5B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCEY,sBAAsB,CAAA;AAGb,IAAA,gBAAA;IAFb,KAAK,GAAG,KAAK,CAAS,SAAS,EAAE,EAAC,KAAK,EAAE,oBAAoB,EAAC,CAAC;AAEtE,IAAA,WAAA,CAAoB,gBAAkC,EAAA;QAAlC,IAAgB,CAAA,gBAAA,GAAhB,gBAAgB;;IAKL,YAAY,GAAA;QACzC,IAAI,CAAC,gBAAgB,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,EAAG,CAAC;;uGATrC,sBAAsB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAAA,gBAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAAtB,sBAAsB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,MAAA,EAAA,EAAA,KAAA,EAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,oBAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,OAAA,EAAA,gBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAAtB,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAJlC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,sBAAsB;AAChC,oBAAA,UAAU,EAAE;AACb,iBAAA;kFASgC,YAAY,EAAA,CAAA;sBAA1C,YAAY;uBAAC,OAAO;;;ACfvB;;AAEG;;;;"}
|
package/form/index.d.ts
CHANGED
|
@@ -49,14 +49,6 @@ declare class FocusDirective implements OnInit, OnChanges {
|
|
|
49
49
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FocusDirective, "[ng0Focus]", ["ng0Focus"], { "focusOnLoad": { "alias": "focusOnLoad"; "required": false; }; "focusWhen": { "alias": "focusWhen"; "required": false; }; }, {}, never, never, true, never>;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
declare class DigitsOnlyDirective {
|
|
53
|
-
private elementRef;
|
|
54
|
-
constructor(elementRef: ElementRef);
|
|
55
|
-
private onKeyDown;
|
|
56
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DigitsOnlyDirective, never>;
|
|
57
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DigitsOnlyDirective, "[iscDigitsOnly]", ["iscDigitsOnly"], {}, {}, never, never, true, never>;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
52
|
declare class NumberDirective implements ControlValueAccessor {
|
|
61
53
|
private el;
|
|
62
54
|
private renderer;
|
|
@@ -92,4 +84,4 @@ declare class NumberDirective implements ControlValueAccessor {
|
|
|
92
84
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NumberDirective, "[ng0Number]", never, { "minFractionDigits": { "alias": "minFractionDigits"; "required": false; "isSignal": true; }; "maxFractionDigits": { "alias": "maxFractionDigits"; "required": false; "isSignal": true; }; "useGrouping": { "alias": "useGrouping"; "required": false; "isSignal": true; }; "numberType": { "alias": "numberType"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
93
85
|
}
|
|
94
86
|
|
|
95
|
-
export { CustomValidatorDirective,
|
|
87
|
+
export { CustomValidatorDirective, EqualWithValidatorDirective, FocusDirective, NumberDirective, UrlValidatorDirective, ValidationModule, equalWithValidator };
|
package/localization/index.d.ts
CHANGED
|
@@ -53,7 +53,9 @@ declare class LocalizationService {
|
|
|
53
53
|
private _changeSubject;
|
|
54
54
|
readonly change: rxjs.Observable<LocaleChangeEvent>;
|
|
55
55
|
constructor();
|
|
56
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* Adds a Locale
|
|
58
|
+
*/
|
|
57
59
|
add(locale: Locale): void;
|
|
58
60
|
/** Adds an array of Locales to this LocaleProvider */
|
|
59
61
|
add(locales: Locale[]): void;
|
|
@@ -91,16 +93,20 @@ declare class Locale {
|
|
|
91
93
|
/**
|
|
92
94
|
* Translates a key in the dictionary
|
|
93
95
|
* @param key The key to look up
|
|
94
|
-
* @
|
|
96
|
+
* @param fallbackValue
|
|
97
|
+
* @returns The translated string or the fallbackValue if not found
|
|
95
98
|
*/
|
|
96
|
-
translate(key: string): string;
|
|
99
|
+
translate(key: string, fallbackValue?: string): string | undefined;
|
|
97
100
|
/**
|
|
98
101
|
* Translates an enum value
|
|
99
102
|
* @param enumName The name of the enum
|
|
100
103
|
* @param enumValue The value of the enum to translate
|
|
104
|
+
* @param nullValueKey
|
|
105
|
+
* @param returnEnumAsFallback
|
|
106
|
+
* @param fallbackKey
|
|
101
107
|
* @returns The translated string or the enum value itself if not found
|
|
102
108
|
*/
|
|
103
|
-
translateEnum(enumName: string, enumValue:
|
|
109
|
+
translateEnum(enumName: string, enumValue: string | number | null | undefined, returnEnumAsFallback?: boolean): string | undefined;
|
|
104
110
|
/**
|
|
105
111
|
* Translates a form validation error
|
|
106
112
|
* @param errorKey The key of the error to translate
|
|
@@ -128,51 +134,100 @@ declare class Locale {
|
|
|
128
134
|
* @param date Date string or timestamp
|
|
129
135
|
* @returns Formatted date string based on the locale
|
|
130
136
|
*/
|
|
131
|
-
formatDate(date: string | number, format
|
|
137
|
+
formatDate(date: Date | string | number, format?: string): string;
|
|
132
138
|
}
|
|
133
139
|
|
|
134
140
|
declare class TranslatePipe implements PipeTransform {
|
|
135
|
-
private
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
constructor(localizationService: LocalizationService);
|
|
139
|
-
transform(dictionaryKey: string, ...args: unknown[]): string;
|
|
141
|
+
private _ls;
|
|
142
|
+
constructor(_ls: LocalizationService);
|
|
143
|
+
transform(dictionaryKey: string): string | undefined;
|
|
140
144
|
static ɵfac: i0.ɵɵFactoryDeclaration<TranslatePipe, never>;
|
|
141
145
|
static ɵpipe: i0.ɵɵPipeDeclaration<TranslatePipe, "ng0Translate", true>;
|
|
142
146
|
}
|
|
143
147
|
|
|
144
|
-
declare class
|
|
145
|
-
private
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
148
|
+
declare class TranslateEnumPipe implements PipeTransform {
|
|
149
|
+
private _ls;
|
|
150
|
+
constructor(_ls: LocalizationService);
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @param enumValue
|
|
154
|
+
* @param enumName
|
|
155
|
+
* @param nullValueKey
|
|
156
|
+
* @param returnEnumAsFallback
|
|
157
|
+
* @param fallbackKey
|
|
158
|
+
* @returns
|
|
159
|
+
*/
|
|
160
|
+
transform(enumValue: string | number | null | undefined, enumName: string, returnEnumAsFallback?: boolean): any;
|
|
161
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TranslateEnumPipe, never>;
|
|
162
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TranslateEnumPipe, "ng0TranslateEnum", true>;
|
|
152
163
|
}
|
|
153
164
|
|
|
154
|
-
declare class
|
|
165
|
+
declare class TranslateBooleanPipe implements PipeTransform {
|
|
155
166
|
private localeProvider;
|
|
156
167
|
constructor(localeProvider: LocalizationService);
|
|
157
|
-
transform(value: any, falseKey
|
|
158
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
159
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<
|
|
168
|
+
transform(value: any, falseKey?: string, trueKey?: string): any;
|
|
169
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TranslateBooleanPipe, never>;
|
|
170
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TranslateBooleanPipe, "ng0TranslateBool", true>;
|
|
160
171
|
}
|
|
161
172
|
|
|
162
173
|
declare class DatePipe implements PipeTransform {
|
|
163
|
-
private
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
transform(value: number | string): string;
|
|
174
|
+
private _ls;
|
|
175
|
+
constructor(_ls: LocalizationService);
|
|
176
|
+
transform(value: Date | string | number, format?: string): string | undefined;
|
|
167
177
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePipe, never>;
|
|
168
178
|
static ɵpipe: i0.ɵɵPipeDeclaration<DatePipe, "ng0Date", true>;
|
|
169
179
|
}
|
|
170
180
|
|
|
171
181
|
declare class LocalizationModule {
|
|
172
182
|
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizationModule, never>;
|
|
173
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LocalizationModule, never, [typeof i1.CommonModule, typeof TranslatePipe, typeof
|
|
183
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LocalizationModule, never, [typeof i1.CommonModule, typeof TranslatePipe, typeof TranslateEnumPipe, typeof TranslateBooleanPipe, typeof DatePipe], [typeof TranslatePipe, typeof TranslateEnumPipe, typeof TranslateBooleanPipe, typeof DatePipe]>;
|
|
174
184
|
static ɵinj: i0.ɵɵInjectorDeclaration<LocalizationModule>;
|
|
175
185
|
}
|
|
176
186
|
|
|
177
|
-
|
|
187
|
+
declare class LocalizePipe implements PipeTransform {
|
|
188
|
+
private _ls;
|
|
189
|
+
constructor(_ls: LocalizationService);
|
|
190
|
+
transform(dictionaryKey: string): string | undefined;
|
|
191
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizePipe, never>;
|
|
192
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<LocalizePipe, "ng0Localize", true>;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
declare class LocalizeBooleanPipe implements PipeTransform {
|
|
196
|
+
private _ls;
|
|
197
|
+
constructor(_ls: LocalizationService);
|
|
198
|
+
transform(value: any, falseKey: string | undefined, trueKey: 'false'): string | undefined;
|
|
199
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizeBooleanPipe, never>;
|
|
200
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<LocalizeBooleanPipe, "ng0LocalizeBool", true>;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
declare class LocalizeEnumPipe implements PipeTransform {
|
|
204
|
+
private _ls;
|
|
205
|
+
private _recompute;
|
|
206
|
+
private _value?;
|
|
207
|
+
constructor(_ls: LocalizationService);
|
|
208
|
+
/**
|
|
209
|
+
*
|
|
210
|
+
* @param enumValue
|
|
211
|
+
* @param enumName
|
|
212
|
+
* @param nullValueKey
|
|
213
|
+
* @param returnEnumAsFallback
|
|
214
|
+
* @param fallbackKey
|
|
215
|
+
* @returns
|
|
216
|
+
*/
|
|
217
|
+
transform(enumValue: string | number | null | undefined, enumName: string, returnEnumAsFallback?: boolean): any;
|
|
218
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizeEnumPipe, never>;
|
|
219
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<LocalizeEnumPipe, "ng0LocalizeEnum", true>;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
declare class LocalizeDatePipe implements PipeTransform {
|
|
223
|
+
private _ls;
|
|
224
|
+
private _value?;
|
|
225
|
+
private _recompute;
|
|
226
|
+
constructor(_ls: LocalizationService);
|
|
227
|
+
transform(value: number | string, format?: string): string | undefined;
|
|
228
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizeDatePipe, never>;
|
|
229
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<LocalizeDatePipe, "ng0LocalizeDate", true>;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
export { DatePipe, LOCALE, Locale, LocalizationModule, LocalizationService, LocalizeBooleanPipe, LocalizeDatePipe, LocalizeEnumPipe, LocalizePipe, TranslateBooleanPipe, TranslateEnumPipe, TranslatePipe };
|
|
178
233
|
export type { LocaleChangeEvent, TranslatedValidationError };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bootkit/ng0",
|
|
3
|
-
"version": "0.0.0-alpha.
|
|
3
|
+
"version": "0.0.0-alpha.8",
|
|
4
4
|
"description": "Angular+Bootstrap Component Library",
|
|
5
5
|
"homepage": "https://bootkitlib.github.io/",
|
|
6
6
|
"author": "BootKit",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"types": "./common/index.d.ts",
|
|
40
40
|
"default": "./fesm2022/bootkit-ng0-common.mjs"
|
|
41
41
|
},
|
|
42
|
-
"./data": {
|
|
43
|
-
"types": "./data/index.d.ts",
|
|
44
|
-
"default": "./fesm2022/bootkit-ng0-data.mjs"
|
|
45
|
-
},
|
|
46
42
|
"./file": {
|
|
47
43
|
"types": "./file/index.d.ts",
|
|
48
44
|
"default": "./fesm2022/bootkit-ng0-file.mjs"
|
|
49
45
|
},
|
|
46
|
+
"./data": {
|
|
47
|
+
"types": "./data/index.d.ts",
|
|
48
|
+
"default": "./fesm2022/bootkit-ng0-data.mjs"
|
|
49
|
+
},
|
|
50
50
|
"./http": {
|
|
51
51
|
"types": "./http/index.d.ts",
|
|
52
52
|
"default": "./fesm2022/bootkit-ng0-http.mjs"
|
|
@@ -59,18 +59,22 @@
|
|
|
59
59
|
"types": "./localization/index.d.ts",
|
|
60
60
|
"default": "./fesm2022/bootkit-ng0-localization.mjs"
|
|
61
61
|
},
|
|
62
|
-
"./script": {
|
|
63
|
-
"types": "./script/index.d.ts",
|
|
64
|
-
"default": "./fesm2022/bootkit-ng0-script.mjs"
|
|
65
|
-
},
|
|
66
62
|
"./security": {
|
|
67
63
|
"types": "./security/index.d.ts",
|
|
68
64
|
"default": "./fesm2022/bootkit-ng0-security.mjs"
|
|
69
65
|
},
|
|
66
|
+
"./script": {
|
|
67
|
+
"types": "./script/index.d.ts",
|
|
68
|
+
"default": "./fesm2022/bootkit-ng0-script.mjs"
|
|
69
|
+
},
|
|
70
70
|
"./components/accordion": {
|
|
71
71
|
"types": "./components/accordion/index.d.ts",
|
|
72
72
|
"default": "./fesm2022/bootkit-ng0-components-accordion.mjs"
|
|
73
73
|
},
|
|
74
|
+
"./components/backdrop": {
|
|
75
|
+
"types": "./components/backdrop/index.d.ts",
|
|
76
|
+
"default": "./fesm2022/bootkit-ng0-components-backdrop.mjs"
|
|
77
|
+
},
|
|
74
78
|
"./components/card": {
|
|
75
79
|
"types": "./components/card/index.d.ts",
|
|
76
80
|
"default": "./fesm2022/bootkit-ng0-components-card.mjs"
|
|
@@ -95,14 +99,14 @@
|
|
|
95
99
|
"types": "./components/form-field/index.d.ts",
|
|
96
100
|
"default": "./fesm2022/bootkit-ng0-components-form-field.mjs"
|
|
97
101
|
},
|
|
98
|
-
"./components/modal": {
|
|
99
|
-
"types": "./components/modal/index.d.ts",
|
|
100
|
-
"default": "./fesm2022/bootkit-ng0-components-modal.mjs"
|
|
101
|
-
},
|
|
102
102
|
"./components/nav": {
|
|
103
103
|
"types": "./components/nav/index.d.ts",
|
|
104
104
|
"default": "./fesm2022/bootkit-ng0-components-nav.mjs"
|
|
105
105
|
},
|
|
106
|
+
"./components/modal": {
|
|
107
|
+
"types": "./components/modal/index.d.ts",
|
|
108
|
+
"default": "./fesm2022/bootkit-ng0-components-modal.mjs"
|
|
109
|
+
},
|
|
106
110
|
"./components/offcanvas": {
|
|
107
111
|
"types": "./components/offcanvas/index.d.ts",
|
|
108
112
|
"default": "./fesm2022/bootkit-ng0-components-offcanvas.mjs"
|
|
@@ -119,6 +123,10 @@
|
|
|
119
123
|
"types": "./components/popover/index.d.ts",
|
|
120
124
|
"default": "./fesm2022/bootkit-ng0-components-popover.mjs"
|
|
121
125
|
},
|
|
126
|
+
"./components/sidenav": {
|
|
127
|
+
"types": "./components/sidenav/index.d.ts",
|
|
128
|
+
"default": "./fesm2022/bootkit-ng0-components-sidenav.mjs"
|
|
129
|
+
},
|
|
122
130
|
"./components/stepper": {
|
|
123
131
|
"types": "./components/stepper/index.d.ts",
|
|
124
132
|
"default": "./fesm2022/bootkit-ng0-components-stepper.mjs"
|
|
@@ -142,6 +150,10 @@
|
|
|
142
150
|
"./localization/locales": {
|
|
143
151
|
"types": "./localization/locales/index.d.ts",
|
|
144
152
|
"default": "./fesm2022/bootkit-ng0-localization-locales.mjs"
|
|
153
|
+
},
|
|
154
|
+
"./platform/browser": {
|
|
155
|
+
"types": "./platform/browser/index.d.ts",
|
|
156
|
+
"default": "./fesm2022/bootkit-ng0-platform-browser.mjs"
|
|
145
157
|
}
|
|
146
158
|
}
|
|
147
159
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as rxjs from 'rxjs';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
|
|
4
|
+
declare class ClipboardService {
|
|
5
|
+
private _writeSubject;
|
|
6
|
+
readonly write: rxjs.Observable<any>;
|
|
7
|
+
constructor();
|
|
8
|
+
writeText(text: string): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ClipboardService>;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
declare class ClipboardCopyDirective {
|
|
14
|
+
private clipboardService;
|
|
15
|
+
value: i0.InputSignal<string | undefined>;
|
|
16
|
+
constructor(clipboardService: ClipboardService);
|
|
17
|
+
private _onHostClick;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardCopyDirective, never>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ClipboardCopyDirective, "[ng0-clipboard-copy]", never, { "value": { "alias": "ng0-clipboard-copy"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export { ClipboardCopyDirective, ClipboardService };
|