@skf-design-system/ui-components 1.0.2-beta.5 → 1.0.2-beta.6
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/custom-elements.json +25490 -0
- package/dist/components/accordion/accordion.component.d.ts +1 -1
- package/dist/components/accordion/accordion.component.js +2 -2
- package/dist/components/datepicker/datepicker.component.js +1 -0
- package/dist/components/divider/divider.component.d.ts +3 -0
- package/dist/components/divider/divider.component.js +43 -22
- package/dist/components/divider/divider.styles.js +8 -8
- package/dist/components/drawer/drawer.component.d.ts +8 -2
- package/dist/components/drawer/drawer.component.js +74 -54
- package/dist/components/drawer/drawer.styles.js +47 -40
- package/dist/components/input/input.component.js +1 -0
- package/dist/components/link/link.component.d.ts +15 -18
- package/dist/components/link/link.component.js +99 -108
- package/dist/components/link/link.styles.js +45 -45
- package/dist/components/loader/loader.component.d.ts +5 -1
- package/dist/components/loader/loader.component.js +43 -29
- package/dist/components/loader/loader.styles.js +5 -9
- package/dist/components/menu/menu-item.component.d.ts +1 -1
- package/dist/components/menu/menu-item.component.js +8 -8
- package/dist/components/menu/menu-item.styles.js +8 -5
- package/dist/components/menu/menu.component.d.ts +1 -1
- package/dist/components/menu/menu.component.js +8 -8
- package/dist/components/nav/nav-item.component.d.ts +4 -0
- package/dist/components/nav/nav-item.component.js +44 -25
- package/dist/components/nav/nav-item.styles.js +29 -25
- package/dist/components/nav/nav.component.d.ts +6 -0
- package/dist/components/nav/nav.component.js +42 -21
- package/dist/components/nav/nav.styles.js +15 -9
- package/dist/components/popover/popover.component.d.ts +4 -0
- package/dist/components/popover/popover.component.js +30 -22
- package/dist/components/progress/progress.component.d.ts +2 -0
- package/dist/components/progress/progress.component.js +38 -29
- package/dist/components/progress/progress.styles.js +3 -3
- package/dist/components/select/select-option-group.component.d.ts +4 -0
- package/dist/components/select/select-option-group.component.js +37 -18
- package/dist/components/select/select-option-group.style.js +12 -6
- package/dist/components/select/select-option.component.d.ts +6 -1
- package/dist/components/select/select-option.component.js +73 -53
- package/dist/components/select/select-option.styles.js +43 -31
- package/dist/components/select/select.component.d.ts +5 -1
- package/dist/components/select/select.component.js +47 -29
- package/dist/components/select/select.controllers.js +2 -1
- package/dist/components/select/select.styles.js +8 -2
- package/dist/components/stepper/stepper-item.component.d.ts +1 -1
- package/dist/components/stepper/stepper-item.component.js +26 -23
- package/dist/components/tabs/tab-panel.component.d.ts +1 -1
- package/dist/components/tabs/tab-panel.component.js +19 -16
- package/dist/components/tabs/tab.component.d.ts +1 -1
- package/dist/components/tabs/tab.component.js +17 -14
- package/dist/components/textarea/textarea.component.js +5 -4
- package/dist/components/toast/toast-item.styles.js +13 -10
- package/dist/components/toast/toast.component.js +9 -9
- package/dist/components/toast/toast.singleton.d.ts +1 -1
- package/dist/components/toast/toast.singleton.js +18 -18
- package/dist/components/tooltip/tooltip.component.d.ts +1 -0
- package/dist/components/tooltip/tooltip.component.js +10 -7
- package/dist/custom-elements.json +803 -704
- package/dist/index.d.ts +2 -2
- package/dist/index.js +20 -20
- package/dist/internal/base-classes/popover/popover.base.d.ts +3 -3
- package/dist/internal/base-classes/popover/popover.base.js +27 -26
- package/dist/internal/base-classes/popover/popover.styles.js +4 -5
- package/dist/internal/components/hint/hint.component.d.ts +4 -0
- package/dist/internal/components/hint/hint.component.js +47 -20
- package/dist/internal/components/hint/hint.styles.js +29 -25
- package/dist/internal/types.d.ts +4 -0
- package/dist/types/jsx/custom-element-jsx.d.ts +184 -81
- package/dist/types/vue/index.d.ts +77 -80
- package/dist/vscode.html-custom-data.json +93 -97
- package/dist/web-types.json +210 -215
- package/package.json +28 -28
@@ -820,6 +820,22 @@
|
|
820
820
|
"description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities",
|
821
821
|
"name": "SkfLoader",
|
822
822
|
"members": [
|
823
|
+
{
|
824
|
+
"kind": "field",
|
825
|
+
"name": "#internals",
|
826
|
+
"privacy": "private",
|
827
|
+
"type": {
|
828
|
+
"text": "ElementInternals"
|
829
|
+
}
|
830
|
+
},
|
831
|
+
{
|
832
|
+
"kind": "field",
|
833
|
+
"name": "#states",
|
834
|
+
"privacy": "private",
|
835
|
+
"type": {
|
836
|
+
"text": "CustomStateSet"
|
837
|
+
}
|
838
|
+
},
|
823
839
|
{
|
824
840
|
"kind": "field",
|
825
841
|
"name": "ariaLabel",
|
@@ -828,8 +844,7 @@
|
|
828
844
|
},
|
829
845
|
"default": "'Loading...'",
|
830
846
|
"description": "Defines the aria-label",
|
831
|
-
"attribute": "aria-label"
|
832
|
-
"reflects": true
|
847
|
+
"attribute": "aria-label"
|
833
848
|
},
|
834
849
|
{
|
835
850
|
"kind": "field",
|
@@ -845,12 +860,14 @@
|
|
845
860
|
"kind": "field",
|
846
861
|
"name": "size",
|
847
862
|
"type": {
|
848
|
-
"text": "
|
863
|
+
"text": "Size"
|
849
864
|
},
|
850
865
|
"default": "'md'",
|
851
866
|
"description": "Defines the size of the loader",
|
852
867
|
"attribute": "size",
|
853
|
-
"
|
868
|
+
"expandedType": {
|
869
|
+
"text": "'sm' | 'md'"
|
870
|
+
}
|
854
871
|
}
|
855
872
|
],
|
856
873
|
"attributes": [
|
@@ -875,11 +892,14 @@
|
|
875
892
|
{
|
876
893
|
"name": "size",
|
877
894
|
"type": {
|
878
|
-
"text": "
|
895
|
+
"text": "Size"
|
879
896
|
},
|
880
897
|
"default": "'md'",
|
881
898
|
"description": "Defines the size of the loader",
|
882
|
-
"fieldName": "size"
|
899
|
+
"fieldName": "size",
|
900
|
+
"expandedType": {
|
901
|
+
"text": "'sm' | 'md'"
|
902
|
+
}
|
883
903
|
}
|
884
904
|
],
|
885
905
|
"superclass": {
|
@@ -2656,6 +2676,22 @@
|
|
2656
2676
|
}
|
2657
2677
|
],
|
2658
2678
|
"members": [
|
2679
|
+
{
|
2680
|
+
"kind": "field",
|
2681
|
+
"name": "#internals",
|
2682
|
+
"privacy": "private",
|
2683
|
+
"type": {
|
2684
|
+
"text": "ElementInternals"
|
2685
|
+
}
|
2686
|
+
},
|
2687
|
+
{
|
2688
|
+
"kind": "field",
|
2689
|
+
"name": "#states",
|
2690
|
+
"privacy": "private",
|
2691
|
+
"type": {
|
2692
|
+
"text": "CustomStateSet"
|
2693
|
+
}
|
2694
|
+
},
|
2659
2695
|
{
|
2660
2696
|
"kind": "field",
|
2661
2697
|
"name": "color",
|
@@ -2665,7 +2701,6 @@
|
|
2665
2701
|
"default": "'primary'",
|
2666
2702
|
"description": "Defines the Divider color",
|
2667
2703
|
"attribute": "color",
|
2668
|
-
"reflects": true,
|
2669
2704
|
"expandedType": {
|
2670
2705
|
"text": "'primary' | 'inverse' | 'emphasised' | 'secondary' | 'tertiary'"
|
2671
2706
|
}
|
@@ -2688,8 +2723,7 @@
|
|
2688
2723
|
},
|
2689
2724
|
"default": "false",
|
2690
2725
|
"description": "If true, renders the divider vertically",
|
2691
|
-
"attribute": "vertical"
|
2692
|
-
"reflects": true
|
2726
|
+
"attribute": "vertical"
|
2693
2727
|
}
|
2694
2728
|
],
|
2695
2729
|
"attributes": [
|
@@ -2759,6 +2793,22 @@
|
|
2759
2793
|
}
|
2760
2794
|
],
|
2761
2795
|
"members": [
|
2796
|
+
{
|
2797
|
+
"kind": "field",
|
2798
|
+
"name": "#internals",
|
2799
|
+
"privacy": "private",
|
2800
|
+
"type": {
|
2801
|
+
"text": "ElementInternals"
|
2802
|
+
}
|
2803
|
+
},
|
2804
|
+
{
|
2805
|
+
"kind": "field",
|
2806
|
+
"name": "#states",
|
2807
|
+
"privacy": "private",
|
2808
|
+
"type": {
|
2809
|
+
"text": "CustomStateSet"
|
2810
|
+
}
|
2811
|
+
},
|
2762
2812
|
{
|
2763
2813
|
"kind": "field",
|
2764
2814
|
"name": "closeButtonAriaLabel",
|
@@ -2782,12 +2832,14 @@
|
|
2782
2832
|
"kind": "field",
|
2783
2833
|
"name": "size",
|
2784
2834
|
"type": {
|
2785
|
-
"text": "
|
2835
|
+
"text": "Size"
|
2786
2836
|
},
|
2787
2837
|
"default": "'md'",
|
2788
2838
|
"description": "Sets the max-width",
|
2789
2839
|
"attribute": "size",
|
2790
|
-
"
|
2840
|
+
"expandedType": {
|
2841
|
+
"text": "'sm' | 'md' | 'lg'"
|
2842
|
+
}
|
2791
2843
|
},
|
2792
2844
|
{
|
2793
2845
|
"kind": "field",
|
@@ -2804,12 +2856,14 @@
|
|
2804
2856
|
"kind": "field",
|
2805
2857
|
"name": "placement",
|
2806
2858
|
"type": {
|
2807
|
-
"text": "
|
2859
|
+
"text": "Placement"
|
2808
2860
|
},
|
2809
2861
|
"default": "'right'",
|
2810
2862
|
"description": "Placement of the Drawer",
|
2811
2863
|
"attribute": "placement",
|
2812
|
-
"
|
2864
|
+
"expandedType": {
|
2865
|
+
"text": "'left' | 'right'"
|
2866
|
+
}
|
2813
2867
|
},
|
2814
2868
|
{
|
2815
2869
|
"kind": "method",
|
@@ -2860,11 +2914,14 @@
|
|
2860
2914
|
{
|
2861
2915
|
"name": "size",
|
2862
2916
|
"type": {
|
2863
|
-
"text": "
|
2917
|
+
"text": "Size"
|
2864
2918
|
},
|
2865
2919
|
"default": "'md'",
|
2866
2920
|
"description": "Sets the max-width",
|
2867
|
-
"fieldName": "size"
|
2921
|
+
"fieldName": "size",
|
2922
|
+
"expandedType": {
|
2923
|
+
"text": "'sm' | 'md' | 'lg'"
|
2924
|
+
}
|
2868
2925
|
},
|
2869
2926
|
{
|
2870
2927
|
"name": "open",
|
@@ -2878,11 +2935,14 @@
|
|
2878
2935
|
{
|
2879
2936
|
"name": "placement",
|
2880
2937
|
"type": {
|
2881
|
-
"text": "
|
2938
|
+
"text": "Placement"
|
2882
2939
|
},
|
2883
2940
|
"default": "'right'",
|
2884
2941
|
"description": "Placement of the Drawer",
|
2885
|
-
"fieldName": "placement"
|
2942
|
+
"fieldName": "placement",
|
2943
|
+
"expandedType": {
|
2944
|
+
"text": "'left' | 'right'"
|
2945
|
+
}
|
2886
2946
|
}
|
2887
2947
|
],
|
2888
2948
|
"superclass": {
|
@@ -3005,999 +3065,1108 @@
|
|
3005
3065
|
},
|
3006
3066
|
{
|
3007
3067
|
"kind": "javascript-module",
|
3008
|
-
"path": "components/
|
3068
|
+
"path": "components/link/link.js",
|
3009
3069
|
"declarations": [
|
3010
3070
|
{
|
3011
3071
|
"kind": "class",
|
3012
|
-
"description": "The `<skf-
|
3013
|
-
"name": "
|
3072
|
+
"description": "The `<skf-link>` can be used as either a regular link or a semantic button. The button variant is\nintended to be used for triggering javascript functions, not handling forms.",
|
3073
|
+
"name": "SkfLink",
|
3014
3074
|
"slots": [
|
3015
3075
|
{
|
3016
|
-
"description": "The
|
3076
|
+
"description": "The links' main content",
|
3017
3077
|
"name": ""
|
3018
3078
|
}
|
3019
3079
|
],
|
3020
3080
|
"members": [
|
3021
3081
|
{
|
3022
3082
|
"kind": "field",
|
3023
|
-
"name": "
|
3083
|
+
"name": "#internals",
|
3084
|
+
"privacy": "private",
|
3085
|
+
"type": {
|
3086
|
+
"text": "ElementInternals"
|
3087
|
+
}
|
3088
|
+
},
|
3089
|
+
{
|
3090
|
+
"kind": "field",
|
3091
|
+
"name": "#states",
|
3092
|
+
"privacy": "private",
|
3093
|
+
"type": {
|
3094
|
+
"text": "CustomStateSet"
|
3095
|
+
}
|
3096
|
+
},
|
3097
|
+
{
|
3098
|
+
"kind": "field",
|
3099
|
+
"name": "as",
|
3100
|
+
"type": {
|
3101
|
+
"text": "'button' | 'link'"
|
3102
|
+
},
|
3103
|
+
"default": "'link'",
|
3104
|
+
"description": "Defines the semantic element to render",
|
3105
|
+
"attribute": "as"
|
3106
|
+
},
|
3107
|
+
{
|
3108
|
+
"kind": "field",
|
3109
|
+
"name": "color",
|
3110
|
+
"type": {
|
3111
|
+
"text": "Color"
|
3112
|
+
},
|
3113
|
+
"default": "'primary'",
|
3114
|
+
"description": "Defines the text-color",
|
3115
|
+
"attribute": "color",
|
3116
|
+
"expandedType": {
|
3117
|
+
"text": "'primary' | 'inverse'"
|
3118
|
+
}
|
3119
|
+
},
|
3120
|
+
{
|
3121
|
+
"kind": "field",
|
3122
|
+
"name": "disabled",
|
3024
3123
|
"type": {
|
3025
3124
|
"text": "boolean"
|
3026
3125
|
},
|
3027
3126
|
"default": "false",
|
3028
|
-
"
|
3029
|
-
"
|
3030
|
-
}
|
3031
|
-
],
|
3032
|
-
"attributes": [
|
3127
|
+
"description": "If true, disables the link",
|
3128
|
+
"attribute": "disabled"
|
3129
|
+
},
|
3033
3130
|
{
|
3034
|
-
"
|
3131
|
+
"kind": "field",
|
3132
|
+
"name": "download",
|
3035
3133
|
"type": {
|
3036
3134
|
"text": "boolean"
|
3037
3135
|
},
|
3038
3136
|
"default": "false",
|
3039
|
-
"
|
3040
|
-
|
3041
|
-
|
3042
|
-
"superclass": {
|
3043
|
-
"name": "SkfElement",
|
3044
|
-
"package": "@internal/components/skf-element"
|
3045
|
-
},
|
3046
|
-
"tagName": "skf-nav",
|
3047
|
-
"customElement": true
|
3048
|
-
}
|
3049
|
-
],
|
3050
|
-
"exports": [
|
3051
|
-
{
|
3052
|
-
"kind": "js",
|
3053
|
-
"name": "SkfNav",
|
3054
|
-
"declaration": {
|
3055
|
-
"name": "SkfNav",
|
3056
|
-
"module": "src/components/nav/nav.component.ts"
|
3057
|
-
}
|
3058
|
-
}
|
3059
|
-
],
|
3060
|
-
"typeDefinitionPath": "components/nav/nav.d.ts"
|
3061
|
-
},
|
3062
|
-
{
|
3063
|
-
"kind": "javascript-module",
|
3064
|
-
"path": "components/header/header.js",
|
3065
|
-
"declarations": [
|
3066
|
-
{
|
3067
|
-
"kind": "class",
|
3068
|
-
"description": "The `<skf-header>` component is to be used as the site-header in the app. The navigation will be collapsed to mobile-view if the menu items exceed the available width.",
|
3069
|
-
"name": "SkfHeader",
|
3070
|
-
"slots": [
|
3137
|
+
"description": "If defined, downloads the url",
|
3138
|
+
"attribute": "download"
|
3139
|
+
},
|
3071
3140
|
{
|
3072
|
-
"
|
3073
|
-
"name": ""
|
3074
|
-
|
3075
|
-
|
3076
|
-
|
3141
|
+
"kind": "field",
|
3142
|
+
"name": "href",
|
3143
|
+
"type": {
|
3144
|
+
"text": "string | undefined"
|
3145
|
+
},
|
3146
|
+
"description": "If defined, loads url on click",
|
3147
|
+
"attribute": "href"
|
3148
|
+
},
|
3077
3149
|
{
|
3078
3150
|
"kind": "field",
|
3079
|
-
"name": "
|
3080
|
-
"
|
3081
|
-
|
3082
|
-
|
3151
|
+
"name": "icon",
|
3152
|
+
"type": {
|
3153
|
+
"text": "Icon | undefined"
|
3154
|
+
},
|
3155
|
+
"description": "If defined, renders an icon before or after the text",
|
3156
|
+
"attribute": "icon",
|
3157
|
+
"expandedType": {
|
3158
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
3159
|
+
}
|
3083
3160
|
},
|
3084
3161
|
{
|
3085
3162
|
"kind": "field",
|
3086
|
-
"name": "
|
3163
|
+
"name": "iconRight",
|
3087
3164
|
"type": {
|
3088
|
-
"text": "
|
3165
|
+
"text": "boolean"
|
3089
3166
|
},
|
3090
|
-
"default": "
|
3091
|
-
"description": "If
|
3092
|
-
"attribute": "
|
3167
|
+
"default": "false",
|
3168
|
+
"description": "If true, the icon is placed to the right in relation to the text",
|
3169
|
+
"attribute": "icon-right"
|
3093
3170
|
},
|
3094
3171
|
{
|
3095
3172
|
"kind": "field",
|
3096
|
-
"name": "
|
3173
|
+
"name": "rel",
|
3097
3174
|
"type": {
|
3098
3175
|
"text": "string | undefined"
|
3099
3176
|
},
|
3100
|
-
"description": "If defined,
|
3101
|
-
"attribute": "
|
3177
|
+
"description": "If defined, describes the relationship between a linked resource and the current document",
|
3178
|
+
"attribute": "rel"
|
3102
3179
|
},
|
3103
3180
|
{
|
3104
3181
|
"kind": "field",
|
3105
|
-
"name": "
|
3182
|
+
"name": "route",
|
3106
3183
|
"type": {
|
3107
3184
|
"text": "string | undefined"
|
3108
3185
|
},
|
3109
|
-
"description": "If defined,
|
3110
|
-
"attribute": "
|
3111
|
-
}
|
3112
|
-
],
|
3113
|
-
"attributes": [
|
3114
|
-
{
|
3115
|
-
"name": "compact",
|
3116
|
-
"description": "If true, sets header to display in compact mode only (hanburger menu and drawer)",
|
3117
|
-
"fieldName": "compact"
|
3186
|
+
"description": "If defined, used on conjunction with onClick property. **Notice!** Only applicable to as=button.",
|
3187
|
+
"attribute": "route"
|
3118
3188
|
},
|
3119
3189
|
{
|
3120
|
-
"
|
3190
|
+
"kind": "field",
|
3191
|
+
"name": "stretch",
|
3121
3192
|
"type": {
|
3122
|
-
"text": "
|
3193
|
+
"text": "boolean"
|
3123
3194
|
},
|
3124
|
-
"default": "
|
3125
|
-
"description": "If
|
3126
|
-
"
|
3195
|
+
"default": "false",
|
3196
|
+
"description": "If true, fills the parents horizontal axis",
|
3197
|
+
"attribute": "stretch"
|
3127
3198
|
},
|
3128
3199
|
{
|
3129
|
-
"
|
3200
|
+
"kind": "field",
|
3201
|
+
"name": "target",
|
3130
3202
|
"type": {
|
3131
|
-
"text": "
|
3203
|
+
"text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
|
3132
3204
|
},
|
3133
|
-
"description": "If defined,
|
3134
|
-
"
|
3205
|
+
"description": "If defined, specifies where to open the linked document",
|
3206
|
+
"attribute": "target"
|
3135
3207
|
},
|
3136
3208
|
{
|
3137
|
-
"
|
3209
|
+
"kind": "method",
|
3210
|
+
"name": "_handleAsChange"
|
3211
|
+
}
|
3212
|
+
],
|
3213
|
+
"events": [
|
3214
|
+
{
|
3138
3215
|
"type": {
|
3139
|
-
"text": "
|
3216
|
+
"text": "CustomEvent"
|
3140
3217
|
},
|
3141
|
-
"description": "
|
3142
|
-
"
|
3218
|
+
"description": "Fired when the link is clicked",
|
3219
|
+
"name": "skf-link-click"
|
3143
3220
|
}
|
3144
3221
|
],
|
3145
|
-
"
|
3146
|
-
"name": "SkfElement",
|
3147
|
-
"package": "@internal/components/skf-element"
|
3148
|
-
},
|
3149
|
-
"tagName": "skf-header",
|
3150
|
-
"customElement": true
|
3151
|
-
}
|
3152
|
-
],
|
3153
|
-
"exports": [
|
3154
|
-
{
|
3155
|
-
"kind": "js",
|
3156
|
-
"name": "SkfHeader",
|
3157
|
-
"declaration": {
|
3158
|
-
"name": "SkfHeader",
|
3159
|
-
"module": "src/components/header/header.component.ts"
|
3160
|
-
}
|
3161
|
-
}
|
3162
|
-
],
|
3163
|
-
"typeDefinitionPath": "components/header/header.d.ts"
|
3164
|
-
},
|
3165
|
-
{
|
3166
|
-
"kind": "javascript-module",
|
3167
|
-
"path": "components/input/input.js",
|
3168
|
-
"declarations": [
|
3169
|
-
{
|
3170
|
-
"kind": "class",
|
3171
|
-
"description": "The skf-text-field is used to create a text input field. It can be used inside a form element or standalone\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/9481fa-input-field) for design principles",
|
3172
|
-
"name": "SkfInput",
|
3173
|
-
"slots": [
|
3174
|
-
{
|
3175
|
-
"description": "The Inputs label. Alternatively, you can use the `label` attribute.",
|
3176
|
-
"name": ""
|
3177
|
-
}
|
3178
|
-
],
|
3179
|
-
"members": [
|
3222
|
+
"attributes": [
|
3180
3223
|
{
|
3181
|
-
"
|
3182
|
-
"name": "customError",
|
3224
|
+
"name": "as",
|
3183
3225
|
"type": {
|
3184
|
-
"text": "
|
3226
|
+
"text": "'button' | 'link'"
|
3185
3227
|
},
|
3186
|
-
"
|
3228
|
+
"default": "'link'",
|
3229
|
+
"description": "Defines the semantic element to render",
|
3230
|
+
"fieldName": "as"
|
3187
3231
|
},
|
3188
3232
|
{
|
3189
|
-
"
|
3190
|
-
"name": "autocomplete",
|
3233
|
+
"name": "color",
|
3191
3234
|
"type": {
|
3192
|
-
"text": "
|
3235
|
+
"text": "Color"
|
3193
3236
|
},
|
3194
|
-
"
|
3195
|
-
"
|
3237
|
+
"default": "'primary'",
|
3238
|
+
"description": "Defines the text-color",
|
3239
|
+
"fieldName": "color",
|
3240
|
+
"expandedType": {
|
3241
|
+
"text": "'primary' | 'inverse'"
|
3242
|
+
}
|
3196
3243
|
},
|
3197
3244
|
{
|
3198
|
-
"
|
3199
|
-
"name": "buttonAriaLabelClear",
|
3245
|
+
"name": "disabled",
|
3200
3246
|
"type": {
|
3201
|
-
"text": "
|
3247
|
+
"text": "boolean"
|
3202
3248
|
},
|
3203
|
-
"default": "
|
3204
|
-
"description": "
|
3205
|
-
"
|
3249
|
+
"default": "false",
|
3250
|
+
"description": "If true, disables the link",
|
3251
|
+
"fieldName": "disabled"
|
3206
3252
|
},
|
3207
3253
|
{
|
3208
|
-
"
|
3209
|
-
"name": "buttonAriaLabelHide",
|
3254
|
+
"name": "download",
|
3210
3255
|
"type": {
|
3211
|
-
"text": "
|
3256
|
+
"text": "boolean"
|
3212
3257
|
},
|
3213
|
-
"default": "
|
3214
|
-
"description": "
|
3215
|
-
"
|
3258
|
+
"default": "false",
|
3259
|
+
"description": "If defined, downloads the url",
|
3260
|
+
"fieldName": "download"
|
3216
3261
|
},
|
3217
3262
|
{
|
3218
|
-
"
|
3219
|
-
"name": "buttonAriaLabelShow",
|
3263
|
+
"name": "href",
|
3220
3264
|
"type": {
|
3221
|
-
"text": "string"
|
3265
|
+
"text": "string | undefined"
|
3222
3266
|
},
|
3223
|
-
"
|
3224
|
-
"
|
3225
|
-
"attribute": "button-aria-label-show"
|
3226
|
-
},
|
3227
|
-
{
|
3228
|
-
"kind": "field",
|
3229
|
-
"name": "customInvalid",
|
3230
|
-
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
3231
|
-
"attribute": "custom-invalid",
|
3232
|
-
"reflects": true
|
3267
|
+
"description": "If defined, loads url on click",
|
3268
|
+
"fieldName": "href"
|
3233
3269
|
},
|
3234
3270
|
{
|
3235
|
-
"
|
3236
|
-
"name": "debug",
|
3271
|
+
"name": "icon",
|
3237
3272
|
"type": {
|
3238
|
-
"text": "
|
3273
|
+
"text": "Icon | undefined"
|
3239
3274
|
},
|
3240
|
-
"
|
3241
|
-
"
|
3242
|
-
"
|
3275
|
+
"description": "If defined, renders an icon before or after the text",
|
3276
|
+
"fieldName": "icon",
|
3277
|
+
"expandedType": {
|
3278
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
3279
|
+
}
|
3243
3280
|
},
|
3244
3281
|
{
|
3245
|
-
"
|
3246
|
-
"name": "hideLabel",
|
3282
|
+
"name": "icon-right",
|
3247
3283
|
"type": {
|
3248
3284
|
"text": "boolean"
|
3249
3285
|
},
|
3250
3286
|
"default": "false",
|
3251
|
-
"description": "If true,
|
3252
|
-
"
|
3287
|
+
"description": "If true, the icon is placed to the right in relation to the text",
|
3288
|
+
"fieldName": "iconRight"
|
3253
3289
|
},
|
3254
3290
|
{
|
3255
|
-
"
|
3256
|
-
"name": "hint",
|
3291
|
+
"name": "rel",
|
3257
3292
|
"type": {
|
3258
3293
|
"text": "string | undefined"
|
3259
3294
|
},
|
3260
|
-
"description": "If defined,
|
3261
|
-
"
|
3295
|
+
"description": "If defined, describes the relationship between a linked resource and the current document",
|
3296
|
+
"fieldName": "rel"
|
3262
3297
|
},
|
3263
3298
|
{
|
3264
|
-
"
|
3265
|
-
"name": "inputmode",
|
3299
|
+
"name": "route",
|
3266
3300
|
"type": {
|
3267
|
-
"text": "
|
3301
|
+
"text": "string | undefined"
|
3268
3302
|
},
|
3269
|
-
"
|
3270
|
-
"
|
3271
|
-
"attribute": "inputmode"
|
3303
|
+
"description": "If defined, used on conjunction with onClick property. **Notice!** Only applicable to as=button.",
|
3304
|
+
"fieldName": "route"
|
3272
3305
|
},
|
3273
3306
|
{
|
3274
|
-
"
|
3275
|
-
"name": "label",
|
3307
|
+
"name": "stretch",
|
3276
3308
|
"type": {
|
3277
|
-
"text": "
|
3309
|
+
"text": "boolean"
|
3278
3310
|
},
|
3279
|
-
"
|
3280
|
-
"
|
3311
|
+
"default": "false",
|
3312
|
+
"description": "If true, fills the parents horizontal axis",
|
3313
|
+
"fieldName": "stretch"
|
3281
3314
|
},
|
3282
3315
|
{
|
3283
|
-
"
|
3284
|
-
"name": "leading",
|
3316
|
+
"name": "target",
|
3285
3317
|
"type": {
|
3286
|
-
"text": "
|
3318
|
+
"text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
|
3287
3319
|
},
|
3288
|
-
"description": "If defined,
|
3289
|
-
"
|
3290
|
-
}
|
3320
|
+
"description": "If defined, specifies where to open the linked document",
|
3321
|
+
"fieldName": "target"
|
3322
|
+
}
|
3323
|
+
],
|
3324
|
+
"superclass": {
|
3325
|
+
"name": "SkfElement",
|
3326
|
+
"package": "@internal/components/skf-element.js"
|
3327
|
+
},
|
3328
|
+
"tagName": "skf-link",
|
3329
|
+
"customElement": true
|
3330
|
+
}
|
3331
|
+
],
|
3332
|
+
"exports": [
|
3333
|
+
{
|
3334
|
+
"kind": "js",
|
3335
|
+
"name": "SkfLink",
|
3336
|
+
"declaration": {
|
3337
|
+
"name": "SkfLink",
|
3338
|
+
"module": "src/components/link/link.component.ts"
|
3339
|
+
}
|
3340
|
+
}
|
3341
|
+
],
|
3342
|
+
"typeDefinitionPath": "components/link/link.d.ts"
|
3343
|
+
},
|
3344
|
+
{
|
3345
|
+
"kind": "javascript-module",
|
3346
|
+
"path": "components/nav/nav-item.js",
|
3347
|
+
"declarations": [
|
3348
|
+
{
|
3349
|
+
"kind": "class",
|
3350
|
+
"description": "The `<skf-nav>` is a component that displays a list of <nav-items>.",
|
3351
|
+
"name": "SkfNavItem",
|
3352
|
+
"slots": [
|
3353
|
+
{
|
3354
|
+
"description": "The component's main content",
|
3355
|
+
"name": ""
|
3356
|
+
}
|
3357
|
+
],
|
3358
|
+
"members": [
|
3291
3359
|
{
|
3292
3360
|
"kind": "field",
|
3293
|
-
"name": "
|
3361
|
+
"name": "#internals",
|
3362
|
+
"privacy": "private",
|
3294
3363
|
"type": {
|
3295
|
-
"text": "
|
3296
|
-
}
|
3297
|
-
"description": "If defined, sets the maximum value to accept for this input",
|
3298
|
-
"attribute": "max"
|
3364
|
+
"text": "ElementInternals"
|
3365
|
+
}
|
3299
3366
|
},
|
3300
3367
|
{
|
3301
3368
|
"kind": "field",
|
3302
|
-
"name": "
|
3369
|
+
"name": "#states",
|
3370
|
+
"privacy": "private",
|
3303
3371
|
"type": {
|
3304
|
-
"text": "
|
3305
|
-
}
|
3306
|
-
"description": "If defined, sets the maximum character length to accept for this input",
|
3307
|
-
"attribute": "maxlength"
|
3372
|
+
"text": "CustomStateSet"
|
3373
|
+
}
|
3308
3374
|
},
|
3309
3375
|
{
|
3310
3376
|
"kind": "field",
|
3311
|
-
"name": "
|
3377
|
+
"name": "href",
|
3312
3378
|
"type": {
|
3313
|
-
"text": "
|
3379
|
+
"text": "string"
|
3314
3380
|
},
|
3315
|
-
"
|
3316
|
-
"attribute": "
|
3381
|
+
"default": "''",
|
3382
|
+
"attribute": "href"
|
3317
3383
|
},
|
3318
3384
|
{
|
3319
3385
|
"kind": "field",
|
3320
|
-
"name": "
|
3386
|
+
"name": "icon",
|
3321
3387
|
"type": {
|
3322
|
-
"text": "
|
3388
|
+
"text": "Icon | undefined"
|
3323
3389
|
},
|
3324
|
-
"
|
3325
|
-
"
|
3390
|
+
"attribute": "icon",
|
3391
|
+
"expandedType": {
|
3392
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
3393
|
+
}
|
3326
3394
|
},
|
3327
3395
|
{
|
3328
3396
|
"kind": "field",
|
3329
|
-
"name": "
|
3397
|
+
"name": "vertical",
|
3330
3398
|
"type": {
|
3331
|
-
"text": "
|
3399
|
+
"text": "boolean"
|
3332
3400
|
},
|
3333
|
-
"
|
3334
|
-
|
3335
|
-
|
3336
|
-
|
3401
|
+
"default": "false"
|
3402
|
+
}
|
3403
|
+
],
|
3404
|
+
"attributes": [
|
3337
3405
|
{
|
3338
|
-
"
|
3339
|
-
"name": "pattern",
|
3406
|
+
"name": "href",
|
3340
3407
|
"type": {
|
3341
|
-
"text": "string
|
3408
|
+
"text": "string"
|
3342
3409
|
},
|
3343
|
-
"
|
3344
|
-
"
|
3410
|
+
"default": "''",
|
3411
|
+
"fieldName": "href"
|
3345
3412
|
},
|
3346
3413
|
{
|
3347
|
-
"
|
3348
|
-
"name": "placeholder",
|
3414
|
+
"name": "icon",
|
3349
3415
|
"type": {
|
3350
|
-
"text": "
|
3416
|
+
"text": "Icon | undefined"
|
3351
3417
|
},
|
3352
|
-
"
|
3353
|
-
"
|
3354
|
-
|
3418
|
+
"fieldName": "icon",
|
3419
|
+
"expandedType": {
|
3420
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
3421
|
+
}
|
3422
|
+
}
|
3423
|
+
],
|
3424
|
+
"superclass": {
|
3425
|
+
"name": "SkfElement",
|
3426
|
+
"package": "@internal/components/skf-element"
|
3427
|
+
},
|
3428
|
+
"tagName": "skf-nav-item",
|
3429
|
+
"customElement": true
|
3430
|
+
}
|
3431
|
+
],
|
3432
|
+
"exports": [
|
3433
|
+
{
|
3434
|
+
"kind": "js",
|
3435
|
+
"name": "SkfNavItem",
|
3436
|
+
"declaration": {
|
3437
|
+
"name": "SkfNavItem",
|
3438
|
+
"module": "src/components/nav/nav-item.component.ts"
|
3439
|
+
}
|
3440
|
+
}
|
3441
|
+
],
|
3442
|
+
"typeDefinitionPath": "components/nav/nav-item.d.ts"
|
3443
|
+
},
|
3444
|
+
{
|
3445
|
+
"kind": "javascript-module",
|
3446
|
+
"path": "components/nav/nav.js",
|
3447
|
+
"declarations": [
|
3448
|
+
{
|
3449
|
+
"kind": "class",
|
3450
|
+
"description": "The `<skf-nav>` is a component that displays a list of <nav-items>.",
|
3451
|
+
"name": "SkfNav",
|
3452
|
+
"slots": [
|
3453
|
+
{
|
3454
|
+
"description": "The component's main content",
|
3455
|
+
"name": ""
|
3456
|
+
}
|
3457
|
+
],
|
3458
|
+
"members": [
|
3355
3459
|
{
|
3356
3460
|
"kind": "field",
|
3357
|
-
"name": "
|
3461
|
+
"name": "#internals",
|
3462
|
+
"privacy": "private",
|
3358
3463
|
"type": {
|
3359
|
-
"text": "
|
3360
|
-
}
|
3361
|
-
"default": "false",
|
3362
|
-
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
3363
|
-
"attribute": "readonly"
|
3464
|
+
"text": "ElementInternals"
|
3465
|
+
}
|
3364
3466
|
},
|
3365
3467
|
{
|
3366
3468
|
"kind": "field",
|
3367
|
-
"name": "
|
3469
|
+
"name": "#states",
|
3470
|
+
"privacy": "private",
|
3368
3471
|
"type": {
|
3369
|
-
"text": "
|
3370
|
-
}
|
3371
|
-
"description": "If defined, renders an alternative A11y text for the asterisk",
|
3372
|
-
"attribute": "required-label"
|
3472
|
+
"text": "CustomStateSet"
|
3473
|
+
}
|
3373
3474
|
},
|
3374
3475
|
{
|
3375
3476
|
"kind": "field",
|
3376
|
-
"name": "
|
3477
|
+
"name": "vertical",
|
3377
3478
|
"type": {
|
3378
|
-
"text": "
|
3479
|
+
"text": "boolean"
|
3379
3480
|
},
|
3380
|
-
"
|
3381
|
-
"
|
3382
|
-
"
|
3383
|
-
}
|
3481
|
+
"default": "false",
|
3482
|
+
"description": "If true, the navigation will be displayed vertically",
|
3483
|
+
"attribute": "vertical"
|
3484
|
+
}
|
3485
|
+
],
|
3486
|
+
"attributes": [
|
3384
3487
|
{
|
3385
|
-
"
|
3386
|
-
"name": "showValid",
|
3488
|
+
"name": "vertical",
|
3387
3489
|
"type": {
|
3388
3490
|
"text": "boolean"
|
3389
3491
|
},
|
3390
3492
|
"default": "false",
|
3391
|
-
"description": "If true,
|
3392
|
-
"
|
3393
|
-
}
|
3493
|
+
"description": "If true, the navigation will be displayed vertically",
|
3494
|
+
"fieldName": "vertical"
|
3495
|
+
}
|
3496
|
+
],
|
3497
|
+
"superclass": {
|
3498
|
+
"name": "SkfElement",
|
3499
|
+
"package": "@internal/components/skf-element"
|
3500
|
+
},
|
3501
|
+
"tagName": "skf-nav",
|
3502
|
+
"customElement": true
|
3503
|
+
}
|
3504
|
+
],
|
3505
|
+
"exports": [
|
3506
|
+
{
|
3507
|
+
"kind": "js",
|
3508
|
+
"name": "SkfNav",
|
3509
|
+
"declaration": {
|
3510
|
+
"name": "SkfNav",
|
3511
|
+
"module": "src/components/nav/nav.component.ts"
|
3512
|
+
}
|
3513
|
+
}
|
3514
|
+
],
|
3515
|
+
"typeDefinitionPath": "components/nav/nav.d.ts"
|
3516
|
+
},
|
3517
|
+
{
|
3518
|
+
"kind": "javascript-module",
|
3519
|
+
"path": "components/header/header.js",
|
3520
|
+
"declarations": [
|
3521
|
+
{
|
3522
|
+
"kind": "class",
|
3523
|
+
"description": "The `<skf-header>` component is to be used as the site-header in the app. The navigation will be collapsed to mobile-view if the menu items exceed the available width.",
|
3524
|
+
"name": "SkfHeader",
|
3525
|
+
"slots": [
|
3526
|
+
{
|
3527
|
+
"description": "Navigation items",
|
3528
|
+
"name": ""
|
3529
|
+
}
|
3530
|
+
],
|
3531
|
+
"members": [
|
3394
3532
|
{
|
3395
3533
|
"kind": "field",
|
3396
|
-
"name": "
|
3397
|
-
"
|
3398
|
-
|
3399
|
-
},
|
3400
|
-
"default": "'md'",
|
3401
|
-
"description": "Size of the input",
|
3402
|
-
"attribute": "size",
|
3534
|
+
"name": "compact",
|
3535
|
+
"description": "If true, sets header to display in compact mode only (hanburger menu and drawer)",
|
3536
|
+
"attribute": "compact",
|
3403
3537
|
"reflects": true
|
3404
3538
|
},
|
3405
3539
|
{
|
3406
3540
|
"kind": "field",
|
3407
|
-
"name": "
|
3541
|
+
"name": "hamburgerAriaLabel",
|
3542
|
+
"type": {
|
3543
|
+
"text": "string"
|
3544
|
+
},
|
3545
|
+
"default": "'Show navigation'",
|
3546
|
+
"description": "If defined, sets the aria-label for the hamburger button",
|
3547
|
+
"attribute": "hamburger-aria-label"
|
3548
|
+
},
|
3549
|
+
{
|
3550
|
+
"kind": "field",
|
3551
|
+
"name": "siteName",
|
3408
3552
|
"type": {
|
3409
3553
|
"text": "string | undefined"
|
3410
3554
|
},
|
3411
|
-
"description": "If defined,
|
3412
|
-
"attribute": "
|
3555
|
+
"description": "If defined, sets the app or site's name",
|
3556
|
+
"attribute": "site-name"
|
3413
3557
|
},
|
3414
3558
|
{
|
3415
3559
|
"kind": "field",
|
3416
|
-
"name": "
|
3560
|
+
"name": "siteUrl",
|
3417
3561
|
"type": {
|
3418
|
-
"text": "
|
3562
|
+
"text": "string | undefined"
|
3419
3563
|
},
|
3420
|
-
"
|
3421
|
-
"
|
3422
|
-
|
3564
|
+
"description": "If defined, sets the site's base-url for the \"logo-link\"",
|
3565
|
+
"attribute": "site-url"
|
3566
|
+
}
|
3567
|
+
],
|
3568
|
+
"attributes": [
|
3569
|
+
{
|
3570
|
+
"name": "compact",
|
3571
|
+
"description": "If true, sets header to display in compact mode only (hanburger menu and drawer)",
|
3572
|
+
"fieldName": "compact"
|
3423
3573
|
},
|
3424
3574
|
{
|
3425
|
-
"
|
3426
|
-
"name": "validateOn",
|
3575
|
+
"name": "hamburger-aria-label",
|
3427
3576
|
"type": {
|
3428
|
-
"text": "
|
3577
|
+
"text": "string"
|
3429
3578
|
},
|
3430
|
-
"default": "'
|
3431
|
-
"description": "
|
3432
|
-
"
|
3579
|
+
"default": "'Show navigation'",
|
3580
|
+
"description": "If defined, sets the aria-label for the hamburger button",
|
3581
|
+
"fieldName": "hamburgerAriaLabel"
|
3433
3582
|
},
|
3434
3583
|
{
|
3435
|
-
"
|
3436
|
-
"name": "value",
|
3437
|
-
"description": "The current value of the input field",
|
3438
|
-
"attribute": "value"
|
3439
|
-
}
|
3440
|
-
],
|
3441
|
-
"events": [
|
3442
|
-
{
|
3584
|
+
"name": "site-name",
|
3443
3585
|
"type": {
|
3444
|
-
"text": "
|
3586
|
+
"text": "string | undefined"
|
3445
3587
|
},
|
3446
|
-
"description": "
|
3447
|
-
"
|
3588
|
+
"description": "If defined, sets the app or site's name",
|
3589
|
+
"fieldName": "siteName"
|
3448
3590
|
},
|
3449
3591
|
{
|
3592
|
+
"name": "site-url",
|
3450
3593
|
"type": {
|
3451
|
-
"text": "
|
3594
|
+
"text": "string | undefined"
|
3452
3595
|
},
|
3453
|
-
"description": "
|
3454
|
-
"
|
3596
|
+
"description": "If defined, sets the site's base-url for the \"logo-link\"",
|
3597
|
+
"fieldName": "siteUrl"
|
3455
3598
|
}
|
3456
3599
|
],
|
3457
|
-
"
|
3600
|
+
"superclass": {
|
3601
|
+
"name": "SkfElement",
|
3602
|
+
"package": "@internal/components/skf-element"
|
3603
|
+
},
|
3604
|
+
"tagName": "skf-header",
|
3605
|
+
"customElement": true
|
3606
|
+
}
|
3607
|
+
],
|
3608
|
+
"exports": [
|
3609
|
+
{
|
3610
|
+
"kind": "js",
|
3611
|
+
"name": "SkfHeader",
|
3612
|
+
"declaration": {
|
3613
|
+
"name": "SkfHeader",
|
3614
|
+
"module": "src/components/header/header.component.ts"
|
3615
|
+
}
|
3616
|
+
}
|
3617
|
+
],
|
3618
|
+
"typeDefinitionPath": "components/header/header.d.ts"
|
3619
|
+
},
|
3620
|
+
{
|
3621
|
+
"kind": "javascript-module",
|
3622
|
+
"path": "components/input/input.js",
|
3623
|
+
"declarations": [
|
3624
|
+
{
|
3625
|
+
"kind": "class",
|
3626
|
+
"description": "The skf-text-field is used to create a text input field. It can be used inside a form element or standalone\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/9481fa-input-field) for design principles",
|
3627
|
+
"name": "SkfInput",
|
3628
|
+
"slots": [
|
3458
3629
|
{
|
3459
|
-
"
|
3460
|
-
|
3461
|
-
|
3462
|
-
|
3463
|
-
|
3464
|
-
"default": "false"
|
3465
|
-
},
|
3630
|
+
"description": "The Inputs label. Alternatively, you can use the `label` attribute.",
|
3631
|
+
"name": ""
|
3632
|
+
}
|
3633
|
+
],
|
3634
|
+
"members": [
|
3466
3635
|
{
|
3636
|
+
"kind": "field",
|
3637
|
+
"name": "customError",
|
3467
3638
|
"type": {
|
3468
|
-
"text": "
|
3639
|
+
"text": "string | undefined"
|
3469
3640
|
},
|
3470
|
-
"
|
3471
|
-
"name": "required",
|
3472
|
-
"default": "false"
|
3641
|
+
"privacy": "private"
|
3473
3642
|
},
|
3474
3643
|
{
|
3644
|
+
"kind": "field",
|
3475
3645
|
"name": "autocomplete",
|
3476
3646
|
"type": {
|
3477
3647
|
"text": "HTMLInputElement['autocomplete'] | undefined"
|
3478
3648
|
},
|
3479
3649
|
"description": "Indicates whether the value of the control can be automatically completed by the browser. See\n[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/autocomplete) for details.",
|
3480
|
-
"
|
3650
|
+
"attribute": "autocomplete"
|
3481
3651
|
},
|
3482
3652
|
{
|
3483
|
-
"
|
3653
|
+
"kind": "field",
|
3654
|
+
"name": "buttonAriaLabelClear",
|
3484
3655
|
"type": {
|
3485
3656
|
"text": "string"
|
3486
3657
|
},
|
3487
3658
|
"default": "'Clear input'",
|
3488
3659
|
"description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
|
3489
|
-
"
|
3660
|
+
"attribute": "button-aria-label-clear"
|
3490
3661
|
},
|
3491
3662
|
{
|
3492
|
-
"
|
3663
|
+
"kind": "field",
|
3664
|
+
"name": "buttonAriaLabelHide",
|
3493
3665
|
"type": {
|
3494
3666
|
"text": "string"
|
3495
3667
|
},
|
3496
3668
|
"default": "'Hide password'",
|
3497
3669
|
"description": "Custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
|
3498
|
-
"
|
3670
|
+
"attribute": "button-aria-label-hide"
|
3499
3671
|
},
|
3500
3672
|
{
|
3501
|
-
"
|
3673
|
+
"kind": "field",
|
3674
|
+
"name": "buttonAriaLabelShow",
|
3502
3675
|
"type": {
|
3503
3676
|
"text": "string"
|
3504
3677
|
},
|
3505
3678
|
"default": "'Show password'",
|
3506
3679
|
"description": "Custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
|
3507
|
-
"
|
3680
|
+
"attribute": "button-aria-label-show"
|
3508
3681
|
},
|
3509
3682
|
{
|
3510
|
-
"
|
3683
|
+
"kind": "field",
|
3684
|
+
"name": "customInvalid",
|
3511
3685
|
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
3512
|
-
"
|
3686
|
+
"attribute": "custom-invalid",
|
3687
|
+
"reflects": true
|
3513
3688
|
},
|
3514
3689
|
{
|
3690
|
+
"kind": "field",
|
3515
3691
|
"name": "debug",
|
3516
3692
|
"type": {
|
3517
3693
|
"text": "boolean"
|
3518
3694
|
},
|
3519
3695
|
"default": "false",
|
3520
3696
|
"description": "If true, outputs helping hints in console",
|
3521
|
-
"
|
3697
|
+
"attribute": "debug"
|
3522
3698
|
},
|
3523
3699
|
{
|
3524
|
-
"
|
3700
|
+
"kind": "field",
|
3701
|
+
"name": "hideLabel",
|
3525
3702
|
"type": {
|
3526
3703
|
"text": "boolean"
|
3527
3704
|
},
|
3528
3705
|
"default": "false",
|
3529
3706
|
"description": "If true, hides the label visually",
|
3530
|
-
"
|
3707
|
+
"attribute": "hide-label"
|
3531
3708
|
},
|
3532
3709
|
{
|
3710
|
+
"kind": "field",
|
3533
3711
|
"name": "hint",
|
3534
3712
|
"type": {
|
3535
3713
|
"text": "string | undefined"
|
3536
3714
|
},
|
3537
3715
|
"description": "If defined, displays informational text below the field",
|
3538
|
-
"
|
3716
|
+
"attribute": "hint"
|
3539
3717
|
},
|
3540
3718
|
{
|
3719
|
+
"kind": "field",
|
3541
3720
|
"name": "inputmode",
|
3542
3721
|
"type": {
|
3543
3722
|
"text": "HTMLInputElement['inputMode']"
|
3544
3723
|
},
|
3545
3724
|
"default": "'text'",
|
3546
3725
|
"description": "Provides a hint about the type of data that might be entered by the user while editing the element or its contents. See\n[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inputMode) for details.",
|
3547
|
-
"
|
3726
|
+
"attribute": "inputmode"
|
3548
3727
|
},
|
3549
3728
|
{
|
3729
|
+
"kind": "field",
|
3550
3730
|
"name": "label",
|
3551
3731
|
"type": {
|
3552
3732
|
"text": "string | undefined"
|
3553
3733
|
},
|
3554
3734
|
"description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
|
3555
|
-
"
|
3735
|
+
"attribute": "label"
|
3556
3736
|
},
|
3557
3737
|
{
|
3738
|
+
"kind": "field",
|
3558
3739
|
"name": "leading",
|
3559
3740
|
"type": {
|
3560
3741
|
"text": "string | undefined"
|
3561
3742
|
},
|
3562
3743
|
"description": "If defined, displays a prefix/adornment before the input-element",
|
3563
|
-
"
|
3744
|
+
"attribute": "leading"
|
3564
3745
|
},
|
3565
3746
|
{
|
3747
|
+
"kind": "field",
|
3566
3748
|
"name": "max",
|
3567
3749
|
"type": {
|
3568
3750
|
"text": "number | string | undefined"
|
3569
3751
|
},
|
3570
3752
|
"description": "If defined, sets the maximum value to accept for this input",
|
3571
|
-
"
|
3753
|
+
"attribute": "max"
|
3572
3754
|
},
|
3573
3755
|
{
|
3574
|
-
"
|
3756
|
+
"kind": "field",
|
3757
|
+
"name": "maxLength",
|
3575
3758
|
"type": {
|
3576
3759
|
"text": "number | undefined"
|
3577
3760
|
},
|
3578
3761
|
"description": "If defined, sets the maximum character length to accept for this input",
|
3579
|
-
"
|
3762
|
+
"attribute": "maxlength"
|
3580
3763
|
},
|
3581
3764
|
{
|
3765
|
+
"kind": "field",
|
3582
3766
|
"name": "min",
|
3583
3767
|
"type": {
|
3584
3768
|
"text": "number | string | undefined"
|
3585
3769
|
},
|
3586
3770
|
"description": "If defined, sets the minimum value to accept for this input",
|
3587
|
-
"
|
3771
|
+
"attribute": "min"
|
3588
3772
|
},
|
3589
3773
|
{
|
3590
|
-
"
|
3774
|
+
"kind": "field",
|
3775
|
+
"name": "minLength",
|
3591
3776
|
"type": {
|
3592
3777
|
"text": "number | undefined"
|
3593
3778
|
},
|
3594
3779
|
"description": "If defined, sets the minimum character length to accept for this input",
|
3595
|
-
"
|
3780
|
+
"attribute": "minlength"
|
3596
3781
|
},
|
3597
3782
|
{
|
3783
|
+
"kind": "field",
|
3598
3784
|
"name": "name",
|
3599
3785
|
"type": {
|
3600
3786
|
"text": "string | undefined"
|
3601
3787
|
},
|
3602
3788
|
"description": "If defined, adds name to the input-element",
|
3603
|
-
"
|
3789
|
+
"attribute": "name",
|
3790
|
+
"reflects": true
|
3604
3791
|
},
|
3605
3792
|
{
|
3793
|
+
"kind": "field",
|
3606
3794
|
"name": "pattern",
|
3607
3795
|
"type": {
|
3608
3796
|
"text": "string | undefined"
|
3609
3797
|
},
|
3610
3798
|
"description": "If defined, adds name to the input-element",
|
3611
|
-
"
|
3799
|
+
"attribute": "pattern"
|
3612
3800
|
},
|
3613
3801
|
{
|
3802
|
+
"kind": "field",
|
3614
3803
|
"name": "placeholder",
|
3615
3804
|
"type": {
|
3616
3805
|
"text": "string | undefined"
|
3617
3806
|
},
|
3618
3807
|
"description": "If defined, displays placeholder text",
|
3619
|
-
"
|
3808
|
+
"attribute": "placeholder"
|
3620
3809
|
},
|
3621
3810
|
{
|
3811
|
+
"kind": "field",
|
3622
3812
|
"name": "readonly",
|
3623
3813
|
"type": {
|
3624
3814
|
"text": "boolean"
|
3625
3815
|
},
|
3626
3816
|
"default": "false",
|
3627
3817
|
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
3628
|
-
"
|
3818
|
+
"attribute": "readonly"
|
3629
3819
|
},
|
3630
3820
|
{
|
3631
|
-
"
|
3821
|
+
"kind": "field",
|
3822
|
+
"name": "requiredLabel",
|
3632
3823
|
"type": {
|
3633
3824
|
"text": "string | undefined"
|
3634
3825
|
},
|
3635
3826
|
"description": "If defined, renders an alternative A11y text for the asterisk",
|
3636
|
-
"
|
3827
|
+
"attribute": "required-label"
|
3637
3828
|
},
|
3638
3829
|
{
|
3830
|
+
"kind": "field",
|
3639
3831
|
"name": "severity",
|
3640
3832
|
"type": {
|
3641
3833
|
"text": "FormFieldSeverity | undefined"
|
3642
3834
|
},
|
3643
3835
|
"description": "If defined, displays provided severity state",
|
3644
|
-
"
|
3836
|
+
"attribute": "severity",
|
3837
|
+
"reflects": true
|
3645
3838
|
},
|
3646
3839
|
{
|
3647
|
-
"
|
3840
|
+
"kind": "field",
|
3841
|
+
"name": "showValid",
|
3648
3842
|
"type": {
|
3649
3843
|
"text": "boolean"
|
3650
3844
|
},
|
3651
3845
|
"default": "false",
|
3652
3846
|
"description": "If true, displays valid state after interaction",
|
3653
|
-
"
|
3847
|
+
"attribute": "show-valid"
|
3654
3848
|
},
|
3655
3849
|
{
|
3850
|
+
"kind": "field",
|
3656
3851
|
"name": "size",
|
3657
3852
|
"type": {
|
3658
3853
|
"text": "'sm' | 'md'"
|
3659
3854
|
},
|
3660
3855
|
"default": "'md'",
|
3661
3856
|
"description": "Size of the input",
|
3662
|
-
"
|
3857
|
+
"attribute": "size",
|
3858
|
+
"reflects": true
|
3663
3859
|
},
|
3664
3860
|
{
|
3861
|
+
"kind": "field",
|
3665
3862
|
"name": "trailing",
|
3666
3863
|
"type": {
|
3667
3864
|
"text": "string | undefined"
|
3668
3865
|
},
|
3669
3866
|
"description": "If defined, displays a suffix/adornment after the input-element",
|
3670
|
-
"
|
3867
|
+
"attribute": "trailing"
|
3671
3868
|
},
|
3672
3869
|
{
|
3870
|
+
"kind": "field",
|
3673
3871
|
"name": "type",
|
3674
3872
|
"type": {
|
3675
3873
|
"text": "'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url'"
|
3676
3874
|
},
|
3677
3875
|
"default": "'text'",
|
3678
3876
|
"description": "Type of input",
|
3679
|
-
"
|
3877
|
+
"attribute": "type"
|
3680
3878
|
},
|
3681
3879
|
{
|
3682
|
-
"
|
3880
|
+
"kind": "field",
|
3881
|
+
"name": "validateOn",
|
3683
3882
|
"type": {
|
3684
3883
|
"text": "'input' | 'change' | 'submit'"
|
3685
3884
|
},
|
3686
3885
|
"default": "'change'",
|
3687
3886
|
"description": "Sets validation start",
|
3688
|
-
"
|
3887
|
+
"attribute": "validate-on"
|
3689
3888
|
},
|
3690
3889
|
{
|
3890
|
+
"kind": "field",
|
3691
3891
|
"name": "value",
|
3692
3892
|
"description": "The current value of the input field",
|
3693
|
-
"
|
3893
|
+
"attribute": "value"
|
3694
3894
|
}
|
3695
3895
|
],
|
3696
|
-
"
|
3697
|
-
"name": "FormBase",
|
3698
|
-
"package": "@internal/components/formBase.js"
|
3699
|
-
},
|
3700
|
-
"tagName": "skf-input",
|
3701
|
-
"customElement": true
|
3702
|
-
}
|
3703
|
-
],
|
3704
|
-
"exports": [
|
3705
|
-
{
|
3706
|
-
"kind": "js",
|
3707
|
-
"name": "SkfInput",
|
3708
|
-
"declaration": {
|
3709
|
-
"name": "SkfInput",
|
3710
|
-
"module": "src/components/input/input.component.ts"
|
3711
|
-
}
|
3712
|
-
}
|
3713
|
-
],
|
3714
|
-
"typeDefinitionPath": "components/input/input.d.ts"
|
3715
|
-
},
|
3716
|
-
{
|
3717
|
-
"kind": "javascript-module",
|
3718
|
-
"path": "components/link/link.js",
|
3719
|
-
"declarations": [
|
3720
|
-
{
|
3721
|
-
"kind": "class",
|
3722
|
-
"description": "The `<skf-link>` can be used as either a regular link or a link styled semantic button",
|
3723
|
-
"name": "SkfLink",
|
3724
|
-
"slots": [
|
3896
|
+
"events": [
|
3725
3897
|
{
|
3726
|
-
"
|
3727
|
-
|
3898
|
+
"type": {
|
3899
|
+
"text": "CustomEvent"
|
3900
|
+
},
|
3901
|
+
"description": "Fires when the value of the input changes",
|
3902
|
+
"name": "change"
|
3903
|
+
},
|
3904
|
+
{
|
3905
|
+
"type": {
|
3906
|
+
"text": "CustomEvent"
|
3907
|
+
},
|
3908
|
+
"description": "Fires when the input is invalid",
|
3909
|
+
"name": "invalid"
|
3728
3910
|
}
|
3729
3911
|
],
|
3730
|
-
"
|
3912
|
+
"attributes": [
|
3731
3913
|
{
|
3732
|
-
"kind": "field",
|
3733
|
-
"name": "classMap",
|
3734
3914
|
"type": {
|
3735
|
-
"text": "
|
3915
|
+
"text": "boolean"
|
3736
3916
|
},
|
3737
|
-
"
|
3738
|
-
"
|
3917
|
+
"description": "If true, sets disabled state",
|
3918
|
+
"name": "disabled",
|
3919
|
+
"default": "false"
|
3739
3920
|
},
|
3740
3921
|
{
|
3741
|
-
"kind": "field",
|
3742
|
-
"name": "as",
|
3743
3922
|
"type": {
|
3744
|
-
"text": "
|
3923
|
+
"text": "boolean"
|
3745
3924
|
},
|
3746
|
-
"
|
3747
|
-
"
|
3748
|
-
"
|
3749
|
-
"reflects": true
|
3925
|
+
"description": "If true, value is required or must be checked for the form to be submittable",
|
3926
|
+
"name": "required",
|
3927
|
+
"default": "false"
|
3750
3928
|
},
|
3751
3929
|
{
|
3752
|
-
"
|
3753
|
-
"name": "color",
|
3930
|
+
"name": "autocomplete",
|
3754
3931
|
"type": {
|
3755
|
-
"text": "'
|
3932
|
+
"text": "HTMLInputElement['autocomplete'] | undefined"
|
3756
3933
|
},
|
3757
|
-
"
|
3758
|
-
"
|
3759
|
-
"attribute": "color",
|
3760
|
-
"reflects": true
|
3934
|
+
"description": "Indicates whether the value of the control can be automatically completed by the browser. See\n[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/autocomplete) for details.",
|
3935
|
+
"fieldName": "autocomplete"
|
3761
3936
|
},
|
3762
3937
|
{
|
3763
|
-
"
|
3764
|
-
"name": "disabled",
|
3938
|
+
"name": "button-aria-label-clear",
|
3765
3939
|
"type": {
|
3766
|
-
"text": "
|
3940
|
+
"text": "string"
|
3767
3941
|
},
|
3768
|
-
"default": "
|
3769
|
-
"description": "
|
3770
|
-
"
|
3771
|
-
"reflects": true
|
3942
|
+
"default": "'Clear input'",
|
3943
|
+
"description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
|
3944
|
+
"fieldName": "buttonAriaLabelClear"
|
3772
3945
|
},
|
3773
3946
|
{
|
3774
|
-
"
|
3775
|
-
"name": "download",
|
3947
|
+
"name": "button-aria-label-hide",
|
3776
3948
|
"type": {
|
3777
|
-
"text": "string
|
3949
|
+
"text": "string"
|
3778
3950
|
},
|
3779
|
-
"
|
3780
|
-
"
|
3951
|
+
"default": "'Hide password'",
|
3952
|
+
"description": "Custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
|
3953
|
+
"fieldName": "buttonAriaLabelHide"
|
3781
3954
|
},
|
3782
3955
|
{
|
3783
|
-
"
|
3784
|
-
"name": "href",
|
3956
|
+
"name": "button-aria-label-show",
|
3785
3957
|
"type": {
|
3786
|
-
"text": "string
|
3958
|
+
"text": "string"
|
3787
3959
|
},
|
3788
|
-
"
|
3789
|
-
"
|
3960
|
+
"default": "'Show password'",
|
3961
|
+
"description": "Custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
|
3962
|
+
"fieldName": "buttonAriaLabelShow"
|
3790
3963
|
},
|
3791
3964
|
{
|
3792
|
-
"
|
3793
|
-
"
|
3794
|
-
"
|
3795
|
-
"text": "Icon | undefined"
|
3796
|
-
},
|
3797
|
-
"description": "If defined, renders an icon before or after the text",
|
3798
|
-
"attribute": "icon",
|
3799
|
-
"expandedType": {
|
3800
|
-
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
3801
|
-
}
|
3965
|
+
"name": "custom-invalid",
|
3966
|
+
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
3967
|
+
"fieldName": "customInvalid"
|
3802
3968
|
},
|
3803
3969
|
{
|
3804
|
-
"
|
3805
|
-
"name": "iconPlacement",
|
3970
|
+
"name": "debug",
|
3806
3971
|
"type": {
|
3807
|
-
"text": "
|
3972
|
+
"text": "boolean"
|
3808
3973
|
},
|
3809
|
-
"default": "
|
3810
|
-
"description": "
|
3811
|
-
"
|
3812
|
-
"reflects": true
|
3974
|
+
"default": "false",
|
3975
|
+
"description": "If true, outputs helping hints in console",
|
3976
|
+
"fieldName": "debug"
|
3813
3977
|
},
|
3814
3978
|
{
|
3815
|
-
"
|
3816
|
-
"
|
3817
|
-
|
3979
|
+
"name": "hide-label",
|
3980
|
+
"type": {
|
3981
|
+
"text": "boolean"
|
3982
|
+
},
|
3983
|
+
"default": "false",
|
3984
|
+
"description": "If true, hides the label visually",
|
3985
|
+
"fieldName": "hideLabel"
|
3818
3986
|
},
|
3819
3987
|
{
|
3820
|
-
"
|
3821
|
-
"name": "rel",
|
3988
|
+
"name": "hint",
|
3822
3989
|
"type": {
|
3823
3990
|
"text": "string | undefined"
|
3824
3991
|
},
|
3825
|
-
"description": "If defined,
|
3826
|
-
"
|
3992
|
+
"description": "If defined, displays informational text below the field",
|
3993
|
+
"fieldName": "hint"
|
3827
3994
|
},
|
3828
3995
|
{
|
3829
|
-
"
|
3830
|
-
"name": "route",
|
3996
|
+
"name": "inputmode",
|
3831
3997
|
"type": {
|
3832
|
-
"text": "
|
3998
|
+
"text": "HTMLInputElement['inputMode']"
|
3833
3999
|
},
|
3834
|
-
"
|
3835
|
-
"
|
3836
|
-
"
|
4000
|
+
"default": "'text'",
|
4001
|
+
"description": "Provides a hint about the type of data that might be entered by the user while editing the element or its contents. See\n[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inputMode) for details.",
|
4002
|
+
"fieldName": "inputmode"
|
3837
4003
|
},
|
3838
4004
|
{
|
3839
|
-
"
|
3840
|
-
"name": "stretch",
|
4005
|
+
"name": "label",
|
3841
4006
|
"type": {
|
3842
|
-
"text": "
|
4007
|
+
"text": "string | undefined"
|
3843
4008
|
},
|
3844
|
-
"
|
3845
|
-
"
|
3846
|
-
"attribute": "stretch",
|
3847
|
-
"reflects": true
|
4009
|
+
"description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
|
4010
|
+
"fieldName": "label"
|
3848
4011
|
},
|
3849
4012
|
{
|
3850
|
-
"
|
3851
|
-
"name": "target",
|
4013
|
+
"name": "leading",
|
3852
4014
|
"type": {
|
3853
|
-
"text": "
|
4015
|
+
"text": "string | undefined"
|
3854
4016
|
},
|
3855
|
-
"description": "If defined,
|
3856
|
-
"
|
4017
|
+
"description": "If defined, displays a prefix/adornment before the input-element",
|
4018
|
+
"fieldName": "leading"
|
3857
4019
|
},
|
3858
4020
|
{
|
3859
|
-
"
|
3860
|
-
"name": "type",
|
4021
|
+
"name": "max",
|
3861
4022
|
"type": {
|
3862
|
-
"text": "
|
4023
|
+
"text": "number | string | undefined"
|
3863
4024
|
},
|
3864
|
-
"
|
3865
|
-
"
|
3866
|
-
|
3867
|
-
"expandedType": {
|
3868
|
-
"text": "'submit' | 'reset' | 'button'"
|
3869
|
-
}
|
3870
|
-
}
|
3871
|
-
],
|
3872
|
-
"attributes": [
|
4025
|
+
"description": "If defined, sets the maximum value to accept for this input",
|
4026
|
+
"fieldName": "max"
|
4027
|
+
},
|
3873
4028
|
{
|
3874
|
-
"name": "
|
4029
|
+
"name": "maxlength",
|
3875
4030
|
"type": {
|
3876
|
-
"text": "
|
4031
|
+
"text": "number | undefined"
|
3877
4032
|
},
|
3878
|
-
"
|
3879
|
-
"
|
3880
|
-
"fieldName": "as"
|
4033
|
+
"description": "If defined, sets the maximum character length to accept for this input",
|
4034
|
+
"fieldName": "maxLength"
|
3881
4035
|
},
|
3882
4036
|
{
|
3883
|
-
"name": "
|
4037
|
+
"name": "min",
|
3884
4038
|
"type": {
|
3885
|
-
"text": "
|
4039
|
+
"text": "number | string | undefined"
|
3886
4040
|
},
|
3887
|
-
"
|
3888
|
-
"
|
3889
|
-
"fieldName": "color"
|
4041
|
+
"description": "If defined, sets the minimum value to accept for this input",
|
4042
|
+
"fieldName": "min"
|
3890
4043
|
},
|
3891
4044
|
{
|
3892
|
-
"name": "
|
4045
|
+
"name": "minlength",
|
3893
4046
|
"type": {
|
3894
|
-
"text": "
|
4047
|
+
"text": "number | undefined"
|
3895
4048
|
},
|
3896
|
-
"
|
3897
|
-
"
|
3898
|
-
"fieldName": "disabled"
|
4049
|
+
"description": "If defined, sets the minimum character length to accept for this input",
|
4050
|
+
"fieldName": "minLength"
|
3899
4051
|
},
|
3900
4052
|
{
|
3901
|
-
"name": "
|
4053
|
+
"name": "name",
|
3902
4054
|
"type": {
|
3903
4055
|
"text": "string | undefined"
|
3904
4056
|
},
|
3905
|
-
"description": "If defined,
|
3906
|
-
"fieldName": "
|
4057
|
+
"description": "If defined, adds name to the input-element",
|
4058
|
+
"fieldName": "name"
|
3907
4059
|
},
|
3908
4060
|
{
|
3909
|
-
"name": "
|
4061
|
+
"name": "pattern",
|
3910
4062
|
"type": {
|
3911
4063
|
"text": "string | undefined"
|
3912
4064
|
},
|
3913
|
-
"description": "If defined,
|
3914
|
-
"fieldName": "
|
4065
|
+
"description": "If defined, adds name to the input-element",
|
4066
|
+
"fieldName": "pattern"
|
3915
4067
|
},
|
3916
4068
|
{
|
3917
|
-
"name": "
|
4069
|
+
"name": "placeholder",
|
3918
4070
|
"type": {
|
3919
|
-
"text": "
|
4071
|
+
"text": "string | undefined"
|
3920
4072
|
},
|
3921
|
-
"description": "If defined,
|
3922
|
-
"fieldName": "
|
3923
|
-
"expandedType": {
|
3924
|
-
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
3925
|
-
}
|
4073
|
+
"description": "If defined, displays placeholder text",
|
4074
|
+
"fieldName": "placeholder"
|
3926
4075
|
},
|
3927
4076
|
{
|
3928
|
-
"name": "
|
4077
|
+
"name": "readonly",
|
3929
4078
|
"type": {
|
3930
|
-
"text": "
|
4079
|
+
"text": "boolean"
|
3931
4080
|
},
|
3932
|
-
"default": "
|
3933
|
-
"description": "
|
3934
|
-
"fieldName": "
|
4081
|
+
"default": "false",
|
4082
|
+
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
4083
|
+
"fieldName": "readonly"
|
3935
4084
|
},
|
3936
4085
|
{
|
3937
|
-
"name": "
|
4086
|
+
"name": "required-label",
|
3938
4087
|
"type": {
|
3939
4088
|
"text": "string | undefined"
|
3940
4089
|
},
|
3941
|
-
"description": "If defined,
|
3942
|
-
"fieldName": "
|
4090
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
4091
|
+
"fieldName": "requiredLabel"
|
3943
4092
|
},
|
3944
4093
|
{
|
3945
|
-
"name": "
|
4094
|
+
"name": "severity",
|
3946
4095
|
"type": {
|
3947
|
-
"text": "
|
4096
|
+
"text": "FormFieldSeverity | undefined"
|
3948
4097
|
},
|
3949
|
-
"description": "If defined,
|
3950
|
-
"fieldName": "
|
4098
|
+
"description": "If defined, displays provided severity state",
|
4099
|
+
"fieldName": "severity"
|
3951
4100
|
},
|
3952
4101
|
{
|
3953
|
-
"name": "
|
4102
|
+
"name": "show-valid",
|
3954
4103
|
"type": {
|
3955
4104
|
"text": "boolean"
|
3956
4105
|
},
|
3957
4106
|
"default": "false",
|
3958
|
-
"description": "If true,
|
3959
|
-
"fieldName": "
|
4107
|
+
"description": "If true, displays valid state after interaction",
|
4108
|
+
"fieldName": "showValid"
|
3960
4109
|
},
|
3961
4110
|
{
|
3962
|
-
"name": "
|
4111
|
+
"name": "size",
|
3963
4112
|
"type": {
|
3964
|
-
"text": "'
|
4113
|
+
"text": "'sm' | 'md'"
|
3965
4114
|
},
|
3966
|
-
"
|
3967
|
-
"
|
4115
|
+
"default": "'md'",
|
4116
|
+
"description": "Size of the input",
|
4117
|
+
"fieldName": "size"
|
4118
|
+
},
|
4119
|
+
{
|
4120
|
+
"name": "trailing",
|
4121
|
+
"type": {
|
4122
|
+
"text": "string | undefined"
|
4123
|
+
},
|
4124
|
+
"description": "If defined, displays a suffix/adornment after the input-element",
|
4125
|
+
"fieldName": "trailing"
|
3968
4126
|
},
|
3969
4127
|
{
|
3970
4128
|
"name": "type",
|
3971
4129
|
"type": {
|
3972
|
-
"text": "
|
4130
|
+
"text": "'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url'"
|
3973
4131
|
},
|
3974
|
-
"default": "'
|
3975
|
-
"description": "
|
3976
|
-
"fieldName": "type"
|
3977
|
-
|
3978
|
-
|
3979
|
-
|
4132
|
+
"default": "'text'",
|
4133
|
+
"description": "Type of input",
|
4134
|
+
"fieldName": "type"
|
4135
|
+
},
|
4136
|
+
{
|
4137
|
+
"name": "validate-on",
|
4138
|
+
"type": {
|
4139
|
+
"text": "'input' | 'change' | 'submit'"
|
4140
|
+
},
|
4141
|
+
"default": "'change'",
|
4142
|
+
"description": "Sets validation start",
|
4143
|
+
"fieldName": "validateOn"
|
4144
|
+
},
|
4145
|
+
{
|
4146
|
+
"name": "value",
|
4147
|
+
"description": "The current value of the input field",
|
4148
|
+
"fieldName": "value"
|
3980
4149
|
}
|
3981
4150
|
],
|
3982
4151
|
"superclass": {
|
3983
|
-
"name": "
|
3984
|
-
"package": "@internal/components/
|
4152
|
+
"name": "FormBase",
|
4153
|
+
"package": "@internal/components/formBase.js"
|
3985
4154
|
},
|
3986
|
-
"tagName": "skf-
|
4155
|
+
"tagName": "skf-input",
|
3987
4156
|
"customElement": true
|
3988
4157
|
}
|
3989
4158
|
],
|
3990
4159
|
"exports": [
|
3991
4160
|
{
|
3992
4161
|
"kind": "js",
|
3993
|
-
"name": "
|
4162
|
+
"name": "SkfInput",
|
3994
4163
|
"declaration": {
|
3995
|
-
"name": "
|
3996
|
-
"module": "src/components/
|
4164
|
+
"name": "SkfInput",
|
4165
|
+
"module": "src/components/input/input.component.ts"
|
3997
4166
|
}
|
3998
4167
|
}
|
3999
4168
|
],
|
4000
|
-
"typeDefinitionPath": "components/
|
4169
|
+
"typeDefinitionPath": "components/input/input.d.ts"
|
4001
4170
|
},
|
4002
4171
|
{
|
4003
4172
|
"kind": "javascript-module",
|
@@ -4020,20 +4189,23 @@
|
|
4020
4189
|
"members": [
|
4021
4190
|
{
|
4022
4191
|
"kind": "field",
|
4023
|
-
"name": "
|
4192
|
+
"name": "#internals",
|
4193
|
+
"privacy": "private",
|
4024
4194
|
"type": {
|
4025
|
-
"text": "
|
4195
|
+
"text": "ElementInternals"
|
4026
4196
|
},
|
4027
|
-
"
|
4197
|
+
"inheritedFrom": {
|
4198
|
+
"name": "SkfLink",
|
4199
|
+
"module": "src/components/link/link.component.ts"
|
4200
|
+
}
|
4028
4201
|
},
|
4029
4202
|
{
|
4030
4203
|
"kind": "field",
|
4031
|
-
"name": "
|
4204
|
+
"name": "#states",
|
4205
|
+
"privacy": "private",
|
4032
4206
|
"type": {
|
4033
|
-
"text": "
|
4207
|
+
"text": "CustomStateSet"
|
4034
4208
|
},
|
4035
|
-
"static": true,
|
4036
|
-
"default": "{ 'menu-item': true }",
|
4037
4209
|
"inheritedFrom": {
|
4038
4210
|
"name": "SkfLink",
|
4039
4211
|
"module": "src/components/link/link.component.ts"
|
@@ -4043,12 +4215,11 @@
|
|
4043
4215
|
"kind": "field",
|
4044
4216
|
"name": "as",
|
4045
4217
|
"type": {
|
4046
|
-
"text": "'button' | '
|
4218
|
+
"text": "'button' | 'link'"
|
4047
4219
|
},
|
4048
|
-
"default": "'
|
4220
|
+
"default": "'link'",
|
4049
4221
|
"description": "Defines the semantic element to render",
|
4050
4222
|
"attribute": "as",
|
4051
|
-
"reflects": true,
|
4052
4223
|
"inheritedFrom": {
|
4053
4224
|
"name": "SkfLink",
|
4054
4225
|
"module": "src/components/link/link.component.ts"
|
@@ -4058,12 +4229,14 @@
|
|
4058
4229
|
"kind": "field",
|
4059
4230
|
"name": "color",
|
4060
4231
|
"type": {
|
4061
|
-
"text": "
|
4232
|
+
"text": "Color"
|
4062
4233
|
},
|
4063
4234
|
"default": "'primary'",
|
4064
4235
|
"description": "Defines the text-color",
|
4065
4236
|
"attribute": "color",
|
4066
|
-
"
|
4237
|
+
"expandedType": {
|
4238
|
+
"text": "'primary' | 'inverse'"
|
4239
|
+
},
|
4067
4240
|
"inheritedFrom": {
|
4068
4241
|
"name": "SkfLink",
|
4069
4242
|
"module": "src/components/link/link.component.ts"
|
@@ -4078,7 +4251,6 @@
|
|
4078
4251
|
"default": "false",
|
4079
4252
|
"description": "If true, disables the link",
|
4080
4253
|
"attribute": "disabled",
|
4081
|
-
"reflects": true,
|
4082
4254
|
"inheritedFrom": {
|
4083
4255
|
"name": "SkfLink",
|
4084
4256
|
"module": "src/components/link/link.component.ts"
|
@@ -4088,8 +4260,9 @@
|
|
4088
4260
|
"kind": "field",
|
4089
4261
|
"name": "download",
|
4090
4262
|
"type": {
|
4091
|
-
"text": "
|
4263
|
+
"text": "boolean"
|
4092
4264
|
},
|
4265
|
+
"default": "false",
|
4093
4266
|
"description": "If defined, downloads the url",
|
4094
4267
|
"attribute": "download",
|
4095
4268
|
"inheritedFrom": {
|
@@ -4128,23 +4301,13 @@
|
|
4128
4301
|
},
|
4129
4302
|
{
|
4130
4303
|
"kind": "field",
|
4131
|
-
"name": "
|
4304
|
+
"name": "iconRight",
|
4132
4305
|
"type": {
|
4133
|
-
"text": "
|
4306
|
+
"text": "boolean"
|
4134
4307
|
},
|
4135
|
-
"default": "
|
4136
|
-
"description": "
|
4137
|
-
"attribute": "icon-
|
4138
|
-
"reflects": true,
|
4139
|
-
"inheritedFrom": {
|
4140
|
-
"name": "SkfLink",
|
4141
|
-
"module": "src/components/link/link.component.ts"
|
4142
|
-
}
|
4143
|
-
},
|
4144
|
-
{
|
4145
|
-
"kind": "field",
|
4146
|
-
"name": "onClick",
|
4147
|
-
"description": "If defined, accepts a function that runs on click. Forwards optional route as second argument.",
|
4308
|
+
"default": "false",
|
4309
|
+
"description": "If true, the icon is placed to the right in relation to the text",
|
4310
|
+
"attribute": "icon-right",
|
4148
4311
|
"inheritedFrom": {
|
4149
4312
|
"name": "SkfLink",
|
4150
4313
|
"module": "src/components/link/link.component.ts"
|
@@ -4169,9 +4332,8 @@
|
|
4169
4332
|
"type": {
|
4170
4333
|
"text": "string | undefined"
|
4171
4334
|
},
|
4172
|
-
"description": "If defined, used on conjunction with onClick property
|
4335
|
+
"description": "If defined, used on conjunction with onClick property. **Notice!** Only applicable to as=button.",
|
4173
4336
|
"attribute": "route",
|
4174
|
-
"reflects": true,
|
4175
4337
|
"inheritedFrom": {
|
4176
4338
|
"name": "SkfLink",
|
4177
4339
|
"module": "src/components/link/link.component.ts"
|
@@ -4186,7 +4348,6 @@
|
|
4186
4348
|
"default": "false",
|
4187
4349
|
"description": "If true, fills the parents horizontal axis",
|
4188
4350
|
"attribute": "stretch",
|
4189
|
-
"reflects": true,
|
4190
4351
|
"inheritedFrom": {
|
4191
4352
|
"name": "SkfLink",
|
4192
4353
|
"module": "src/components/link/link.component.ts"
|
@@ -4206,17 +4367,8 @@
|
|
4206
4367
|
}
|
4207
4368
|
},
|
4208
4369
|
{
|
4209
|
-
"kind": "
|
4210
|
-
"name": "
|
4211
|
-
"type": {
|
4212
|
-
"text": "SkfLinkType"
|
4213
|
-
},
|
4214
|
-
"default": "'button'",
|
4215
|
-
"description": "Defines the type of button",
|
4216
|
-
"attribute": "type",
|
4217
|
-
"expandedType": {
|
4218
|
-
"text": "'submit' | 'reset' | 'button'"
|
4219
|
-
},
|
4370
|
+
"kind": "method",
|
4371
|
+
"name": "_handleAsChange",
|
4220
4372
|
"inheritedFrom": {
|
4221
4373
|
"name": "SkfLink",
|
4222
4374
|
"module": "src/components/link/link.component.ts"
|
@@ -4233,9 +4385,9 @@
|
|
4233
4385
|
{
|
4234
4386
|
"name": "as",
|
4235
4387
|
"type": {
|
4236
|
-
"text": "'button' | '
|
4388
|
+
"text": "'button' | 'link'"
|
4237
4389
|
},
|
4238
|
-
"default": "'
|
4390
|
+
"default": "'link'",
|
4239
4391
|
"description": "Defines the semantic element to render",
|
4240
4392
|
"fieldName": "as",
|
4241
4393
|
"inheritedFrom": {
|
@@ -4246,11 +4398,14 @@
|
|
4246
4398
|
{
|
4247
4399
|
"name": "color",
|
4248
4400
|
"type": {
|
4249
|
-
"text": "
|
4401
|
+
"text": "Color"
|
4250
4402
|
},
|
4251
4403
|
"default": "'primary'",
|
4252
4404
|
"description": "Defines the text-color",
|
4253
4405
|
"fieldName": "color",
|
4406
|
+
"expandedType": {
|
4407
|
+
"text": "'primary' | 'inverse'"
|
4408
|
+
},
|
4254
4409
|
"inheritedFrom": {
|
4255
4410
|
"name": "SkfLink",
|
4256
4411
|
"module": "src/components/link/link.component.ts"
|
@@ -4272,8 +4427,9 @@
|
|
4272
4427
|
{
|
4273
4428
|
"name": "download",
|
4274
4429
|
"type": {
|
4275
|
-
"text": "
|
4430
|
+
"text": "boolean"
|
4276
4431
|
},
|
4432
|
+
"default": "false",
|
4277
4433
|
"description": "If defined, downloads the url",
|
4278
4434
|
"fieldName": "download",
|
4279
4435
|
"inheritedFrom": {
|
@@ -4309,13 +4465,13 @@
|
|
4309
4465
|
}
|
4310
4466
|
},
|
4311
4467
|
{
|
4312
|
-
"name": "icon-
|
4468
|
+
"name": "icon-right",
|
4313
4469
|
"type": {
|
4314
|
-
"text": "
|
4470
|
+
"text": "boolean"
|
4315
4471
|
},
|
4316
|
-
"default": "
|
4317
|
-
"description": "
|
4318
|
-
"fieldName": "
|
4472
|
+
"default": "false",
|
4473
|
+
"description": "If true, the icon is placed to the right in relation to the text",
|
4474
|
+
"fieldName": "iconRight",
|
4319
4475
|
"inheritedFrom": {
|
4320
4476
|
"name": "SkfLink",
|
4321
4477
|
"module": "src/components/link/link.component.ts"
|
@@ -4338,7 +4494,7 @@
|
|
4338
4494
|
"type": {
|
4339
4495
|
"text": "string | undefined"
|
4340
4496
|
},
|
4341
|
-
"description": "If defined, used on conjunction with onClick property
|
4497
|
+
"description": "If defined, used on conjunction with onClick property. **Notice!** Only applicable to as=button.",
|
4342
4498
|
"fieldName": "route",
|
4343
4499
|
"inheritedFrom": {
|
4344
4500
|
"name": "SkfLink",
|
@@ -4369,18 +4525,15 @@
|
|
4369
4525
|
"name": "SkfLink",
|
4370
4526
|
"module": "src/components/link/link.component.ts"
|
4371
4527
|
}
|
4372
|
-
}
|
4528
|
+
}
|
4529
|
+
],
|
4530
|
+
"events": [
|
4373
4531
|
{
|
4374
|
-
"name": "type",
|
4375
4532
|
"type": {
|
4376
|
-
"text": "
|
4377
|
-
},
|
4378
|
-
"default": "'button'",
|
4379
|
-
"description": "Defines the type of button",
|
4380
|
-
"fieldName": "type",
|
4381
|
-
"expandedType": {
|
4382
|
-
"text": "'submit' | 'reset' | 'button'"
|
4533
|
+
"text": "CustomEvent"
|
4383
4534
|
},
|
4535
|
+
"description": "Fired when the link is clicked",
|
4536
|
+
"name": "skf-link-click",
|
4384
4537
|
"inheritedFrom": {
|
4385
4538
|
"name": "SkfLink",
|
4386
4539
|
"module": "src/components/link/link.component.ts"
|
@@ -4469,83 +4622,6 @@
|
|
4469
4622
|
],
|
4470
4623
|
"typeDefinitionPath": "components/menu/menu.d.ts"
|
4471
4624
|
},
|
4472
|
-
{
|
4473
|
-
"kind": "javascript-module",
|
4474
|
-
"path": "components/nav/nav-item.js",
|
4475
|
-
"declarations": [
|
4476
|
-
{
|
4477
|
-
"kind": "class",
|
4478
|
-
"description": "The `<skf-nav>` is a component that displays a list of <nav-items>.",
|
4479
|
-
"name": "SkfNavItem",
|
4480
|
-
"slots": [
|
4481
|
-
{
|
4482
|
-
"description": "The component's main content",
|
4483
|
-
"name": ""
|
4484
|
-
}
|
4485
|
-
],
|
4486
|
-
"members": [
|
4487
|
-
{
|
4488
|
-
"kind": "field",
|
4489
|
-
"name": "href",
|
4490
|
-
"type": {
|
4491
|
-
"text": "string"
|
4492
|
-
},
|
4493
|
-
"default": "'#'",
|
4494
|
-
"attribute": "href",
|
4495
|
-
"reflects": true
|
4496
|
-
},
|
4497
|
-
{
|
4498
|
-
"kind": "field",
|
4499
|
-
"name": "icon",
|
4500
|
-
"type": {
|
4501
|
-
"text": "Icon | undefined"
|
4502
|
-
},
|
4503
|
-
"attribute": "icon",
|
4504
|
-
"expandedType": {
|
4505
|
-
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
4506
|
-
}
|
4507
|
-
}
|
4508
|
-
],
|
4509
|
-
"attributes": [
|
4510
|
-
{
|
4511
|
-
"name": "href",
|
4512
|
-
"type": {
|
4513
|
-
"text": "string"
|
4514
|
-
},
|
4515
|
-
"default": "'#'",
|
4516
|
-
"fieldName": "href"
|
4517
|
-
},
|
4518
|
-
{
|
4519
|
-
"name": "icon",
|
4520
|
-
"type": {
|
4521
|
-
"text": "Icon | undefined"
|
4522
|
-
},
|
4523
|
-
"fieldName": "icon",
|
4524
|
-
"expandedType": {
|
4525
|
-
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
4526
|
-
}
|
4527
|
-
}
|
4528
|
-
],
|
4529
|
-
"superclass": {
|
4530
|
-
"name": "SkfElement",
|
4531
|
-
"package": "@internal/components/skf-element"
|
4532
|
-
},
|
4533
|
-
"tagName": "skf-nav-item",
|
4534
|
-
"customElement": true
|
4535
|
-
}
|
4536
|
-
],
|
4537
|
-
"exports": [
|
4538
|
-
{
|
4539
|
-
"kind": "js",
|
4540
|
-
"name": "SkfNavItem",
|
4541
|
-
"declaration": {
|
4542
|
-
"name": "SkfNavItem",
|
4543
|
-
"module": "src/components/nav/nav-item.component.ts"
|
4544
|
-
}
|
4545
|
-
}
|
4546
|
-
],
|
4547
|
-
"typeDefinitionPath": "components/nav/nav-item.d.ts"
|
4548
|
-
},
|
4549
4625
|
{
|
4550
4626
|
"kind": "javascript-module",
|
4551
4627
|
"path": "components/popover/popover.js",
|
@@ -4671,6 +4747,22 @@
|
|
4671
4747
|
"static": true,
|
4672
4748
|
"default": "true"
|
4673
4749
|
},
|
4750
|
+
{
|
4751
|
+
"kind": "field",
|
4752
|
+
"name": "#internals",
|
4753
|
+
"privacy": "private",
|
4754
|
+
"type": {
|
4755
|
+
"text": "ElementInternals"
|
4756
|
+
}
|
4757
|
+
},
|
4758
|
+
{
|
4759
|
+
"kind": "field",
|
4760
|
+
"name": "#states",
|
4761
|
+
"privacy": "private",
|
4762
|
+
"type": {
|
4763
|
+
"text": "CustomStateSet"
|
4764
|
+
}
|
4765
|
+
},
|
4674
4766
|
{
|
4675
4767
|
"kind": "field",
|
4676
4768
|
"name": "animated",
|
@@ -4679,8 +4771,7 @@
|
|
4679
4771
|
},
|
4680
4772
|
"default": "false",
|
4681
4773
|
"description": "If true, the progress-bar's fill value is animated",
|
4682
|
-
"attribute": "animated"
|
4683
|
-
"reflects": true
|
4774
|
+
"attribute": "animated"
|
4684
4775
|
},
|
4685
4776
|
{
|
4686
4777
|
"kind": "field",
|
@@ -5187,6 +5278,22 @@
|
|
5187
5278
|
}
|
5188
5279
|
],
|
5189
5280
|
"members": [
|
5281
|
+
{
|
5282
|
+
"kind": "field",
|
5283
|
+
"name": "#internals",
|
5284
|
+
"privacy": "private",
|
5285
|
+
"type": {
|
5286
|
+
"text": "ElementInternals"
|
5287
|
+
}
|
5288
|
+
},
|
5289
|
+
{
|
5290
|
+
"kind": "field",
|
5291
|
+
"name": "#states",
|
5292
|
+
"privacy": "private",
|
5293
|
+
"type": {
|
5294
|
+
"text": "CustomStateSet"
|
5295
|
+
}
|
5296
|
+
},
|
5190
5297
|
{
|
5191
5298
|
"kind": "field",
|
5192
5299
|
"name": "label",
|
@@ -5196,6 +5303,14 @@
|
|
5196
5303
|
"default": "'Default label'",
|
5197
5304
|
"attribute": "label",
|
5198
5305
|
"reflects": true
|
5306
|
+
},
|
5307
|
+
{
|
5308
|
+
"kind": "field",
|
5309
|
+
"name": "small",
|
5310
|
+
"type": {
|
5311
|
+
"text": "boolean"
|
5312
|
+
},
|
5313
|
+
"default": "false"
|
5199
5314
|
}
|
5200
5315
|
],
|
5201
5316
|
"attributes": [
|
@@ -5549,6 +5664,10 @@
|
|
5549
5664
|
"name": "value",
|
5550
5665
|
"description": "Read only, returns the selected value. (if multiple: in a comma separated string)"
|
5551
5666
|
},
|
5667
|
+
{
|
5668
|
+
"kind": "method",
|
5669
|
+
"name": "_handleSizeUpdate"
|
5670
|
+
},
|
5552
5671
|
{
|
5553
5672
|
"kind": "method",
|
5554
5673
|
"name": "handleExpandedChange"
|
@@ -5783,6 +5902,22 @@
|
|
5783
5902
|
"static": true,
|
5784
5903
|
"default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
|
5785
5904
|
},
|
5905
|
+
{
|
5906
|
+
"kind": "field",
|
5907
|
+
"name": "#internals",
|
5908
|
+
"privacy": "private",
|
5909
|
+
"type": {
|
5910
|
+
"text": "ElementInternals"
|
5911
|
+
}
|
5912
|
+
},
|
5913
|
+
{
|
5914
|
+
"kind": "field",
|
5915
|
+
"name": "#states",
|
5916
|
+
"privacy": "private",
|
5917
|
+
"type": {
|
5918
|
+
"text": "CustomStateSet"
|
5919
|
+
}
|
5920
|
+
},
|
5786
5921
|
{
|
5787
5922
|
"kind": "field",
|
5788
5923
|
"name": "disabled",
|
@@ -5855,15 +5990,11 @@
|
|
5855
5990
|
},
|
5856
5991
|
{
|
5857
5992
|
"kind": "field",
|
5858
|
-
"name": "
|
5993
|
+
"name": "small",
|
5859
5994
|
"type": {
|
5860
|
-
"text": "
|
5995
|
+
"text": "boolean"
|
5861
5996
|
},
|
5862
|
-
"default": "
|
5863
|
-
},
|
5864
|
-
{
|
5865
|
-
"kind": "field",
|
5866
|
-
"name": "_parent"
|
5997
|
+
"default": "false"
|
5867
5998
|
},
|
5868
5999
|
{
|
5869
6000
|
"kind": "field",
|
@@ -6011,14 +6142,6 @@
|
|
6011
6142
|
{
|
6012
6143
|
"kind": "field",
|
6013
6144
|
"name": "_setInternalState"
|
6014
|
-
},
|
6015
|
-
{
|
6016
|
-
"kind": "field",
|
6017
|
-
"name": "role",
|
6018
|
-
"type": {
|
6019
|
-
"text": "string"
|
6020
|
-
},
|
6021
|
-
"default": "'listitem'"
|
6022
6145
|
}
|
6023
6146
|
],
|
6024
6147
|
"events": [
|
@@ -6390,14 +6513,6 @@
|
|
6390
6513
|
"text": "boolean"
|
6391
6514
|
},
|
6392
6515
|
"default": "false"
|
6393
|
-
},
|
6394
|
-
{
|
6395
|
-
"kind": "field",
|
6396
|
-
"name": "role",
|
6397
|
-
"type": {
|
6398
|
-
"text": "string"
|
6399
|
-
},
|
6400
|
-
"default": "'tabpanel'"
|
6401
6516
|
}
|
6402
6517
|
],
|
6403
6518
|
"attributes": [
|
@@ -6610,14 +6725,6 @@
|
|
6610
6725
|
"text": "SkfTabs['variant']"
|
6611
6726
|
},
|
6612
6727
|
"default": "'expanded'"
|
6613
|
-
},
|
6614
|
-
{
|
6615
|
-
"kind": "field",
|
6616
|
-
"name": "role",
|
6617
|
-
"type": {
|
6618
|
-
"text": "string"
|
6619
|
-
},
|
6620
|
-
"default": "'tab'"
|
6621
6728
|
}
|
6622
6729
|
],
|
6623
6730
|
"events": [
|
@@ -7593,14 +7700,6 @@
|
|
7593
7700
|
}
|
7594
7701
|
]
|
7595
7702
|
},
|
7596
|
-
{
|
7597
|
-
"kind": "field",
|
7598
|
-
"name": "role",
|
7599
|
-
"type": {
|
7600
|
-
"text": "string"
|
7601
|
-
},
|
7602
|
-
"default": "'tooltip'"
|
7603
|
-
},
|
7604
7703
|
{
|
7605
7704
|
"kind": "field",
|
7606
7705
|
"name": "offset",
|