@genesislcap/rapid-design-system 14.209.3-alpha-afba6ee.0 → 14.210.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +560 -436
- package/dist/dts/icon/icon.d.ts.map +1 -1
- package/dist/dts/icon/icon.stories.d.ts +1 -0
- package/dist/dts/icon/icon.stories.d.ts.map +1 -1
- package/dist/dts/icon/icon.template.d.ts +3 -0
- package/dist/dts/icon/icon.template.d.ts.map +1 -0
- package/dist/esm/icon/icon.js +2 -1
- package/dist/esm/icon/icon.stories.js +12 -0
- package/dist/esm/icon/icon.template.js +5 -0
- package/package.json +10 -10
|
@@ -716,6 +716,29 @@
|
|
|
716
716
|
}
|
|
717
717
|
]
|
|
718
718
|
},
|
|
719
|
+
{
|
|
720
|
+
"kind": "javascript-module",
|
|
721
|
+
"path": "src/_config/index.ts",
|
|
722
|
+
"declarations": [],
|
|
723
|
+
"exports": [
|
|
724
|
+
{
|
|
725
|
+
"kind": "js",
|
|
726
|
+
"name": "*",
|
|
727
|
+
"declaration": {
|
|
728
|
+
"name": "*",
|
|
729
|
+
"package": "./tokens"
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"kind": "js",
|
|
734
|
+
"name": "*",
|
|
735
|
+
"declaration": {
|
|
736
|
+
"name": "*",
|
|
737
|
+
"package": "./values"
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
]
|
|
741
|
+
},
|
|
719
742
|
{
|
|
720
743
|
"kind": "javascript-module",
|
|
721
744
|
"path": "src/accordion/accordion.stories.ts",
|
|
@@ -904,29 +927,6 @@
|
|
|
904
927
|
}
|
|
905
928
|
]
|
|
906
929
|
},
|
|
907
|
-
{
|
|
908
|
-
"kind": "javascript-module",
|
|
909
|
-
"path": "src/_config/index.ts",
|
|
910
|
-
"declarations": [],
|
|
911
|
-
"exports": [
|
|
912
|
-
{
|
|
913
|
-
"kind": "js",
|
|
914
|
-
"name": "*",
|
|
915
|
-
"declaration": {
|
|
916
|
-
"name": "*",
|
|
917
|
-
"package": "./tokens"
|
|
918
|
-
}
|
|
919
|
-
},
|
|
920
|
-
{
|
|
921
|
-
"kind": "js",
|
|
922
|
-
"name": "*",
|
|
923
|
-
"declaration": {
|
|
924
|
-
"name": "*",
|
|
925
|
-
"package": "./values"
|
|
926
|
-
}
|
|
927
|
-
}
|
|
928
|
-
]
|
|
929
|
-
},
|
|
930
930
|
{
|
|
931
931
|
"kind": "javascript-module",
|
|
932
932
|
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
@@ -3875,7 +3875,7 @@
|
|
|
3875
3875
|
},
|
|
3876
3876
|
{
|
|
3877
3877
|
"kind": "javascript-module",
|
|
3878
|
-
"path": "src/
|
|
3878
|
+
"path": "src/badge/badge.stories.ts",
|
|
3879
3879
|
"declarations": [
|
|
3880
3880
|
{
|
|
3881
3881
|
"kind": "variable",
|
|
@@ -3883,23 +3883,31 @@
|
|
|
3883
3883
|
"type": {
|
|
3884
3884
|
"text": "Meta"
|
|
3885
3885
|
},
|
|
3886
|
-
"default": "{\n title: '
|
|
3886
|
+
"default": "{\n title: 'Badge',\n component: 'rapid-badge',\n}"
|
|
3887
3887
|
},
|
|
3888
3888
|
{
|
|
3889
3889
|
"kind": "variable",
|
|
3890
|
-
"name": "
|
|
3890
|
+
"name": "All",
|
|
3891
3891
|
"type": {
|
|
3892
3892
|
"text": "StoryObj"
|
|
3893
3893
|
},
|
|
3894
|
-
"default": "{\n
|
|
3894
|
+
"default": "{\n render: () => html`\n <div style=\"${wrapperStyle}\">\n ${repeat(\n badges,\n (item) => item,\n (item) => html`\n <rapid-badge fill=\"${item}\" color=\"text\">Rapid Badge</rapid-badge>\n `,\n )}\n </div>\n `,\n}"
|
|
3895
3895
|
},
|
|
3896
3896
|
{
|
|
3897
3897
|
"kind": "variable",
|
|
3898
|
-
"name": "
|
|
3898
|
+
"name": "Primary",
|
|
3899
3899
|
"type": {
|
|
3900
3900
|
"text": "StoryObj"
|
|
3901
3901
|
},
|
|
3902
|
-
"default": "{\n args: {\n
|
|
3902
|
+
"default": "{\n args: {\n fill: 'primary',\n badgeText: 'Rapid Badge',\n badgeText2: '12',\n },\n argTypes: {\n fill: {\n control: 'select',\n options: badges,\n },\n },\n render: ({ fill, badgeText, badgeText2 }) => html`\n <div style=\"${wrapperStyle}\">\n <rapid-badge fill=\"${fill}\" color=\"text\">${badgeText}</rapid-badge>\n <rapid-badge fill=\"${fill}\" color=\"text\">${badgeText2}</rapid-badge>\n </div>\n `,\n}"
|
|
3903
|
+
},
|
|
3904
|
+
{
|
|
3905
|
+
"kind": "variable",
|
|
3906
|
+
"name": "Neutral",
|
|
3907
|
+
"type": {
|
|
3908
|
+
"text": "StoryObj"
|
|
3909
|
+
},
|
|
3910
|
+
"default": "{\n args: {\n fill: 'neutral',\n badgeText: 'Rapid Badge',\n badgeText2: '12',\n },\n argTypes: {\n fill: {\n control: 'select',\n options: badges,\n },\n },\n render: ({ fill, badgeText, badgeText2 }) => html`\n <div style=\"${wrapperStyle}\">\n <rapid-badge fill=\"${fill}\" color=\"text\">${badgeText}</rapid-badge>\n <rapid-badge fill=\"${fill}\" color=\"text\">${badgeText2}</rapid-badge>\n </div>\n `,\n}"
|
|
3903
3911
|
}
|
|
3904
3912
|
],
|
|
3905
3913
|
"exports": [
|
|
@@ -3908,34 +3916,42 @@
|
|
|
3908
3916
|
"name": "default",
|
|
3909
3917
|
"declaration": {
|
|
3910
3918
|
"name": "meta",
|
|
3911
|
-
"module": "src/
|
|
3919
|
+
"module": "src/badge/badge.stories.ts"
|
|
3912
3920
|
}
|
|
3913
3921
|
},
|
|
3914
3922
|
{
|
|
3915
3923
|
"kind": "js",
|
|
3916
|
-
"name": "
|
|
3924
|
+
"name": "All",
|
|
3917
3925
|
"declaration": {
|
|
3918
|
-
"name": "
|
|
3919
|
-
"module": "src/
|
|
3926
|
+
"name": "All",
|
|
3927
|
+
"module": "src/badge/badge.stories.ts"
|
|
3920
3928
|
}
|
|
3921
3929
|
},
|
|
3922
3930
|
{
|
|
3923
3931
|
"kind": "js",
|
|
3924
|
-
"name": "
|
|
3932
|
+
"name": "Primary",
|
|
3925
3933
|
"declaration": {
|
|
3926
|
-
"name": "
|
|
3927
|
-
"module": "src/
|
|
3934
|
+
"name": "Primary",
|
|
3935
|
+
"module": "src/badge/badge.stories.ts"
|
|
3936
|
+
}
|
|
3937
|
+
},
|
|
3938
|
+
{
|
|
3939
|
+
"kind": "js",
|
|
3940
|
+
"name": "Neutral",
|
|
3941
|
+
"declaration": {
|
|
3942
|
+
"name": "Neutral",
|
|
3943
|
+
"module": "src/badge/badge.stories.ts"
|
|
3928
3944
|
}
|
|
3929
3945
|
}
|
|
3930
3946
|
]
|
|
3931
3947
|
},
|
|
3932
3948
|
{
|
|
3933
3949
|
"kind": "javascript-module",
|
|
3934
|
-
"path": "src/
|
|
3950
|
+
"path": "src/badge/badge.styles.ts",
|
|
3935
3951
|
"declarations": [
|
|
3936
3952
|
{
|
|
3937
3953
|
"kind": "function",
|
|
3938
|
-
"name": "
|
|
3954
|
+
"name": "rapidBadgeStyles",
|
|
3939
3955
|
"return": {
|
|
3940
3956
|
"type": {
|
|
3941
3957
|
"text": "ElementStyles"
|
|
@@ -3960,24 +3976,24 @@
|
|
|
3960
3976
|
"exports": [
|
|
3961
3977
|
{
|
|
3962
3978
|
"kind": "js",
|
|
3963
|
-
"name": "
|
|
3979
|
+
"name": "rapidBadgeStyles",
|
|
3964
3980
|
"declaration": {
|
|
3965
|
-
"name": "
|
|
3966
|
-
"module": "src/
|
|
3981
|
+
"name": "rapidBadgeStyles",
|
|
3982
|
+
"module": "src/badge/badge.styles.ts"
|
|
3967
3983
|
}
|
|
3968
3984
|
}
|
|
3969
3985
|
]
|
|
3970
3986
|
},
|
|
3971
3987
|
{
|
|
3972
3988
|
"kind": "javascript-module",
|
|
3973
|
-
"path": "src/
|
|
3989
|
+
"path": "src/badge/badge.template.ts",
|
|
3974
3990
|
"declarations": [
|
|
3975
3991
|
{
|
|
3976
3992
|
"kind": "function",
|
|
3977
|
-
"name": "
|
|
3993
|
+
"name": "rapidBadgeTemplate",
|
|
3978
3994
|
"return": {
|
|
3979
3995
|
"type": {
|
|
3980
|
-
"text": "ViewTemplate<
|
|
3996
|
+
"text": "ViewTemplate<Badge>"
|
|
3981
3997
|
}
|
|
3982
3998
|
},
|
|
3983
3999
|
"parameters": [
|
|
@@ -3999,27 +4015,27 @@
|
|
|
3999
4015
|
"exports": [
|
|
4000
4016
|
{
|
|
4001
4017
|
"kind": "js",
|
|
4002
|
-
"name": "
|
|
4018
|
+
"name": "rapidBadgeTemplate",
|
|
4003
4019
|
"declaration": {
|
|
4004
|
-
"name": "
|
|
4005
|
-
"module": "src/
|
|
4020
|
+
"name": "rapidBadgeTemplate",
|
|
4021
|
+
"module": "src/badge/badge.template.ts"
|
|
4006
4022
|
}
|
|
4007
4023
|
}
|
|
4008
4024
|
]
|
|
4009
4025
|
},
|
|
4010
4026
|
{
|
|
4011
4027
|
"kind": "javascript-module",
|
|
4012
|
-
"path": "src/
|
|
4028
|
+
"path": "src/badge/badge.ts",
|
|
4013
4029
|
"declarations": [
|
|
4014
4030
|
{
|
|
4015
4031
|
"kind": "class",
|
|
4016
4032
|
"description": "",
|
|
4017
|
-
"name": "
|
|
4033
|
+
"name": "Badge",
|
|
4018
4034
|
"superclass": {
|
|
4019
|
-
"name": "
|
|
4035
|
+
"name": "FoundationBadge",
|
|
4020
4036
|
"package": "@genesislcap/foundation-ui"
|
|
4021
4037
|
},
|
|
4022
|
-
"tagName": "%%prefix%%-
|
|
4038
|
+
"tagName": "%%prefix%%-badge",
|
|
4023
4039
|
"customElement": true,
|
|
4024
4040
|
"attributes": [
|
|
4025
4041
|
{
|
|
@@ -4027,11 +4043,11 @@
|
|
|
4027
4043
|
"type": {
|
|
4028
4044
|
"text": "string"
|
|
4029
4045
|
},
|
|
4030
|
-
"description": "Indicates the
|
|
4046
|
+
"description": "Indicates the badge should have a filled style.",
|
|
4031
4047
|
"fieldName": "fill",
|
|
4032
4048
|
"inheritedFrom": {
|
|
4033
|
-
"name": "
|
|
4034
|
-
"module": "src/
|
|
4049
|
+
"name": "Badge",
|
|
4050
|
+
"module": "src/badge/badge.ts"
|
|
4035
4051
|
}
|
|
4036
4052
|
},
|
|
4037
4053
|
{
|
|
@@ -4039,35 +4055,22 @@
|
|
|
4039
4055
|
"type": {
|
|
4040
4056
|
"text": "string"
|
|
4041
4057
|
},
|
|
4042
|
-
"description": "Indicates the
|
|
4058
|
+
"description": "Indicates the badge should have a filled style.",
|
|
4043
4059
|
"fieldName": "color",
|
|
4044
4060
|
"inheritedFrom": {
|
|
4045
|
-
"name": "
|
|
4046
|
-
"module": "src/
|
|
4047
|
-
}
|
|
4048
|
-
},
|
|
4049
|
-
{
|
|
4050
|
-
"name": "link",
|
|
4051
|
-
"type": {
|
|
4052
|
-
"text": "string"
|
|
4053
|
-
},
|
|
4054
|
-
"description": "Indicates the Avatar should have url link",
|
|
4055
|
-
"fieldName": "link",
|
|
4056
|
-
"inheritedFrom": {
|
|
4057
|
-
"name": "Avatar",
|
|
4058
|
-
"module": "src/avatar/avatar.ts"
|
|
4061
|
+
"name": "Badge",
|
|
4062
|
+
"module": "src/badge/badge.ts"
|
|
4059
4063
|
}
|
|
4060
4064
|
},
|
|
4061
4065
|
{
|
|
4062
|
-
"name": "shape",
|
|
4063
4066
|
"type": {
|
|
4064
|
-
"text": "
|
|
4067
|
+
"text": "boolean"
|
|
4065
4068
|
},
|
|
4066
|
-
"description": "Indicates the
|
|
4067
|
-
"fieldName": "
|
|
4069
|
+
"description": "Indicates the element should be circular",
|
|
4070
|
+
"fieldName": "circular",
|
|
4068
4071
|
"inheritedFrom": {
|
|
4069
|
-
"name": "
|
|
4070
|
-
"module": "src/
|
|
4072
|
+
"name": "Badge",
|
|
4073
|
+
"module": "src/badge/badge.ts"
|
|
4071
4074
|
}
|
|
4072
4075
|
}
|
|
4073
4076
|
],
|
|
@@ -4079,10 +4082,10 @@
|
|
|
4079
4082
|
"text": "string"
|
|
4080
4083
|
},
|
|
4081
4084
|
"privacy": "public",
|
|
4082
|
-
"description": "Indicates the
|
|
4085
|
+
"description": "Indicates the badge should have a filled style.",
|
|
4083
4086
|
"inheritedFrom": {
|
|
4084
|
-
"name": "
|
|
4085
|
-
"module": "src/
|
|
4087
|
+
"name": "Badge",
|
|
4088
|
+
"module": "src/badge/badge.ts"
|
|
4086
4089
|
}
|
|
4087
4090
|
},
|
|
4088
4091
|
{
|
|
@@ -4092,36 +4095,32 @@
|
|
|
4092
4095
|
"text": "string"
|
|
4093
4096
|
},
|
|
4094
4097
|
"privacy": "public",
|
|
4095
|
-
"description": "Indicates the
|
|
4098
|
+
"description": "Indicates the badge should have a filled style.",
|
|
4096
4099
|
"inheritedFrom": {
|
|
4097
|
-
"name": "
|
|
4098
|
-
"module": "src/
|
|
4100
|
+
"name": "Badge",
|
|
4101
|
+
"module": "src/badge/badge.ts"
|
|
4099
4102
|
}
|
|
4100
4103
|
},
|
|
4101
4104
|
{
|
|
4102
4105
|
"kind": "field",
|
|
4103
|
-
"name": "
|
|
4106
|
+
"name": "circular",
|
|
4104
4107
|
"type": {
|
|
4105
|
-
"text": "
|
|
4108
|
+
"text": "boolean"
|
|
4106
4109
|
},
|
|
4107
4110
|
"privacy": "public",
|
|
4108
|
-
"description": "Indicates the
|
|
4111
|
+
"description": "Indicates the element should be circular",
|
|
4109
4112
|
"inheritedFrom": {
|
|
4110
|
-
"name": "
|
|
4111
|
-
"module": "src/
|
|
4113
|
+
"name": "Badge",
|
|
4114
|
+
"module": "src/badge/badge.ts"
|
|
4112
4115
|
}
|
|
4113
4116
|
},
|
|
4114
4117
|
{
|
|
4115
4118
|
"kind": "field",
|
|
4116
|
-
"name": "
|
|
4117
|
-
"type": {
|
|
4118
|
-
"text": "AvatarShape"
|
|
4119
|
-
},
|
|
4119
|
+
"name": "generateBadgeStyle",
|
|
4120
4120
|
"privacy": "public",
|
|
4121
|
-
"description": "Indicates the Avatar shape should be. By default it will be set to \"circle\".",
|
|
4122
4121
|
"inheritedFrom": {
|
|
4123
|
-
"name": "
|
|
4124
|
-
"module": "src/
|
|
4122
|
+
"name": "Badge",
|
|
4123
|
+
"module": "src/badge/badge.ts"
|
|
4125
4124
|
}
|
|
4126
4125
|
},
|
|
4127
4126
|
{
|
|
@@ -4133,8 +4132,8 @@
|
|
|
4133
4132
|
"privacy": "private",
|
|
4134
4133
|
"default": "void 0",
|
|
4135
4134
|
"inheritedFrom": {
|
|
4136
|
-
"name": "
|
|
4137
|
-
"module": "src/
|
|
4135
|
+
"name": "Badge",
|
|
4136
|
+
"module": "src/badge/badge.ts"
|
|
4138
4137
|
}
|
|
4139
4138
|
},
|
|
4140
4139
|
{
|
|
@@ -4146,8 +4145,8 @@
|
|
|
4146
4145
|
"privacy": "public",
|
|
4147
4146
|
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
4148
4147
|
"inheritedFrom": {
|
|
4149
|
-
"name": "
|
|
4150
|
-
"module": "src/
|
|
4148
|
+
"name": "Badge",
|
|
4149
|
+
"module": "src/badge/badge.ts"
|
|
4151
4150
|
}
|
|
4152
4151
|
},
|
|
4153
4152
|
{
|
|
@@ -4159,8 +4158,8 @@
|
|
|
4159
4158
|
"privacy": "public",
|
|
4160
4159
|
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
4161
4160
|
"inheritedFrom": {
|
|
4162
|
-
"name": "
|
|
4163
|
-
"module": "src/
|
|
4161
|
+
"name": "Badge",
|
|
4162
|
+
"module": "src/badge/badge.ts"
|
|
4164
4163
|
}
|
|
4165
4164
|
},
|
|
4166
4165
|
{
|
|
@@ -4173,8 +4172,8 @@
|
|
|
4173
4172
|
}
|
|
4174
4173
|
},
|
|
4175
4174
|
"inheritedFrom": {
|
|
4176
|
-
"name": "
|
|
4177
|
-
"module": "src/
|
|
4175
|
+
"name": "Badge",
|
|
4176
|
+
"module": "src/badge/badge.ts"
|
|
4178
4177
|
}
|
|
4179
4178
|
},
|
|
4180
4179
|
{
|
|
@@ -4186,8 +4185,8 @@
|
|
|
4186
4185
|
"privacy": "public",
|
|
4187
4186
|
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
4188
4187
|
"inheritedFrom": {
|
|
4189
|
-
"name": "
|
|
4190
|
-
"module": "src/
|
|
4188
|
+
"name": "Badge",
|
|
4189
|
+
"module": "src/badge/badge.ts"
|
|
4191
4190
|
}
|
|
4192
4191
|
},
|
|
4193
4192
|
{
|
|
@@ -4200,8 +4199,8 @@
|
|
|
4200
4199
|
}
|
|
4201
4200
|
},
|
|
4202
4201
|
"inheritedFrom": {
|
|
4203
|
-
"name": "
|
|
4204
|
-
"module": "src/
|
|
4202
|
+
"name": "Badge",
|
|
4203
|
+
"module": "src/badge/badge.ts"
|
|
4205
4204
|
}
|
|
4206
4205
|
},
|
|
4207
4206
|
{
|
|
@@ -4231,39 +4230,39 @@
|
|
|
4231
4230
|
],
|
|
4232
4231
|
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
4233
4232
|
"inheritedFrom": {
|
|
4234
|
-
"name": "
|
|
4235
|
-
"module": "src/
|
|
4233
|
+
"name": "Badge",
|
|
4234
|
+
"module": "src/badge/badge.ts"
|
|
4236
4235
|
}
|
|
4237
4236
|
}
|
|
4238
4237
|
]
|
|
4239
4238
|
},
|
|
4240
4239
|
{
|
|
4241
4240
|
"kind": "variable",
|
|
4242
|
-
"name": "
|
|
4241
|
+
"name": "rapidBadge"
|
|
4243
4242
|
}
|
|
4244
4243
|
],
|
|
4245
4244
|
"exports": [
|
|
4246
4245
|
{
|
|
4247
4246
|
"kind": "js",
|
|
4248
|
-
"name": "
|
|
4247
|
+
"name": "Badge",
|
|
4249
4248
|
"declaration": {
|
|
4250
|
-
"name": "
|
|
4251
|
-
"module": "src/
|
|
4249
|
+
"name": "Badge",
|
|
4250
|
+
"module": "src/badge/badge.ts"
|
|
4252
4251
|
}
|
|
4253
4252
|
},
|
|
4254
4253
|
{
|
|
4255
4254
|
"kind": "js",
|
|
4256
|
-
"name": "
|
|
4255
|
+
"name": "rapidBadge",
|
|
4257
4256
|
"declaration": {
|
|
4258
|
-
"name": "
|
|
4259
|
-
"module": "src/
|
|
4257
|
+
"name": "rapidBadge",
|
|
4258
|
+
"module": "src/badge/badge.ts"
|
|
4260
4259
|
}
|
|
4261
4260
|
}
|
|
4262
4261
|
]
|
|
4263
4262
|
},
|
|
4264
4263
|
{
|
|
4265
4264
|
"kind": "javascript-module",
|
|
4266
|
-
"path": "src/
|
|
4265
|
+
"path": "src/badge/index.ts",
|
|
4267
4266
|
"declarations": [],
|
|
4268
4267
|
"exports": [
|
|
4269
4268
|
{
|
|
@@ -4271,7 +4270,7 @@
|
|
|
4271
4270
|
"name": "*",
|
|
4272
4271
|
"declaration": {
|
|
4273
4272
|
"name": "*",
|
|
4274
|
-
"package": "./
|
|
4273
|
+
"package": "./badge"
|
|
4275
4274
|
}
|
|
4276
4275
|
},
|
|
4277
4276
|
{
|
|
@@ -4279,7 +4278,7 @@
|
|
|
4279
4278
|
"name": "*",
|
|
4280
4279
|
"declaration": {
|
|
4281
4280
|
"name": "*",
|
|
4282
|
-
"package": "./
|
|
4281
|
+
"package": "./badge.styles"
|
|
4283
4282
|
}
|
|
4284
4283
|
},
|
|
4285
4284
|
{
|
|
@@ -4287,14 +4286,14 @@
|
|
|
4287
4286
|
"name": "*",
|
|
4288
4287
|
"declaration": {
|
|
4289
4288
|
"name": "*",
|
|
4290
|
-
"package": "./
|
|
4289
|
+
"package": "./badge.template"
|
|
4291
4290
|
}
|
|
4292
4291
|
}
|
|
4293
4292
|
]
|
|
4294
4293
|
},
|
|
4295
4294
|
{
|
|
4296
4295
|
"kind": "javascript-module",
|
|
4297
|
-
"path": "src/
|
|
4296
|
+
"path": "src/avatar/avatar.stories.ts",
|
|
4298
4297
|
"declarations": [
|
|
4299
4298
|
{
|
|
4300
4299
|
"kind": "variable",
|
|
@@ -4302,31 +4301,23 @@
|
|
|
4302
4301
|
"type": {
|
|
4303
4302
|
"text": "Meta"
|
|
4304
4303
|
},
|
|
4305
|
-
"default": "{\n title: '
|
|
4306
|
-
},
|
|
4307
|
-
{
|
|
4308
|
-
"kind": "variable",
|
|
4309
|
-
"name": "All",
|
|
4310
|
-
"type": {
|
|
4311
|
-
"text": "StoryObj"
|
|
4312
|
-
},
|
|
4313
|
-
"default": "{\n render: () => html`\n <div style=\"${wrapperStyle}\">\n ${repeat(\n badges,\n (item) => item,\n (item) => html`\n <rapid-badge fill=\"${item}\" color=\"text\">Rapid Badge</rapid-badge>\n `,\n )}\n </div>\n `,\n}"
|
|
4304
|
+
"default": "{\n title: 'Avatar',\n component: 'rapid-avatar',\n}"
|
|
4314
4305
|
},
|
|
4315
4306
|
{
|
|
4316
4307
|
"kind": "variable",
|
|
4317
|
-
"name": "
|
|
4308
|
+
"name": "Default",
|
|
4318
4309
|
"type": {
|
|
4319
4310
|
"text": "StoryObj"
|
|
4320
4311
|
},
|
|
4321
|
-
"default": "{\n args: {\n
|
|
4312
|
+
"default": "{\n args: {\n src: 'https://avataaars.io/?avatarStyle=Circle&topType=LongHairStraight&accessoriesType=Blank&hairColor=BrownDark&facialHairType=Blank&clotheType=BlazerShirt&eyeType=Default&eyebrowType=Default&mouthType=Default&skinColor=Light',\n link: '#',\n alt: \"Annie's profile image\",\n shape: 'circle',\n initials: 'AJ',\n name: 'Annie James',\n fill: 'accent-primary',\n fillColor: '#196fe6',\n },\n argTypes: {\n shape: {\n control: 'select',\n options: ['circle', 'square'],\n },\n fillColor: {\n control: 'color',\n },\n },\n render: ({ initials, link, alt, shape, fill, name, fillColor }) => html`\n <div style=\"${wrapperStyle} --avatar-fill-${fill}: ${fillColor}\">\n <rapid-avatar alt=\"${alt}\" link=\"${link}\" shape=\"${shape}\" fill=\"${fill}\" name=\"${name}\">\n ${initials}\n </rapid-avatar>\n </div>\n `,\n}"
|
|
4322
4313
|
},
|
|
4323
4314
|
{
|
|
4324
4315
|
"kind": "variable",
|
|
4325
|
-
"name": "
|
|
4316
|
+
"name": "WithImage",
|
|
4326
4317
|
"type": {
|
|
4327
4318
|
"text": "StoryObj"
|
|
4328
4319
|
},
|
|
4329
|
-
"default": "{\n args: {\n
|
|
4320
|
+
"default": "{\n args: {\n avatarSource:\n 'https://avataaars.io/?avatarStyle=Circle&topType=LongHairStraight&accessoriesType=Blank&hairColor=BrownDark&facialHairType=Blank&clotheType=BlazerShirt&eyeType=Default&eyebrowType=Default&mouthType=Default&skinColor=Light',\n link: '#',\n alt: \"Annie's profile image\",\n shape: 'circle',\n initials: 'AJ',\n name: 'Annie James',\n fill: 'accent-primary',\n fillColor: '#196fe6',\n },\n argTypes: {\n shape: {\n control: 'select',\n options: ['circle', 'square'],\n },\n fillColor: {\n control: 'color',\n },\n },\n render: ({ avatarSource, link, alt, shape, fill, fillColor }) => html`\n <div style=\"${wrapperStyle} --avatar-fill-${fill}: ${fillColor}\">\n <rapid-avatar\n src=\"${avatarSource}\"\n alt=\"${alt}\"\n link=\"${link}\"\n shape=\"${shape}\"\n fill=\"${fill}\"\n ></rapid-avatar>\n </div>\n `,\n}"
|
|
4330
4321
|
}
|
|
4331
4322
|
],
|
|
4332
4323
|
"exports": [
|
|
@@ -4335,42 +4326,34 @@
|
|
|
4335
4326
|
"name": "default",
|
|
4336
4327
|
"declaration": {
|
|
4337
4328
|
"name": "meta",
|
|
4338
|
-
"module": "src/
|
|
4339
|
-
}
|
|
4340
|
-
},
|
|
4341
|
-
{
|
|
4342
|
-
"kind": "js",
|
|
4343
|
-
"name": "All",
|
|
4344
|
-
"declaration": {
|
|
4345
|
-
"name": "All",
|
|
4346
|
-
"module": "src/badge/badge.stories.ts"
|
|
4329
|
+
"module": "src/avatar/avatar.stories.ts"
|
|
4347
4330
|
}
|
|
4348
4331
|
},
|
|
4349
4332
|
{
|
|
4350
4333
|
"kind": "js",
|
|
4351
|
-
"name": "
|
|
4334
|
+
"name": "Default",
|
|
4352
4335
|
"declaration": {
|
|
4353
|
-
"name": "
|
|
4354
|
-
"module": "src/
|
|
4336
|
+
"name": "Default",
|
|
4337
|
+
"module": "src/avatar/avatar.stories.ts"
|
|
4355
4338
|
}
|
|
4356
4339
|
},
|
|
4357
4340
|
{
|
|
4358
4341
|
"kind": "js",
|
|
4359
|
-
"name": "
|
|
4342
|
+
"name": "WithImage",
|
|
4360
4343
|
"declaration": {
|
|
4361
|
-
"name": "
|
|
4362
|
-
"module": "src/
|
|
4344
|
+
"name": "WithImage",
|
|
4345
|
+
"module": "src/avatar/avatar.stories.ts"
|
|
4363
4346
|
}
|
|
4364
4347
|
}
|
|
4365
4348
|
]
|
|
4366
4349
|
},
|
|
4367
4350
|
{
|
|
4368
4351
|
"kind": "javascript-module",
|
|
4369
|
-
"path": "src/
|
|
4352
|
+
"path": "src/avatar/avatar.styles.ts",
|
|
4370
4353
|
"declarations": [
|
|
4371
4354
|
{
|
|
4372
4355
|
"kind": "function",
|
|
4373
|
-
"name": "
|
|
4356
|
+
"name": "rapidAvatarStyles",
|
|
4374
4357
|
"return": {
|
|
4375
4358
|
"type": {
|
|
4376
4359
|
"text": "ElementStyles"
|
|
@@ -4395,24 +4378,24 @@
|
|
|
4395
4378
|
"exports": [
|
|
4396
4379
|
{
|
|
4397
4380
|
"kind": "js",
|
|
4398
|
-
"name": "
|
|
4381
|
+
"name": "rapidAvatarStyles",
|
|
4399
4382
|
"declaration": {
|
|
4400
|
-
"name": "
|
|
4401
|
-
"module": "src/
|
|
4383
|
+
"name": "rapidAvatarStyles",
|
|
4384
|
+
"module": "src/avatar/avatar.styles.ts"
|
|
4402
4385
|
}
|
|
4403
4386
|
}
|
|
4404
4387
|
]
|
|
4405
4388
|
},
|
|
4406
4389
|
{
|
|
4407
4390
|
"kind": "javascript-module",
|
|
4408
|
-
"path": "src/
|
|
4391
|
+
"path": "src/avatar/avatar.template.ts",
|
|
4409
4392
|
"declarations": [
|
|
4410
4393
|
{
|
|
4411
4394
|
"kind": "function",
|
|
4412
|
-
"name": "
|
|
4395
|
+
"name": "rapidAvatarTemplate",
|
|
4413
4396
|
"return": {
|
|
4414
4397
|
"type": {
|
|
4415
|
-
"text": "ViewTemplate<
|
|
4398
|
+
"text": "ViewTemplate<Avatar>"
|
|
4416
4399
|
}
|
|
4417
4400
|
},
|
|
4418
4401
|
"parameters": [
|
|
@@ -4434,27 +4417,27 @@
|
|
|
4434
4417
|
"exports": [
|
|
4435
4418
|
{
|
|
4436
4419
|
"kind": "js",
|
|
4437
|
-
"name": "
|
|
4420
|
+
"name": "rapidAvatarTemplate",
|
|
4438
4421
|
"declaration": {
|
|
4439
|
-
"name": "
|
|
4440
|
-
"module": "src/
|
|
4422
|
+
"name": "rapidAvatarTemplate",
|
|
4423
|
+
"module": "src/avatar/avatar.template.ts"
|
|
4441
4424
|
}
|
|
4442
4425
|
}
|
|
4443
4426
|
]
|
|
4444
4427
|
},
|
|
4445
4428
|
{
|
|
4446
4429
|
"kind": "javascript-module",
|
|
4447
|
-
"path": "src/
|
|
4430
|
+
"path": "src/avatar/avatar.ts",
|
|
4448
4431
|
"declarations": [
|
|
4449
4432
|
{
|
|
4450
4433
|
"kind": "class",
|
|
4451
4434
|
"description": "",
|
|
4452
|
-
"name": "
|
|
4435
|
+
"name": "Avatar",
|
|
4453
4436
|
"superclass": {
|
|
4454
|
-
"name": "
|
|
4437
|
+
"name": "FoundationAvatar",
|
|
4455
4438
|
"package": "@genesislcap/foundation-ui"
|
|
4456
4439
|
},
|
|
4457
|
-
"tagName": "%%prefix%%-
|
|
4440
|
+
"tagName": "%%prefix%%-avatar",
|
|
4458
4441
|
"customElement": true,
|
|
4459
4442
|
"attributes": [
|
|
4460
4443
|
{
|
|
@@ -4462,11 +4445,11 @@
|
|
|
4462
4445
|
"type": {
|
|
4463
4446
|
"text": "string"
|
|
4464
4447
|
},
|
|
4465
|
-
"description": "Indicates the
|
|
4448
|
+
"description": "Indicates the Avatar should have a color fill.",
|
|
4466
4449
|
"fieldName": "fill",
|
|
4467
4450
|
"inheritedFrom": {
|
|
4468
|
-
"name": "
|
|
4469
|
-
"module": "src/
|
|
4451
|
+
"name": "Avatar",
|
|
4452
|
+
"module": "src/avatar/avatar.ts"
|
|
4470
4453
|
}
|
|
4471
4454
|
},
|
|
4472
4455
|
{
|
|
@@ -4474,22 +4457,35 @@
|
|
|
4474
4457
|
"type": {
|
|
4475
4458
|
"text": "string"
|
|
4476
4459
|
},
|
|
4477
|
-
"description": "Indicates the
|
|
4460
|
+
"description": "Indicates the Avatar should have a text color.",
|
|
4478
4461
|
"fieldName": "color",
|
|
4479
4462
|
"inheritedFrom": {
|
|
4480
|
-
"name": "
|
|
4481
|
-
"module": "src/
|
|
4463
|
+
"name": "Avatar",
|
|
4464
|
+
"module": "src/avatar/avatar.ts"
|
|
4465
|
+
}
|
|
4466
|
+
},
|
|
4467
|
+
{
|
|
4468
|
+
"name": "link",
|
|
4469
|
+
"type": {
|
|
4470
|
+
"text": "string"
|
|
4471
|
+
},
|
|
4472
|
+
"description": "Indicates the Avatar should have url link",
|
|
4473
|
+
"fieldName": "link",
|
|
4474
|
+
"inheritedFrom": {
|
|
4475
|
+
"name": "Avatar",
|
|
4476
|
+
"module": "src/avatar/avatar.ts"
|
|
4482
4477
|
}
|
|
4483
4478
|
},
|
|
4484
4479
|
{
|
|
4480
|
+
"name": "shape",
|
|
4485
4481
|
"type": {
|
|
4486
|
-
"text": "
|
|
4482
|
+
"text": "AvatarShape"
|
|
4487
4483
|
},
|
|
4488
|
-
"description": "Indicates the
|
|
4489
|
-
"fieldName": "
|
|
4484
|
+
"description": "Indicates the Avatar shape should be. By default it will be set to \"circle\".",
|
|
4485
|
+
"fieldName": "shape",
|
|
4490
4486
|
"inheritedFrom": {
|
|
4491
|
-
"name": "
|
|
4492
|
-
"module": "src/
|
|
4487
|
+
"name": "Avatar",
|
|
4488
|
+
"module": "src/avatar/avatar.ts"
|
|
4493
4489
|
}
|
|
4494
4490
|
}
|
|
4495
4491
|
],
|
|
@@ -4501,10 +4497,10 @@
|
|
|
4501
4497
|
"text": "string"
|
|
4502
4498
|
},
|
|
4503
4499
|
"privacy": "public",
|
|
4504
|
-
"description": "Indicates the
|
|
4500
|
+
"description": "Indicates the Avatar should have a color fill.",
|
|
4505
4501
|
"inheritedFrom": {
|
|
4506
|
-
"name": "
|
|
4507
|
-
"module": "src/
|
|
4502
|
+
"name": "Avatar",
|
|
4503
|
+
"module": "src/avatar/avatar.ts"
|
|
4508
4504
|
}
|
|
4509
4505
|
},
|
|
4510
4506
|
{
|
|
@@ -4514,32 +4510,36 @@
|
|
|
4514
4510
|
"text": "string"
|
|
4515
4511
|
},
|
|
4516
4512
|
"privacy": "public",
|
|
4517
|
-
"description": "Indicates the
|
|
4513
|
+
"description": "Indicates the Avatar should have a text color.",
|
|
4518
4514
|
"inheritedFrom": {
|
|
4519
|
-
"name": "
|
|
4520
|
-
"module": "src/
|
|
4515
|
+
"name": "Avatar",
|
|
4516
|
+
"module": "src/avatar/avatar.ts"
|
|
4521
4517
|
}
|
|
4522
4518
|
},
|
|
4523
4519
|
{
|
|
4524
4520
|
"kind": "field",
|
|
4525
|
-
"name": "
|
|
4521
|
+
"name": "link",
|
|
4526
4522
|
"type": {
|
|
4527
|
-
"text": "
|
|
4523
|
+
"text": "string"
|
|
4528
4524
|
},
|
|
4529
4525
|
"privacy": "public",
|
|
4530
|
-
"description": "Indicates the
|
|
4526
|
+
"description": "Indicates the Avatar should have url link",
|
|
4531
4527
|
"inheritedFrom": {
|
|
4532
|
-
"name": "
|
|
4533
|
-
"module": "src/
|
|
4528
|
+
"name": "Avatar",
|
|
4529
|
+
"module": "src/avatar/avatar.ts"
|
|
4534
4530
|
}
|
|
4535
4531
|
},
|
|
4536
4532
|
{
|
|
4537
4533
|
"kind": "field",
|
|
4538
|
-
"name": "
|
|
4534
|
+
"name": "shape",
|
|
4535
|
+
"type": {
|
|
4536
|
+
"text": "AvatarShape"
|
|
4537
|
+
},
|
|
4539
4538
|
"privacy": "public",
|
|
4539
|
+
"description": "Indicates the Avatar shape should be. By default it will be set to \"circle\".",
|
|
4540
4540
|
"inheritedFrom": {
|
|
4541
|
-
"name": "
|
|
4542
|
-
"module": "src/
|
|
4541
|
+
"name": "Avatar",
|
|
4542
|
+
"module": "src/avatar/avatar.ts"
|
|
4543
4543
|
}
|
|
4544
4544
|
},
|
|
4545
4545
|
{
|
|
@@ -4551,8 +4551,8 @@
|
|
|
4551
4551
|
"privacy": "private",
|
|
4552
4552
|
"default": "void 0",
|
|
4553
4553
|
"inheritedFrom": {
|
|
4554
|
-
"name": "
|
|
4555
|
-
"module": "src/
|
|
4554
|
+
"name": "Avatar",
|
|
4555
|
+
"module": "src/avatar/avatar.ts"
|
|
4556
4556
|
}
|
|
4557
4557
|
},
|
|
4558
4558
|
{
|
|
@@ -4564,8 +4564,8 @@
|
|
|
4564
4564
|
"privacy": "public",
|
|
4565
4565
|
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
4566
4566
|
"inheritedFrom": {
|
|
4567
|
-
"name": "
|
|
4568
|
-
"module": "src/
|
|
4567
|
+
"name": "Avatar",
|
|
4568
|
+
"module": "src/avatar/avatar.ts"
|
|
4569
4569
|
}
|
|
4570
4570
|
},
|
|
4571
4571
|
{
|
|
@@ -4577,8 +4577,8 @@
|
|
|
4577
4577
|
"privacy": "public",
|
|
4578
4578
|
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
4579
4579
|
"inheritedFrom": {
|
|
4580
|
-
"name": "
|
|
4581
|
-
"module": "src/
|
|
4580
|
+
"name": "Avatar",
|
|
4581
|
+
"module": "src/avatar/avatar.ts"
|
|
4582
4582
|
}
|
|
4583
4583
|
},
|
|
4584
4584
|
{
|
|
@@ -4591,8 +4591,8 @@
|
|
|
4591
4591
|
}
|
|
4592
4592
|
},
|
|
4593
4593
|
"inheritedFrom": {
|
|
4594
|
-
"name": "
|
|
4595
|
-
"module": "src/
|
|
4594
|
+
"name": "Avatar",
|
|
4595
|
+
"module": "src/avatar/avatar.ts"
|
|
4596
4596
|
}
|
|
4597
4597
|
},
|
|
4598
4598
|
{
|
|
@@ -4604,8 +4604,8 @@
|
|
|
4604
4604
|
"privacy": "public",
|
|
4605
4605
|
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
4606
4606
|
"inheritedFrom": {
|
|
4607
|
-
"name": "
|
|
4608
|
-
"module": "src/
|
|
4607
|
+
"name": "Avatar",
|
|
4608
|
+
"module": "src/avatar/avatar.ts"
|
|
4609
4609
|
}
|
|
4610
4610
|
},
|
|
4611
4611
|
{
|
|
@@ -4618,8 +4618,8 @@
|
|
|
4618
4618
|
}
|
|
4619
4619
|
},
|
|
4620
4620
|
"inheritedFrom": {
|
|
4621
|
-
"name": "
|
|
4622
|
-
"module": "src/
|
|
4621
|
+
"name": "Avatar",
|
|
4622
|
+
"module": "src/avatar/avatar.ts"
|
|
4623
4623
|
}
|
|
4624
4624
|
},
|
|
4625
4625
|
{
|
|
@@ -4649,39 +4649,39 @@
|
|
|
4649
4649
|
],
|
|
4650
4650
|
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
4651
4651
|
"inheritedFrom": {
|
|
4652
|
-
"name": "
|
|
4653
|
-
"module": "src/
|
|
4652
|
+
"name": "Avatar",
|
|
4653
|
+
"module": "src/avatar/avatar.ts"
|
|
4654
4654
|
}
|
|
4655
4655
|
}
|
|
4656
4656
|
]
|
|
4657
4657
|
},
|
|
4658
4658
|
{
|
|
4659
4659
|
"kind": "variable",
|
|
4660
|
-
"name": "
|
|
4660
|
+
"name": "rapidAvatar"
|
|
4661
4661
|
}
|
|
4662
4662
|
],
|
|
4663
4663
|
"exports": [
|
|
4664
4664
|
{
|
|
4665
4665
|
"kind": "js",
|
|
4666
|
-
"name": "
|
|
4666
|
+
"name": "Avatar",
|
|
4667
4667
|
"declaration": {
|
|
4668
|
-
"name": "
|
|
4669
|
-
"module": "src/
|
|
4668
|
+
"name": "Avatar",
|
|
4669
|
+
"module": "src/avatar/avatar.ts"
|
|
4670
4670
|
}
|
|
4671
4671
|
},
|
|
4672
4672
|
{
|
|
4673
4673
|
"kind": "js",
|
|
4674
|
-
"name": "
|
|
4674
|
+
"name": "rapidAvatar",
|
|
4675
4675
|
"declaration": {
|
|
4676
|
-
"name": "
|
|
4677
|
-
"module": "src/
|
|
4676
|
+
"name": "rapidAvatar",
|
|
4677
|
+
"module": "src/avatar/avatar.ts"
|
|
4678
4678
|
}
|
|
4679
4679
|
}
|
|
4680
4680
|
]
|
|
4681
4681
|
},
|
|
4682
4682
|
{
|
|
4683
4683
|
"kind": "javascript-module",
|
|
4684
|
-
"path": "src/
|
|
4684
|
+
"path": "src/avatar/index.ts",
|
|
4685
4685
|
"declarations": [],
|
|
4686
4686
|
"exports": [
|
|
4687
4687
|
{
|
|
@@ -4689,7 +4689,7 @@
|
|
|
4689
4689
|
"name": "*",
|
|
4690
4690
|
"declaration": {
|
|
4691
4691
|
"name": "*",
|
|
4692
|
-
"package": "./
|
|
4692
|
+
"package": "./avatar"
|
|
4693
4693
|
}
|
|
4694
4694
|
},
|
|
4695
4695
|
{
|
|
@@ -4697,7 +4697,7 @@
|
|
|
4697
4697
|
"name": "*",
|
|
4698
4698
|
"declaration": {
|
|
4699
4699
|
"name": "*",
|
|
4700
|
-
"package": "./
|
|
4700
|
+
"package": "./avatar.styles"
|
|
4701
4701
|
}
|
|
4702
4702
|
},
|
|
4703
4703
|
{
|
|
@@ -4705,7 +4705,7 @@
|
|
|
4705
4705
|
"name": "*",
|
|
4706
4706
|
"declaration": {
|
|
4707
4707
|
"name": "*",
|
|
4708
|
-
"package": "./
|
|
4708
|
+
"package": "./avatar.template"
|
|
4709
4709
|
}
|
|
4710
4710
|
}
|
|
4711
4711
|
]
|
|
@@ -15466,6 +15466,14 @@
|
|
|
15466
15466
|
"text": "StoryObj"
|
|
15467
15467
|
},
|
|
15468
15468
|
"default": "{\n render: () => html`\n <div style=\"${wrapperStyle}\">\n <rapid-icon name=\"glasses\" size=\"1x\"></rapid-icon>\n <rapid-icon name=\"amazon\" size=\"2x\" variant=\"brand\"></rapid-icon>\n <rapid-icon name=\"amazon-pay\" size=\"3x\" variant=\"brand\"></rapid-icon>\n <rapid-icon name=\"apple\" size=\"4x\" variant=\"brand\"></rapid-icon>\n <rapid-icon name=\"chrome\" size=\"5x\" variant=\"brand\"></rapid-icon>\n <rapid-icon name=\"ambulance\" size=\"xs\"></rapid-icon>\n <rapid-icon name=\"angry\" size=\"1x\"></rapid-icon>\n <rapid-icon variant=\"regular\" name=\"angry\" size=\"sm\"></rapid-icon>\n <rapid-icon name=\"address-book\" size=\"lg\"></rapid-icon>\n <rapid-icon variant=\"regular\" name=\"address-book\" size=\"xl\"></rapid-icon>\n <rapid-icon name=\"bookmark\" size=\"2xl;\"></rapid-icon>\n <rapid-icon variant=\"regular\" name=\"bookmark\" size=\"2xs\"></rapid-icon>\n </div>\n `,\n}"
|
|
15469
|
+
},
|
|
15470
|
+
{
|
|
15471
|
+
"kind": "variable",
|
|
15472
|
+
"name": "IconTooltips",
|
|
15473
|
+
"type": {
|
|
15474
|
+
"text": "StoryObj"
|
|
15475
|
+
},
|
|
15476
|
+
"default": "{\n render: () => html`\n <div style=\"${wrapperStyle}\">\n <rapid-icon tooltip=\"Rapid Icon Tooltip with dynamic ID\"></rapid-icon>\n <rapid-icon\n tooltip=\"Rapid Icon Tooltip with custom ID\"\n tooltip-id=\"custom-tooltip-id\"\n ></rapid-icon>\n <rapid-icon error tooltip=\"Rapid Icon Tooltip with error\"></rapid-icon>\n </div>\n `,\n}"
|
|
15469
15477
|
}
|
|
15470
15478
|
],
|
|
15471
15479
|
"exports": [
|
|
@@ -15492,6 +15500,14 @@
|
|
|
15492
15500
|
"name": "Multiple",
|
|
15493
15501
|
"module": "src/icon/icon.stories.ts"
|
|
15494
15502
|
}
|
|
15503
|
+
},
|
|
15504
|
+
{
|
|
15505
|
+
"kind": "js",
|
|
15506
|
+
"name": "IconTooltips",
|
|
15507
|
+
"declaration": {
|
|
15508
|
+
"name": "IconTooltips",
|
|
15509
|
+
"module": "src/icon/icon.stories.ts"
|
|
15510
|
+
}
|
|
15495
15511
|
}
|
|
15496
15512
|
]
|
|
15497
15513
|
},
|
|
@@ -15534,6 +15550,27 @@
|
|
|
15534
15550
|
}
|
|
15535
15551
|
]
|
|
15536
15552
|
},
|
|
15553
|
+
{
|
|
15554
|
+
"kind": "javascript-module",
|
|
15555
|
+
"path": "src/icon/icon.template.ts",
|
|
15556
|
+
"declarations": [
|
|
15557
|
+
{
|
|
15558
|
+
"kind": "variable",
|
|
15559
|
+
"name": "rapidIconTemplate",
|
|
15560
|
+
"default": "html<Icon>`\n ${getPrefixedIcon('rapid')}\n`"
|
|
15561
|
+
}
|
|
15562
|
+
],
|
|
15563
|
+
"exports": [
|
|
15564
|
+
{
|
|
15565
|
+
"kind": "js",
|
|
15566
|
+
"name": "rapidIconTemplate",
|
|
15567
|
+
"declaration": {
|
|
15568
|
+
"name": "rapidIconTemplate",
|
|
15569
|
+
"module": "src/icon/icon.template.ts"
|
|
15570
|
+
}
|
|
15571
|
+
}
|
|
15572
|
+
]
|
|
15573
|
+
},
|
|
15537
15574
|
{
|
|
15538
15575
|
"kind": "javascript-module",
|
|
15539
15576
|
"path": "src/icon/icon.ts",
|
|
@@ -15549,6 +15586,40 @@
|
|
|
15549
15586
|
"tagName": "%%prefix%%-icon",
|
|
15550
15587
|
"customElement": true,
|
|
15551
15588
|
"attributes": [
|
|
15589
|
+
{
|
|
15590
|
+
"name": "tooltip-id",
|
|
15591
|
+
"type": {
|
|
15592
|
+
"text": "string"
|
|
15593
|
+
},
|
|
15594
|
+
"fieldName": "tooltipId",
|
|
15595
|
+
"inheritedFrom": {
|
|
15596
|
+
"name": "Icon",
|
|
15597
|
+
"module": "src/icon/icon.ts"
|
|
15598
|
+
}
|
|
15599
|
+
},
|
|
15600
|
+
{
|
|
15601
|
+
"name": "tooltip",
|
|
15602
|
+
"type": {
|
|
15603
|
+
"text": "string"
|
|
15604
|
+
},
|
|
15605
|
+
"fieldName": "tooltip",
|
|
15606
|
+
"inheritedFrom": {
|
|
15607
|
+
"name": "Icon",
|
|
15608
|
+
"module": "src/icon/icon.ts"
|
|
15609
|
+
}
|
|
15610
|
+
},
|
|
15611
|
+
{
|
|
15612
|
+
"name": "error",
|
|
15613
|
+
"type": {
|
|
15614
|
+
"text": "boolean"
|
|
15615
|
+
},
|
|
15616
|
+
"default": "false",
|
|
15617
|
+
"fieldName": "isError",
|
|
15618
|
+
"inheritedFrom": {
|
|
15619
|
+
"name": "Icon",
|
|
15620
|
+
"module": "src/icon/icon.ts"
|
|
15621
|
+
}
|
|
15622
|
+
},
|
|
15552
15623
|
{
|
|
15553
15624
|
"name": "name",
|
|
15554
15625
|
"type": {
|
|
@@ -15599,9 +15670,9 @@
|
|
|
15599
15670
|
},
|
|
15600
15671
|
{
|
|
15601
15672
|
"kind": "field",
|
|
15602
|
-
"name": "
|
|
15673
|
+
"name": "uuid",
|
|
15603
15674
|
"type": {
|
|
15604
|
-
"text": "
|
|
15675
|
+
"text": "UUID"
|
|
15605
15676
|
},
|
|
15606
15677
|
"inheritedFrom": {
|
|
15607
15678
|
"name": "Icon",
|
|
@@ -15609,22 +15680,11 @@
|
|
|
15609
15680
|
}
|
|
15610
15681
|
},
|
|
15611
15682
|
{
|
|
15612
|
-
"kind": "
|
|
15613
|
-
"name": "
|
|
15614
|
-
"
|
|
15615
|
-
|
|
15616
|
-
|
|
15617
|
-
"type": {
|
|
15618
|
-
"text": "string"
|
|
15619
|
-
}
|
|
15620
|
-
},
|
|
15621
|
-
{
|
|
15622
|
-
"name": "newValue",
|
|
15623
|
-
"type": {
|
|
15624
|
-
"text": "string"
|
|
15625
|
-
}
|
|
15626
|
-
}
|
|
15627
|
-
],
|
|
15683
|
+
"kind": "field",
|
|
15684
|
+
"name": "tooltipId",
|
|
15685
|
+
"type": {
|
|
15686
|
+
"text": "string"
|
|
15687
|
+
},
|
|
15628
15688
|
"inheritedFrom": {
|
|
15629
15689
|
"name": "Icon",
|
|
15630
15690
|
"module": "src/icon/icon.ts"
|
|
@@ -15632,23 +15692,79 @@
|
|
|
15632
15692
|
},
|
|
15633
15693
|
{
|
|
15634
15694
|
"kind": "field",
|
|
15635
|
-
"name": "
|
|
15695
|
+
"name": "tooltip",
|
|
15636
15696
|
"type": {
|
|
15637
|
-
"text": "
|
|
15697
|
+
"text": "string"
|
|
15638
15698
|
},
|
|
15639
|
-
"default": "'sm'",
|
|
15640
15699
|
"inheritedFrom": {
|
|
15641
15700
|
"name": "Icon",
|
|
15642
15701
|
"module": "src/icon/icon.ts"
|
|
15643
15702
|
}
|
|
15644
15703
|
},
|
|
15645
15704
|
{
|
|
15646
|
-
"kind": "
|
|
15647
|
-
"name": "
|
|
15648
|
-
"
|
|
15649
|
-
|
|
15650
|
-
|
|
15651
|
-
|
|
15705
|
+
"kind": "field",
|
|
15706
|
+
"name": "isError",
|
|
15707
|
+
"type": {
|
|
15708
|
+
"text": "boolean"
|
|
15709
|
+
},
|
|
15710
|
+
"default": "false",
|
|
15711
|
+
"inheritedFrom": {
|
|
15712
|
+
"name": "Icon",
|
|
15713
|
+
"module": "src/icon/icon.ts"
|
|
15714
|
+
}
|
|
15715
|
+
},
|
|
15716
|
+
{
|
|
15717
|
+
"kind": "field",
|
|
15718
|
+
"name": "name",
|
|
15719
|
+
"type": {
|
|
15720
|
+
"text": "IconName"
|
|
15721
|
+
},
|
|
15722
|
+
"inheritedFrom": {
|
|
15723
|
+
"name": "Icon",
|
|
15724
|
+
"module": "src/icon/icon.ts"
|
|
15725
|
+
}
|
|
15726
|
+
},
|
|
15727
|
+
{
|
|
15728
|
+
"kind": "method",
|
|
15729
|
+
"name": "nameChanged",
|
|
15730
|
+
"parameters": [
|
|
15731
|
+
{
|
|
15732
|
+
"name": "oldValue",
|
|
15733
|
+
"type": {
|
|
15734
|
+
"text": "string"
|
|
15735
|
+
}
|
|
15736
|
+
},
|
|
15737
|
+
{
|
|
15738
|
+
"name": "newValue",
|
|
15739
|
+
"type": {
|
|
15740
|
+
"text": "string"
|
|
15741
|
+
}
|
|
15742
|
+
}
|
|
15743
|
+
],
|
|
15744
|
+
"inheritedFrom": {
|
|
15745
|
+
"name": "Icon",
|
|
15746
|
+
"module": "src/icon/icon.ts"
|
|
15747
|
+
}
|
|
15748
|
+
},
|
|
15749
|
+
{
|
|
15750
|
+
"kind": "field",
|
|
15751
|
+
"name": "size",
|
|
15752
|
+
"type": {
|
|
15753
|
+
"text": "FaSize"
|
|
15754
|
+
},
|
|
15755
|
+
"default": "'sm'",
|
|
15756
|
+
"inheritedFrom": {
|
|
15757
|
+
"name": "Icon",
|
|
15758
|
+
"module": "src/icon/icon.ts"
|
|
15759
|
+
}
|
|
15760
|
+
},
|
|
15761
|
+
{
|
|
15762
|
+
"kind": "method",
|
|
15763
|
+
"name": "sizeChanged",
|
|
15764
|
+
"parameters": [
|
|
15765
|
+
{
|
|
15766
|
+
"name": "oldValue",
|
|
15767
|
+
"type": {
|
|
15652
15768
|
"text": "string"
|
|
15653
15769
|
}
|
|
15654
15770
|
},
|
|
@@ -15698,6 +15814,14 @@
|
|
|
15698
15814
|
"module": "src/icon/icon.ts"
|
|
15699
15815
|
}
|
|
15700
15816
|
},
|
|
15817
|
+
{
|
|
15818
|
+
"kind": "method",
|
|
15819
|
+
"name": "getDefualtTooltipConfig",
|
|
15820
|
+
"inheritedFrom": {
|
|
15821
|
+
"name": "Icon",
|
|
15822
|
+
"module": "src/icon/icon.ts"
|
|
15823
|
+
}
|
|
15824
|
+
},
|
|
15701
15825
|
{
|
|
15702
15826
|
"kind": "method",
|
|
15703
15827
|
"name": "loadIcon",
|
|
@@ -20939,203 +21063,6 @@
|
|
|
20939
21063
|
}
|
|
20940
21064
|
]
|
|
20941
21065
|
},
|
|
20942
|
-
{
|
|
20943
|
-
"kind": "javascript-module",
|
|
20944
|
-
"path": "src/progress-ring/index.ts",
|
|
20945
|
-
"declarations": [],
|
|
20946
|
-
"exports": [
|
|
20947
|
-
{
|
|
20948
|
-
"kind": "js",
|
|
20949
|
-
"name": "*",
|
|
20950
|
-
"declaration": {
|
|
20951
|
-
"name": "*",
|
|
20952
|
-
"package": "./progress-ring"
|
|
20953
|
-
}
|
|
20954
|
-
},
|
|
20955
|
-
{
|
|
20956
|
-
"kind": "js",
|
|
20957
|
-
"name": "*",
|
|
20958
|
-
"declaration": {
|
|
20959
|
-
"name": "*",
|
|
20960
|
-
"package": "./progress-ring.styles"
|
|
20961
|
-
}
|
|
20962
|
-
},
|
|
20963
|
-
{
|
|
20964
|
-
"kind": "js",
|
|
20965
|
-
"name": "*",
|
|
20966
|
-
"declaration": {
|
|
20967
|
-
"name": "*",
|
|
20968
|
-
"package": "./progress-ring.template"
|
|
20969
|
-
}
|
|
20970
|
-
}
|
|
20971
|
-
]
|
|
20972
|
-
},
|
|
20973
|
-
{
|
|
20974
|
-
"kind": "javascript-module",
|
|
20975
|
-
"path": "src/progress-ring/progress-ring.stories.ts",
|
|
20976
|
-
"declarations": [
|
|
20977
|
-
{
|
|
20978
|
-
"kind": "variable",
|
|
20979
|
-
"name": "meta",
|
|
20980
|
-
"type": {
|
|
20981
|
-
"text": "Meta"
|
|
20982
|
-
},
|
|
20983
|
-
"default": "{\n title: 'Progress Ring',\n component: 'rapid-progress-ring',\n}"
|
|
20984
|
-
},
|
|
20985
|
-
{
|
|
20986
|
-
"kind": "variable",
|
|
20987
|
-
"name": "Default",
|
|
20988
|
-
"type": {
|
|
20989
|
-
"text": "StoryObj"
|
|
20990
|
-
},
|
|
20991
|
-
"default": "{\n args: {\n value: '80',\n },\n render: ({ value }) => html`\n <div style=\"width: 100%;\">\n <rapid-progress-ring value=\"${value}\"></rapid-progress-ring>\n </div>\n `,\n}"
|
|
20992
|
-
}
|
|
20993
|
-
],
|
|
20994
|
-
"exports": [
|
|
20995
|
-
{
|
|
20996
|
-
"kind": "js",
|
|
20997
|
-
"name": "default",
|
|
20998
|
-
"declaration": {
|
|
20999
|
-
"name": "meta",
|
|
21000
|
-
"module": "src/progress-ring/progress-ring.stories.ts"
|
|
21001
|
-
}
|
|
21002
|
-
},
|
|
21003
|
-
{
|
|
21004
|
-
"kind": "js",
|
|
21005
|
-
"name": "Default",
|
|
21006
|
-
"declaration": {
|
|
21007
|
-
"name": "Default",
|
|
21008
|
-
"module": "src/progress-ring/progress-ring.stories.ts"
|
|
21009
|
-
}
|
|
21010
|
-
}
|
|
21011
|
-
]
|
|
21012
|
-
},
|
|
21013
|
-
{
|
|
21014
|
-
"kind": "javascript-module",
|
|
21015
|
-
"path": "src/progress-ring/progress-ring.styles.ts",
|
|
21016
|
-
"declarations": [
|
|
21017
|
-
{
|
|
21018
|
-
"kind": "function",
|
|
21019
|
-
"name": "rapidProgressRingStyles",
|
|
21020
|
-
"return": {
|
|
21021
|
-
"type": {
|
|
21022
|
-
"text": "ElementStyles"
|
|
21023
|
-
}
|
|
21024
|
-
},
|
|
21025
|
-
"parameters": [
|
|
21026
|
-
{
|
|
21027
|
-
"name": "context",
|
|
21028
|
-
"type": {
|
|
21029
|
-
"text": "ElementDefinitionContext"
|
|
21030
|
-
}
|
|
21031
|
-
},
|
|
21032
|
-
{
|
|
21033
|
-
"name": "definition",
|
|
21034
|
-
"type": {
|
|
21035
|
-
"text": "ProgressRingOptions"
|
|
21036
|
-
}
|
|
21037
|
-
}
|
|
21038
|
-
]
|
|
21039
|
-
}
|
|
21040
|
-
],
|
|
21041
|
-
"exports": [
|
|
21042
|
-
{
|
|
21043
|
-
"kind": "js",
|
|
21044
|
-
"name": "rapidProgressRingStyles",
|
|
21045
|
-
"declaration": {
|
|
21046
|
-
"name": "rapidProgressRingStyles",
|
|
21047
|
-
"module": "src/progress-ring/progress-ring.styles.ts"
|
|
21048
|
-
}
|
|
21049
|
-
}
|
|
21050
|
-
]
|
|
21051
|
-
},
|
|
21052
|
-
{
|
|
21053
|
-
"kind": "javascript-module",
|
|
21054
|
-
"path": "src/progress-ring/progress-ring.template.ts",
|
|
21055
|
-
"declarations": [
|
|
21056
|
-
{
|
|
21057
|
-
"kind": "function",
|
|
21058
|
-
"name": "rapidProgressRingTemplate",
|
|
21059
|
-
"parameters": [
|
|
21060
|
-
{
|
|
21061
|
-
"name": "context",
|
|
21062
|
-
"type": {
|
|
21063
|
-
"text": "ElementDefinitionContext"
|
|
21064
|
-
}
|
|
21065
|
-
},
|
|
21066
|
-
{
|
|
21067
|
-
"name": "definition",
|
|
21068
|
-
"type": {
|
|
21069
|
-
"text": "ProgressRingOptions"
|
|
21070
|
-
}
|
|
21071
|
-
}
|
|
21072
|
-
]
|
|
21073
|
-
}
|
|
21074
|
-
],
|
|
21075
|
-
"exports": [
|
|
21076
|
-
{
|
|
21077
|
-
"kind": "js",
|
|
21078
|
-
"name": "rapidProgressRingTemplate",
|
|
21079
|
-
"declaration": {
|
|
21080
|
-
"name": "rapidProgressRingTemplate",
|
|
21081
|
-
"module": "src/progress-ring/progress-ring.template.ts"
|
|
21082
|
-
}
|
|
21083
|
-
}
|
|
21084
|
-
]
|
|
21085
|
-
},
|
|
21086
|
-
{
|
|
21087
|
-
"kind": "javascript-module",
|
|
21088
|
-
"path": "src/progress-ring/progress-ring.ts",
|
|
21089
|
-
"declarations": [
|
|
21090
|
-
{
|
|
21091
|
-
"kind": "class",
|
|
21092
|
-
"description": "",
|
|
21093
|
-
"name": "ProgressRing",
|
|
21094
|
-
"superclass": {
|
|
21095
|
-
"name": "FoundationProgressRing",
|
|
21096
|
-
"package": "@genesislcap/foundation-ui"
|
|
21097
|
-
}
|
|
21098
|
-
},
|
|
21099
|
-
{
|
|
21100
|
-
"kind": "variable",
|
|
21101
|
-
"name": "defaultrapidProgressRingConfig",
|
|
21102
|
-
"type": {
|
|
21103
|
-
"text": "object"
|
|
21104
|
-
},
|
|
21105
|
-
"default": "{}"
|
|
21106
|
-
},
|
|
21107
|
-
{
|
|
21108
|
-
"kind": "variable",
|
|
21109
|
-
"name": "rapidProgressRing"
|
|
21110
|
-
}
|
|
21111
|
-
],
|
|
21112
|
-
"exports": [
|
|
21113
|
-
{
|
|
21114
|
-
"kind": "js",
|
|
21115
|
-
"name": "ProgressRing",
|
|
21116
|
-
"declaration": {
|
|
21117
|
-
"name": "ProgressRing",
|
|
21118
|
-
"module": "src/progress-ring/progress-ring.ts"
|
|
21119
|
-
}
|
|
21120
|
-
},
|
|
21121
|
-
{
|
|
21122
|
-
"kind": "js",
|
|
21123
|
-
"name": "defaultrapidProgressRingConfig",
|
|
21124
|
-
"declaration": {
|
|
21125
|
-
"name": "defaultrapidProgressRingConfig",
|
|
21126
|
-
"module": "src/progress-ring/progress-ring.ts"
|
|
21127
|
-
}
|
|
21128
|
-
},
|
|
21129
|
-
{
|
|
21130
|
-
"kind": "js",
|
|
21131
|
-
"name": "rapidProgressRing",
|
|
21132
|
-
"declaration": {
|
|
21133
|
-
"name": "rapidProgressRing",
|
|
21134
|
-
"module": "src/progress-ring/progress-ring.ts"
|
|
21135
|
-
}
|
|
21136
|
-
}
|
|
21137
|
-
]
|
|
21138
|
-
},
|
|
21139
21066
|
{
|
|
21140
21067
|
"kind": "javascript-module",
|
|
21141
21068
|
"path": "src/radio/index.ts",
|
|
@@ -22240,6 +22167,203 @@
|
|
|
22240
22167
|
}
|
|
22241
22168
|
]
|
|
22242
22169
|
},
|
|
22170
|
+
{
|
|
22171
|
+
"kind": "javascript-module",
|
|
22172
|
+
"path": "src/progress-ring/index.ts",
|
|
22173
|
+
"declarations": [],
|
|
22174
|
+
"exports": [
|
|
22175
|
+
{
|
|
22176
|
+
"kind": "js",
|
|
22177
|
+
"name": "*",
|
|
22178
|
+
"declaration": {
|
|
22179
|
+
"name": "*",
|
|
22180
|
+
"package": "./progress-ring"
|
|
22181
|
+
}
|
|
22182
|
+
},
|
|
22183
|
+
{
|
|
22184
|
+
"kind": "js",
|
|
22185
|
+
"name": "*",
|
|
22186
|
+
"declaration": {
|
|
22187
|
+
"name": "*",
|
|
22188
|
+
"package": "./progress-ring.styles"
|
|
22189
|
+
}
|
|
22190
|
+
},
|
|
22191
|
+
{
|
|
22192
|
+
"kind": "js",
|
|
22193
|
+
"name": "*",
|
|
22194
|
+
"declaration": {
|
|
22195
|
+
"name": "*",
|
|
22196
|
+
"package": "./progress-ring.template"
|
|
22197
|
+
}
|
|
22198
|
+
}
|
|
22199
|
+
]
|
|
22200
|
+
},
|
|
22201
|
+
{
|
|
22202
|
+
"kind": "javascript-module",
|
|
22203
|
+
"path": "src/progress-ring/progress-ring.stories.ts",
|
|
22204
|
+
"declarations": [
|
|
22205
|
+
{
|
|
22206
|
+
"kind": "variable",
|
|
22207
|
+
"name": "meta",
|
|
22208
|
+
"type": {
|
|
22209
|
+
"text": "Meta"
|
|
22210
|
+
},
|
|
22211
|
+
"default": "{\n title: 'Progress Ring',\n component: 'rapid-progress-ring',\n}"
|
|
22212
|
+
},
|
|
22213
|
+
{
|
|
22214
|
+
"kind": "variable",
|
|
22215
|
+
"name": "Default",
|
|
22216
|
+
"type": {
|
|
22217
|
+
"text": "StoryObj"
|
|
22218
|
+
},
|
|
22219
|
+
"default": "{\n args: {\n value: '80',\n },\n render: ({ value }) => html`\n <div style=\"width: 100%;\">\n <rapid-progress-ring value=\"${value}\"></rapid-progress-ring>\n </div>\n `,\n}"
|
|
22220
|
+
}
|
|
22221
|
+
],
|
|
22222
|
+
"exports": [
|
|
22223
|
+
{
|
|
22224
|
+
"kind": "js",
|
|
22225
|
+
"name": "default",
|
|
22226
|
+
"declaration": {
|
|
22227
|
+
"name": "meta",
|
|
22228
|
+
"module": "src/progress-ring/progress-ring.stories.ts"
|
|
22229
|
+
}
|
|
22230
|
+
},
|
|
22231
|
+
{
|
|
22232
|
+
"kind": "js",
|
|
22233
|
+
"name": "Default",
|
|
22234
|
+
"declaration": {
|
|
22235
|
+
"name": "Default",
|
|
22236
|
+
"module": "src/progress-ring/progress-ring.stories.ts"
|
|
22237
|
+
}
|
|
22238
|
+
}
|
|
22239
|
+
]
|
|
22240
|
+
},
|
|
22241
|
+
{
|
|
22242
|
+
"kind": "javascript-module",
|
|
22243
|
+
"path": "src/progress-ring/progress-ring.styles.ts",
|
|
22244
|
+
"declarations": [
|
|
22245
|
+
{
|
|
22246
|
+
"kind": "function",
|
|
22247
|
+
"name": "rapidProgressRingStyles",
|
|
22248
|
+
"return": {
|
|
22249
|
+
"type": {
|
|
22250
|
+
"text": "ElementStyles"
|
|
22251
|
+
}
|
|
22252
|
+
},
|
|
22253
|
+
"parameters": [
|
|
22254
|
+
{
|
|
22255
|
+
"name": "context",
|
|
22256
|
+
"type": {
|
|
22257
|
+
"text": "ElementDefinitionContext"
|
|
22258
|
+
}
|
|
22259
|
+
},
|
|
22260
|
+
{
|
|
22261
|
+
"name": "definition",
|
|
22262
|
+
"type": {
|
|
22263
|
+
"text": "ProgressRingOptions"
|
|
22264
|
+
}
|
|
22265
|
+
}
|
|
22266
|
+
]
|
|
22267
|
+
}
|
|
22268
|
+
],
|
|
22269
|
+
"exports": [
|
|
22270
|
+
{
|
|
22271
|
+
"kind": "js",
|
|
22272
|
+
"name": "rapidProgressRingStyles",
|
|
22273
|
+
"declaration": {
|
|
22274
|
+
"name": "rapidProgressRingStyles",
|
|
22275
|
+
"module": "src/progress-ring/progress-ring.styles.ts"
|
|
22276
|
+
}
|
|
22277
|
+
}
|
|
22278
|
+
]
|
|
22279
|
+
},
|
|
22280
|
+
{
|
|
22281
|
+
"kind": "javascript-module",
|
|
22282
|
+
"path": "src/progress-ring/progress-ring.template.ts",
|
|
22283
|
+
"declarations": [
|
|
22284
|
+
{
|
|
22285
|
+
"kind": "function",
|
|
22286
|
+
"name": "rapidProgressRingTemplate",
|
|
22287
|
+
"parameters": [
|
|
22288
|
+
{
|
|
22289
|
+
"name": "context",
|
|
22290
|
+
"type": {
|
|
22291
|
+
"text": "ElementDefinitionContext"
|
|
22292
|
+
}
|
|
22293
|
+
},
|
|
22294
|
+
{
|
|
22295
|
+
"name": "definition",
|
|
22296
|
+
"type": {
|
|
22297
|
+
"text": "ProgressRingOptions"
|
|
22298
|
+
}
|
|
22299
|
+
}
|
|
22300
|
+
]
|
|
22301
|
+
}
|
|
22302
|
+
],
|
|
22303
|
+
"exports": [
|
|
22304
|
+
{
|
|
22305
|
+
"kind": "js",
|
|
22306
|
+
"name": "rapidProgressRingTemplate",
|
|
22307
|
+
"declaration": {
|
|
22308
|
+
"name": "rapidProgressRingTemplate",
|
|
22309
|
+
"module": "src/progress-ring/progress-ring.template.ts"
|
|
22310
|
+
}
|
|
22311
|
+
}
|
|
22312
|
+
]
|
|
22313
|
+
},
|
|
22314
|
+
{
|
|
22315
|
+
"kind": "javascript-module",
|
|
22316
|
+
"path": "src/progress-ring/progress-ring.ts",
|
|
22317
|
+
"declarations": [
|
|
22318
|
+
{
|
|
22319
|
+
"kind": "class",
|
|
22320
|
+
"description": "",
|
|
22321
|
+
"name": "ProgressRing",
|
|
22322
|
+
"superclass": {
|
|
22323
|
+
"name": "FoundationProgressRing",
|
|
22324
|
+
"package": "@genesislcap/foundation-ui"
|
|
22325
|
+
}
|
|
22326
|
+
},
|
|
22327
|
+
{
|
|
22328
|
+
"kind": "variable",
|
|
22329
|
+
"name": "defaultrapidProgressRingConfig",
|
|
22330
|
+
"type": {
|
|
22331
|
+
"text": "object"
|
|
22332
|
+
},
|
|
22333
|
+
"default": "{}"
|
|
22334
|
+
},
|
|
22335
|
+
{
|
|
22336
|
+
"kind": "variable",
|
|
22337
|
+
"name": "rapidProgressRing"
|
|
22338
|
+
}
|
|
22339
|
+
],
|
|
22340
|
+
"exports": [
|
|
22341
|
+
{
|
|
22342
|
+
"kind": "js",
|
|
22343
|
+
"name": "ProgressRing",
|
|
22344
|
+
"declaration": {
|
|
22345
|
+
"name": "ProgressRing",
|
|
22346
|
+
"module": "src/progress-ring/progress-ring.ts"
|
|
22347
|
+
}
|
|
22348
|
+
},
|
|
22349
|
+
{
|
|
22350
|
+
"kind": "js",
|
|
22351
|
+
"name": "defaultrapidProgressRingConfig",
|
|
22352
|
+
"declaration": {
|
|
22353
|
+
"name": "defaultrapidProgressRingConfig",
|
|
22354
|
+
"module": "src/progress-ring/progress-ring.ts"
|
|
22355
|
+
}
|
|
22356
|
+
},
|
|
22357
|
+
{
|
|
22358
|
+
"kind": "js",
|
|
22359
|
+
"name": "rapidProgressRing",
|
|
22360
|
+
"declaration": {
|
|
22361
|
+
"name": "rapidProgressRing",
|
|
22362
|
+
"module": "src/progress-ring/progress-ring.ts"
|
|
22363
|
+
}
|
|
22364
|
+
}
|
|
22365
|
+
]
|
|
22366
|
+
},
|
|
22243
22367
|
{
|
|
22244
22368
|
"kind": "javascript-module",
|
|
22245
22369
|
"path": "src/router/index.ts",
|