@helsevestikt/hviktor-angular 0.0.27 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,11 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helsevestikt/hviktor-angular",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Angular-komponenter basert på Digdir Designsystemet for Helse Vest IKT",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"angular",
|
|
7
|
+
"components",
|
|
8
|
+
"designsystemet",
|
|
9
|
+
"digdir",
|
|
10
|
+
"helse-vest",
|
|
11
|
+
"a11y",
|
|
12
|
+
"wcag",
|
|
13
|
+
"ui"
|
|
14
|
+
],
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Helse Vest IKT"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/HelseVestIKT/hviktor/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://helsevestikt.github.io/hviktor",
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public"
|
|
24
|
+
},
|
|
4
25
|
"license": "MIT",
|
|
5
26
|
"repository": {
|
|
6
27
|
"type": "git",
|
|
7
28
|
"url": "https://github.com/HelseVestIKT/hviktor",
|
|
8
|
-
"directory": "
|
|
29
|
+
"directory": "projects/hviktor"
|
|
9
30
|
},
|
|
10
31
|
"peerDependencies": {
|
|
11
32
|
"@angular/common": ">=17.0.0 <22.0.0",
|
|
@@ -18,6 +39,7 @@
|
|
|
18
39
|
"dependencies": {
|
|
19
40
|
"@digdir/designsystemet-css": "^1.13.1",
|
|
20
41
|
"@digdir/designsystemet-web": "^1.13.1",
|
|
42
|
+
"@u-elements/u-combobox": "^1.0.7",
|
|
21
43
|
"@u-elements/u-details": "^0.1.5",
|
|
22
44
|
"@u-elements/u-tabs": "^0.1.2",
|
|
23
45
|
"tslib": "^2.3.0"
|
|
@@ -1430,6 +1430,41 @@ declare class HviSpinner {
|
|
|
1430
1430
|
static ɵcmp: i0.ɵɵComponentDeclaration<HviSpinner, "hvi-spinner", never, { "label": { "alias": "label"; "required": true; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
1431
1431
|
}
|
|
1432
1432
|
|
|
1433
|
+
declare class HviSuggestionOption {
|
|
1434
|
+
templateRef: i0.Signal<TemplateRef<unknown> | undefined>;
|
|
1435
|
+
value: i0.InputSignal<string>;
|
|
1436
|
+
label: i0.InputSignal<string>;
|
|
1437
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HviSuggestionOption, never>;
|
|
1438
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HviSuggestionOption, "hvi-suggestion-option", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
declare class HviSuggestionDatalist {
|
|
1442
|
+
readonly options: i0.Signal<readonly HviSuggestionOption[]>;
|
|
1443
|
+
value: string | undefined;
|
|
1444
|
+
label: string | undefined;
|
|
1445
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HviSuggestionDatalist, never>;
|
|
1446
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HviSuggestionDatalist, "hvi-suggestion-datalist", never, { "value": { "alias": "value"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, ["options"], never, true, never>;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
/**
|
|
1450
|
+
* @summary
|
|
1451
|
+
* Suggestion component description.
|
|
1452
|
+
*
|
|
1453
|
+
* @example
|
|
1454
|
+
* ```html
|
|
1455
|
+
* <hvi-suggestion></hvi-suggestion>
|
|
1456
|
+
* ```
|
|
1457
|
+
*
|
|
1458
|
+
* @see {@link https://designsystemet.no/en/components/docs/suggestion/code}
|
|
1459
|
+
*/
|
|
1460
|
+
declare class HviSuggestion {
|
|
1461
|
+
/** Mulighet for flervalg fra suggestion */
|
|
1462
|
+
multiple: boolean;
|
|
1463
|
+
empty: 'Ingen valgte' | 'No selected';
|
|
1464
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HviSuggestion, never>;
|
|
1465
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HviSuggestion, "hvi-suggestion", never, { "multiple": { "alias": "multiple"; "required": false; }; "empty": { "alias": "empty"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1433
1468
|
/** Sorteringsretninger for tabell-kolonner */
|
|
1434
1469
|
type SortDirection = 'none' | 'ascending' | 'descending';
|
|
1435
1470
|
/** Event som emitteres ved sorteringsendring */
|
|
@@ -1958,5 +1993,5 @@ declare class HviTooltip {
|
|
|
1958
1993
|
static ɵdir: i0.ɵɵDirectiveDeclaration<HviTooltip, "[hviTooltip]", never, { "hviTooltip": { "alias": "hviTooltip"; "required": true; }; "tooltipPlacement": { "alias": "tooltipPlacement"; "required": false; }; "tooltipAutoPlacement": { "alias": "tooltipAutoPlacement"; "required": false; }; }, {}, never, never, true, never>;
|
|
1959
1994
|
}
|
|
1960
1995
|
|
|
1961
|
-
export { HviAlert, HviAvatar, HviAvatarStack, HviBadge, HviBadgePosition, HviBreadcrumbs, HviButton, HviCard, HviCardBlock, HviChipButton, HviChipLabel, HviControlInvalid, HviDetails, HviDetailsContent, HviDetailsSummary, HviDialog, HviDialogBlock, HviDivider, HviDropdown, HviErrorSummary, HviField, HviFieldAffix, HviFieldAffixes, HviFieldCounter, HviFieldDescription, HviFieldKit, HviFieldOptional, HviFieldValidation, HviFieldset, HviForm, HviForms, HviHeading, HviInput, HviLabel, HviLink, HviList, HviLogo, HviPagination, HviParagraph, HviPopover, HviRequiredTag, HviSearch, HviSearchClear, HviSelect, HviSkeleton, HviSkipLink, HviSortableColumn, HviSpinner, HviTab, HviTabPanel, HviTable, HviTabs, HviTag, HviTextfield, HviToggleGroup, HviToggleGroupItem, HviToggleGroupItemToken, HviTooltip, HviValidationKit, HviValidationMessage, LOGOS, analyzeFormRequired, buildLogo, hviCustom, hviEmail, hviExtractMessages, hviExtractValidators, hviMax, hviMaxLength, hviMin, hviMinLength, hviNullValidator, hviPattern, hviRequired, hviRequiredTrue, hviValidators };
|
|
1996
|
+
export { HviAlert, HviAvatar, HviAvatarStack, HviBadge, HviBadgePosition, HviBreadcrumbs, HviButton, HviCard, HviCardBlock, HviChipButton, HviChipLabel, HviControlInvalid, HviDetails, HviDetailsContent, HviDetailsSummary, HviDialog, HviDialogBlock, HviDivider, HviDropdown, HviErrorSummary, HviField, HviFieldAffix, HviFieldAffixes, HviFieldCounter, HviFieldDescription, HviFieldKit, HviFieldOptional, HviFieldValidation, HviFieldset, HviForm, HviForms, HviHeading, HviInput, HviLabel, HviLink, HviList, HviLogo, HviPagination, HviParagraph, HviPopover, HviRequiredTag, HviSearch, HviSearchClear, HviSelect, HviSkeleton, HviSkipLink, HviSortableColumn, HviSpinner, HviSuggestion, HviSuggestionDatalist, HviSuggestionOption, HviTab, HviTabPanel, HviTable, HviTabs, HviTag, HviTextfield, HviToggleGroup, HviToggleGroupItem, HviToggleGroupItemToken, HviTooltip, HviValidationKit, HviValidationMessage, LOGOS, analyzeFormRequired, buildLogo, hviCustom, hviEmail, hviExtractMessages, hviExtractValidators, hviMax, hviMaxLength, hviMin, hviMinLength, hviNullValidator, hviPattern, hviRequired, hviRequiredTrue, hviValidators };
|
|
1962
1997
|
export type { FormRequiredMode, HviErrorSummaryItem, HviErrorSummaryMessages, HviValidationMessages, HviValidatorBundle, HviValidatorConfig, LogoCompany, LogoDefinition, LogoPath, LogoSize, PageChangeEvent, PaginationItem, RequiredTagMode, SortDirection, SpinnerSize, TablePageEvent, TableSortEvent };
|