@oiz/stzh-components-angular 3.0.0-beta1
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/README.md +130 -0
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
- package/esm2022/lib/stencil-generated/boolean-value-accessor.mjs +38 -0
- package/esm2022/lib/stencil-generated/index.mjs +126 -0
- package/esm2022/lib/stencil-generated/number-value-accessor.mjs +40 -0
- package/esm2022/lib/stencil-generated/proxies.mjs +2999 -0
- package/esm2022/lib/stencil-generated/select-value-accessor.mjs +35 -0
- package/esm2022/lib/stencil-generated/text-value-accessor.mjs +35 -0
- package/esm2022/lib/stencil-generated/value-accessor.mjs +40 -0
- package/esm2022/oiz-stzh-components-angular.mjs +5 -0
- package/esm2022/public-api.mjs +11 -0
- package/esm2022/stzh-components-angular.module.mjs +48 -0
- package/fesm2022/oiz-stzh-components-angular.mjs +3402 -0
- package/fesm2022/oiz-stzh-components-angular.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -0
- package/lib/stencil-generated/boolean-value-accessor.d.ts +9 -0
- package/lib/stencil-generated/index.d.ts +2 -0
- package/lib/stencil-generated/number-value-accessor.d.ts +9 -0
- package/lib/stencil-generated/proxies.d.ts +1938 -0
- package/lib/stencil-generated/select-value-accessor.d.ts +8 -0
- package/lib/stencil-generated/text-value-accessor.d.ts +8 -0
- package/lib/stencil-generated/value-accessor.d.ts +18 -0
- package/package.json +32 -0
- package/public-api.d.ts +7 -0
- package/stzh-components-angular.module.d.ts +11 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { ValueAccessor } from './value-accessor';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SelectValueAccessor extends ValueAccessor {
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectValueAccessor, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SelectValueAccessor, "stzh-radiogroup, stzh-dropdown, stzh-checkboxgroup", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { ValueAccessor } from './value-accessor';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TextValueAccessor extends ValueAccessor {
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextValueAccessor, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextValueAccessor, "stzh-input:not([type=number]):not([stzhAhvNumber]), stzh-datepicker, stzh-calendar, stzh-saptcha, stzh-timepicker, stzh-monthyearpicker", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ValueAccessor implements ControlValueAccessor {
|
|
5
|
+
protected el: ElementRef;
|
|
6
|
+
private onChange;
|
|
7
|
+
private onTouched;
|
|
8
|
+
protected lastValue: any;
|
|
9
|
+
constructor(el: ElementRef);
|
|
10
|
+
writeValue(value: any): void;
|
|
11
|
+
handleChangeEvent(value: any): void;
|
|
12
|
+
_handleBlurEvent(): void;
|
|
13
|
+
registerOnChange(fn: (value: any) => void): void;
|
|
14
|
+
registerOnTouched(fn: () => void): void;
|
|
15
|
+
setDisabledState(isDisabled: boolean): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValueAccessor, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueAccessor, never, never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@oiz/stzh-components-angular",
|
|
3
|
+
"version": "3.0.0-beta1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Angular component wrappers for @oiz/stzh-components",
|
|
6
|
+
"homepage": "https://designsystem.stadt-zuerich.ch",
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"tslib": "^2.3.0"
|
|
9
|
+
},
|
|
10
|
+
"peerDependencies": {
|
|
11
|
+
"@angular/common": ">=16.0.0",
|
|
12
|
+
"@angular/core": ">=16.0.0",
|
|
13
|
+
"@oiz/stzh-components": "latest"
|
|
14
|
+
},
|
|
15
|
+
"sideEffects": false,
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": "^18.10.0 || ^20.9.0"
|
|
18
|
+
},
|
|
19
|
+
"module": "fesm2022/oiz-stzh-components-angular.mjs",
|
|
20
|
+
"typings": "index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
"./package.json": {
|
|
23
|
+
"default": "./package.json"
|
|
24
|
+
},
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./index.d.ts",
|
|
27
|
+
"esm2022": "./esm2022/oiz-stzh-components-angular.mjs",
|
|
28
|
+
"esm": "./esm2022/oiz-stzh-components-angular.mjs",
|
|
29
|
+
"default": "./fesm2022/oiz-stzh-components-angular.mjs"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './stzh-components-angular.module';
|
|
2
|
+
export { DIRECTIVES } from './lib/stencil-generated';
|
|
3
|
+
export * from './lib/stencil-generated/proxies';
|
|
4
|
+
export * from './lib/stencil-generated/boolean-value-accessor';
|
|
5
|
+
export * from './lib/stencil-generated/number-value-accessor';
|
|
6
|
+
export * from './lib/stencil-generated/select-value-accessor';
|
|
7
|
+
export * from './lib/stencil-generated/text-value-accessor';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./lib/stencil-generated/proxies";
|
|
3
|
+
import * as i2 from "./lib/stencil-generated/boolean-value-accessor";
|
|
4
|
+
import * as i3 from "./lib/stencil-generated/number-value-accessor";
|
|
5
|
+
import * as i4 from "./lib/stencil-generated/select-value-accessor";
|
|
6
|
+
import * as i5 from "./lib/stencil-generated/text-value-accessor";
|
|
7
|
+
export declare class StzhComponentsAngularModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StzhComponentsAngularModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StzhComponentsAngularModule, [typeof i1.StzhAccordion, typeof i1.StzhAccordionItem, typeof i1.StzhActions, typeof i1.StzhActionset, typeof i1.StzhAmount, typeof i1.StzhAnchornav, typeof i1.StzhAppointments, typeof i1.StzhArchivelist, typeof i1.StzhAudio, typeof i1.StzhBadge, typeof i1.StzhBanner, typeof i1.StzhBreadcrumb, typeof i1.StzhButton, typeof i1.StzhButtongroup, typeof i1.StzhCalendar, typeof i1.StzhCard, typeof i1.StzhCardNavigation, typeof i1.StzhCardSearchresult, typeof i1.StzhCardlist, typeof i1.StzhCarousel, typeof i1.StzhCell, typeof i1.StzhChart, typeof i1.StzhCheckbox, typeof i1.StzhCheckboxgroup, typeof i1.StzhChip, typeof i1.StzhChipSelect, typeof i1.StzhClamp, typeof i1.StzhContact, typeof i1.StzhContainer, typeof i1.StzhContent, typeof i1.StzhCspace, typeof i1.StzhCta, typeof i1.StzhDatalist, typeof i1.StzhDatalistItem, typeof i1.StzhDatamessagelist, typeof i1.StzhDatamessagelistItem, typeof i1.StzhDatatable, typeof i1.StzhDatepicker, typeof i1.StzhDetails, typeof i1.StzhDialog, typeof i1.StzhDisturber, typeof i1.StzhDropdown, typeof i1.StzhEditor, typeof i1.StzhEventinfo, typeof i1.StzhFieldset, typeof i1.StzhFigure, typeof i1.StzhFlyingfocus, typeof i1.StzhFooter, typeof i1.StzhGallery, typeof i1.StzhGhettobox, typeof i1.StzhHeader, typeof i1.StzhHeading, typeof i1.StzhHr, typeof i1.StzhHspace, typeof i1.StzhIcon, typeof i1.StzhIframe, typeof i1.StzhImagecomparison, typeof i1.StzhInput, typeof i1.StzhInvert, typeof i1.StzhLink, typeof i1.StzhList, typeof i1.StzhListItem, typeof i1.StzhLoader, typeof i1.StzhLoadingbar, typeof i1.StzhMenu, typeof i1.StzhMenuItem, typeof i1.StzhMessage, typeof i1.StzhMicrositeTeaserlist, typeof i1.StzhMonthyearpicker, typeof i1.StzhOlmap, typeof i1.StzhOverlay, typeof i1.StzhPageSkiplinks, typeof i1.StzhPagebottom, typeof i1.StzhPagecontent, typeof i1.StzhPagetitle, typeof i1.StzhPagetitleHero, typeof i1.StzhPagination, typeof i1.StzhPanorama, typeof i1.StzhPopover, typeof i1.StzhPrint, typeof i1.StzhProgressbar, typeof i1.StzhProgressbarItem, typeof i1.StzhRadio, typeof i1.StzhRadiogroup, typeof i1.StzhRatio, typeof i1.StzhReadspeaker, typeof i1.StzhRichtext, typeof i1.StzhRow, typeof i1.StzhSaptcha, typeof i1.StzhScrollup, typeof i1.StzhSearch, typeof i1.StzhSection, typeof i1.StzhShare, typeof i1.StzhShow, typeof i1.StzhSitemap, typeof i1.StzhSkinPortalMitwirken, typeof i1.StzhSkinStorybookPreview, typeof i1.StzhSkiplink, typeof i1.StzhSortable, typeof i1.StzhSpace, typeof i1.StzhStatus, typeof i1.StzhSticky, typeof i1.StzhStickyActions, typeof i1.StzhTable, typeof i1.StzhText, typeof i1.StzhTextandimage, typeof i1.StzhTimeline, typeof i1.StzhTimelineItem, typeof i1.StzhTimepicker, typeof i1.StzhToast, typeof i1.StzhToastbar, typeof i1.StzhToggle, typeof i1.StzhTooltip, typeof i1.StzhTwocolumns, typeof i1.StzhUpload, typeof i1.StzhVbzCarousel, typeof i1.StzhVbzLinechip, typeof i1.StzhVbzMajorticker, typeof i1.StzhVbzTicker, typeof i1.StzhVisuallyhidden, typeof i1.StzhVspace, typeof i1.StzhYoutube, typeof i2.BooleanValueAccessor, typeof i3.NumericValueAccessor, typeof i4.SelectValueAccessor, typeof i5.TextValueAccessor], never, [typeof i1.StzhAccordion, typeof i1.StzhAccordionItem, typeof i1.StzhActions, typeof i1.StzhActionset, typeof i1.StzhAmount, typeof i1.StzhAnchornav, typeof i1.StzhAppointments, typeof i1.StzhArchivelist, typeof i1.StzhAudio, typeof i1.StzhBadge, typeof i1.StzhBanner, typeof i1.StzhBreadcrumb, typeof i1.StzhButton, typeof i1.StzhButtongroup, typeof i1.StzhCalendar, typeof i1.StzhCard, typeof i1.StzhCardNavigation, typeof i1.StzhCardSearchresult, typeof i1.StzhCardlist, typeof i1.StzhCarousel, typeof i1.StzhCell, typeof i1.StzhChart, typeof i1.StzhCheckbox, typeof i1.StzhCheckboxgroup, typeof i1.StzhChip, typeof i1.StzhChipSelect, typeof i1.StzhClamp, typeof i1.StzhContact, typeof i1.StzhContainer, typeof i1.StzhContent, typeof i1.StzhCspace, typeof i1.StzhCta, typeof i1.StzhDatalist, typeof i1.StzhDatalistItem, typeof i1.StzhDatamessagelist, typeof i1.StzhDatamessagelistItem, typeof i1.StzhDatatable, typeof i1.StzhDatepicker, typeof i1.StzhDetails, typeof i1.StzhDialog, typeof i1.StzhDisturber, typeof i1.StzhDropdown, typeof i1.StzhEditor, typeof i1.StzhEventinfo, typeof i1.StzhFieldset, typeof i1.StzhFigure, typeof i1.StzhFlyingfocus, typeof i1.StzhFooter, typeof i1.StzhGallery, typeof i1.StzhGhettobox, typeof i1.StzhHeader, typeof i1.StzhHeading, typeof i1.StzhHr, typeof i1.StzhHspace, typeof i1.StzhIcon, typeof i1.StzhIframe, typeof i1.StzhImagecomparison, typeof i1.StzhInput, typeof i1.StzhInvert, typeof i1.StzhLink, typeof i1.StzhList, typeof i1.StzhListItem, typeof i1.StzhLoader, typeof i1.StzhLoadingbar, typeof i1.StzhMenu, typeof i1.StzhMenuItem, typeof i1.StzhMessage, typeof i1.StzhMicrositeTeaserlist, typeof i1.StzhMonthyearpicker, typeof i1.StzhOlmap, typeof i1.StzhOverlay, typeof i1.StzhPageSkiplinks, typeof i1.StzhPagebottom, typeof i1.StzhPagecontent, typeof i1.StzhPagetitle, typeof i1.StzhPagetitleHero, typeof i1.StzhPagination, typeof i1.StzhPanorama, typeof i1.StzhPopover, typeof i1.StzhPrint, typeof i1.StzhProgressbar, typeof i1.StzhProgressbarItem, typeof i1.StzhRadio, typeof i1.StzhRadiogroup, typeof i1.StzhRatio, typeof i1.StzhReadspeaker, typeof i1.StzhRichtext, typeof i1.StzhRow, typeof i1.StzhSaptcha, typeof i1.StzhScrollup, typeof i1.StzhSearch, typeof i1.StzhSection, typeof i1.StzhShare, typeof i1.StzhShow, typeof i1.StzhSitemap, typeof i1.StzhSkinPortalMitwirken, typeof i1.StzhSkinStorybookPreview, typeof i1.StzhSkiplink, typeof i1.StzhSortable, typeof i1.StzhSpace, typeof i1.StzhStatus, typeof i1.StzhSticky, typeof i1.StzhStickyActions, typeof i1.StzhTable, typeof i1.StzhText, typeof i1.StzhTextandimage, typeof i1.StzhTimeline, typeof i1.StzhTimelineItem, typeof i1.StzhTimepicker, typeof i1.StzhToast, typeof i1.StzhToastbar, typeof i1.StzhToggle, typeof i1.StzhTooltip, typeof i1.StzhTwocolumns, typeof i1.StzhUpload, typeof i1.StzhVbzCarousel, typeof i1.StzhVbzLinechip, typeof i1.StzhVbzMajorticker, typeof i1.StzhVbzTicker, typeof i1.StzhVisuallyhidden, typeof i1.StzhVspace, typeof i1.StzhYoutube, typeof i2.BooleanValueAccessor, typeof i3.NumericValueAccessor, typeof i4.SelectValueAccessor, typeof i5.TextValueAccessor]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StzhComponentsAngularModule>;
|
|
11
|
+
}
|