@coras-io/embed 0.1.1 → 0.1.2
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/CHANGELOG.md +9 -0
- package/dist/core/currency/index.d.ts +1 -3
- package/dist/core/currency/index.js +16 -6
- package/dist/custom-elements.json +174 -174
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @coras-io/embed
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 90975a0: Render prices with the decimal places each currency actually uses instead of
|
|
8
|
+
always showing two. Zero-decimal currencies (JPY, VND, ISK, HUF and others) now
|
|
9
|
+
display as whole amounts (`¥1,000` rather than `¥1,000.00`), and IDR is shown
|
|
10
|
+
without its defunct sen subunit. Two-decimal currencies are unaffected.
|
|
11
|
+
|
|
3
12
|
## 0.1.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -5,8 +5,6 @@ type convertToLocaleCurrencyProps = {
|
|
|
5
5
|
locale: (typeof allLocales)[number];
|
|
6
6
|
currency: SupportedCurrencies;
|
|
7
7
|
isSmallestCurrencyUnit?: boolean;
|
|
8
|
-
maximumFractionDigits?: number;
|
|
9
|
-
minimumFractionDigits?: number;
|
|
10
8
|
};
|
|
11
|
-
export declare const convertToLocaleCurrency: ({ value, locale, currency,
|
|
9
|
+
export declare const convertToLocaleCurrency: ({ value, locale, currency, isSmallestCurrencyUnit, }: convertToLocaleCurrencyProps) => string;
|
|
12
10
|
export {};
|
|
@@ -1,6 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
// Currencies we render without decimals even though their CLDR default is 2.
|
|
2
|
+
// Intl already drops decimals for genuinely zero-decimal currencies (JPY, VND,
|
|
3
|
+
// ISK, HUF, ALL); IDR's default is 2 (the defunct sen subunit) but amounts are
|
|
4
|
+
// only ever whole rupiah, so we force it to 0 here.
|
|
5
|
+
const forcedZeroDecimalCurrencies = new Set(["IDR"]);
|
|
6
|
+
export const convertToLocaleCurrency = ({ value = 10000, locale = "en-US", currency = "USD", isSmallestCurrencyUnit = true, }) => {
|
|
7
|
+
const fractionDigits = forcedZeroDecimalCurrencies.has(currency)
|
|
8
|
+
? 0
|
|
9
|
+
: undefined;
|
|
10
|
+
return new Intl.NumberFormat(locale, {
|
|
11
|
+
style: "currency",
|
|
12
|
+
currency: currency,
|
|
13
|
+
minimumFractionDigits: fractionDigits,
|
|
14
|
+
maximumFractionDigits: fractionDigits,
|
|
15
|
+
}).format(isSmallestCurrencyUnit ? value / 100 : value);
|
|
16
|
+
};
|
|
@@ -34777,78 +34777,91 @@
|
|
|
34777
34777
|
},
|
|
34778
34778
|
{
|
|
34779
34779
|
"kind": "javascript-module",
|
|
34780
|
-
"path": "src/components/
|
|
34780
|
+
"path": "src/components/footer-menu/footer-menu-item/footer-menu-item.component.ts",
|
|
34781
34781
|
"declarations": [
|
|
34782
34782
|
{
|
|
34783
34783
|
"kind": "class",
|
|
34784
34784
|
"description": "",
|
|
34785
|
-
"name": "
|
|
34785
|
+
"name": "CorasFooterMenuItem",
|
|
34786
34786
|
"members": [
|
|
34787
34787
|
{
|
|
34788
34788
|
"kind": "field",
|
|
34789
|
-
"name": "
|
|
34789
|
+
"name": "href",
|
|
34790
34790
|
"type": {
|
|
34791
|
-
"text": "string"
|
|
34791
|
+
"text": "string | undefined"
|
|
34792
34792
|
},
|
|
34793
|
-
"
|
|
34794
|
-
"attribute": "icon"
|
|
34793
|
+
"attribute": "href"
|
|
34795
34794
|
},
|
|
34796
34795
|
{
|
|
34797
34796
|
"kind": "field",
|
|
34798
|
-
"name": "
|
|
34797
|
+
"name": "target",
|
|
34799
34798
|
"type": {
|
|
34800
|
-
"text": "string"
|
|
34799
|
+
"text": "string | undefined"
|
|
34801
34800
|
},
|
|
34802
|
-
"default": "\"\"",
|
|
34803
|
-
"attribute": "
|
|
34801
|
+
"default": "\"_self\"",
|
|
34802
|
+
"attribute": "target"
|
|
34803
|
+
},
|
|
34804
|
+
{
|
|
34805
|
+
"kind": "field",
|
|
34806
|
+
"name": "rel",
|
|
34807
|
+
"type": {
|
|
34808
|
+
"text": "string | undefined"
|
|
34809
|
+
},
|
|
34810
|
+
"attribute": "rel"
|
|
34804
34811
|
}
|
|
34805
34812
|
],
|
|
34806
34813
|
"attributes": [
|
|
34807
34814
|
{
|
|
34808
|
-
"name": "
|
|
34815
|
+
"name": "href",
|
|
34809
34816
|
"type": {
|
|
34810
|
-
"text": "string"
|
|
34817
|
+
"text": "string | undefined"
|
|
34811
34818
|
},
|
|
34812
|
-
"
|
|
34813
|
-
"fieldName": "icon"
|
|
34819
|
+
"fieldName": "href"
|
|
34814
34820
|
},
|
|
34815
34821
|
{
|
|
34816
|
-
"name": "
|
|
34822
|
+
"name": "target",
|
|
34817
34823
|
"type": {
|
|
34818
|
-
"text": "string"
|
|
34824
|
+
"text": "string | undefined"
|
|
34819
34825
|
},
|
|
34820
|
-
"default": "\"\"",
|
|
34821
|
-
"fieldName": "
|
|
34826
|
+
"default": "\"_self\"",
|
|
34827
|
+
"fieldName": "target"
|
|
34828
|
+
},
|
|
34829
|
+
{
|
|
34830
|
+
"name": "rel",
|
|
34831
|
+
"type": {
|
|
34832
|
+
"text": "string | undefined"
|
|
34833
|
+
},
|
|
34834
|
+
"fieldName": "rel"
|
|
34822
34835
|
}
|
|
34823
34836
|
],
|
|
34824
34837
|
"superclass": {
|
|
34825
34838
|
"name": "LitElement",
|
|
34826
34839
|
"package": "lit"
|
|
34827
34840
|
},
|
|
34828
|
-
"tagName": "coras-
|
|
34841
|
+
"tagName": "coras-footer-menu-item",
|
|
34829
34842
|
"customElement": true
|
|
34830
34843
|
}
|
|
34831
34844
|
],
|
|
34832
34845
|
"exports": [
|
|
34833
34846
|
{
|
|
34834
34847
|
"kind": "js",
|
|
34835
|
-
"name": "
|
|
34848
|
+
"name": "CorasFooterMenuItem",
|
|
34836
34849
|
"declaration": {
|
|
34837
|
-
"name": "
|
|
34838
|
-
"module": "src/components/
|
|
34850
|
+
"name": "CorasFooterMenuItem",
|
|
34851
|
+
"module": "src/components/footer-menu/footer-menu-item/footer-menu-item.component.ts"
|
|
34839
34852
|
}
|
|
34840
34853
|
}
|
|
34841
34854
|
]
|
|
34842
34855
|
},
|
|
34843
34856
|
{
|
|
34844
34857
|
"kind": "javascript-module",
|
|
34845
|
-
"path": "src/components/
|
|
34858
|
+
"path": "src/components/footer-menu/footer-menu-item/footer-menu-item.tests.ts",
|
|
34846
34859
|
"declarations": [],
|
|
34847
34860
|
"exports": []
|
|
34848
34861
|
},
|
|
34849
34862
|
{
|
|
34850
34863
|
"kind": "javascript-module",
|
|
34851
|
-
"path": "src/components/
|
|
34864
|
+
"path": "src/components/footer-menu/footer-menu-item/footer-menu-item.ts",
|
|
34852
34865
|
"declarations": [],
|
|
34853
34866
|
"exports": [
|
|
34854
34867
|
{
|
|
@@ -34856,114 +34869,101 @@
|
|
|
34856
34869
|
"name": "*",
|
|
34857
34870
|
"declaration": {
|
|
34858
34871
|
"name": "*",
|
|
34859
|
-
"package": "\"./
|
|
34872
|
+
"package": "\"./footer-menu-item.component.js\""
|
|
34860
34873
|
}
|
|
34861
34874
|
},
|
|
34862
34875
|
{
|
|
34863
34876
|
"kind": "js",
|
|
34864
34877
|
"name": "default",
|
|
34865
34878
|
"declaration": {
|
|
34866
|
-
"name": "
|
|
34867
|
-
"module": "src/components/
|
|
34879
|
+
"name": "CorasFooterMenuItem",
|
|
34880
|
+
"module": "src/components/footer-menu/footer-menu-item/footer-menu-item.ts"
|
|
34868
34881
|
}
|
|
34869
34882
|
},
|
|
34870
34883
|
{
|
|
34871
34884
|
"kind": "custom-element-definition",
|
|
34872
|
-
"name": "coras-
|
|
34885
|
+
"name": "coras-footer-menu-item",
|
|
34873
34886
|
"declaration": {
|
|
34874
|
-
"name": "
|
|
34875
|
-
"module": "/src/components/
|
|
34887
|
+
"name": "CorasFooterMenuItem",
|
|
34888
|
+
"module": "/src/components/footer-menu/footer-menu-item/footer-menu-item.component.js"
|
|
34876
34889
|
}
|
|
34877
34890
|
}
|
|
34878
34891
|
]
|
|
34879
34892
|
},
|
|
34880
34893
|
{
|
|
34881
34894
|
"kind": "javascript-module",
|
|
34882
|
-
"path": "src/components/
|
|
34895
|
+
"path": "src/components/icon-list/icon-list-item/icon-list-item.component.ts",
|
|
34883
34896
|
"declarations": [
|
|
34884
34897
|
{
|
|
34885
34898
|
"kind": "class",
|
|
34886
34899
|
"description": "",
|
|
34887
|
-
"name": "
|
|
34900
|
+
"name": "CorasIconListItem",
|
|
34888
34901
|
"members": [
|
|
34889
34902
|
{
|
|
34890
34903
|
"kind": "field",
|
|
34891
|
-
"name": "
|
|
34892
|
-
"type": {
|
|
34893
|
-
"text": "string | undefined"
|
|
34894
|
-
},
|
|
34895
|
-
"attribute": "href"
|
|
34896
|
-
},
|
|
34897
|
-
{
|
|
34898
|
-
"kind": "field",
|
|
34899
|
-
"name": "target",
|
|
34904
|
+
"name": "icon",
|
|
34900
34905
|
"type": {
|
|
34901
|
-
"text": "string
|
|
34906
|
+
"text": "string"
|
|
34902
34907
|
},
|
|
34903
|
-
"default": "\"
|
|
34904
|
-
"attribute": "
|
|
34908
|
+
"default": "\"\"",
|
|
34909
|
+
"attribute": "icon"
|
|
34905
34910
|
},
|
|
34906
34911
|
{
|
|
34907
34912
|
"kind": "field",
|
|
34908
|
-
"name": "
|
|
34913
|
+
"name": "iconBaseURL",
|
|
34909
34914
|
"type": {
|
|
34910
|
-
"text": "string
|
|
34915
|
+
"text": "string"
|
|
34911
34916
|
},
|
|
34912
|
-
"
|
|
34917
|
+
"default": "\"\"",
|
|
34918
|
+
"attribute": "assets-url"
|
|
34913
34919
|
}
|
|
34914
34920
|
],
|
|
34915
34921
|
"attributes": [
|
|
34916
34922
|
{
|
|
34917
|
-
"name": "
|
|
34918
|
-
"type": {
|
|
34919
|
-
"text": "string | undefined"
|
|
34920
|
-
},
|
|
34921
|
-
"fieldName": "href"
|
|
34922
|
-
},
|
|
34923
|
-
{
|
|
34924
|
-
"name": "target",
|
|
34923
|
+
"name": "icon",
|
|
34925
34924
|
"type": {
|
|
34926
|
-
"text": "string
|
|
34925
|
+
"text": "string"
|
|
34927
34926
|
},
|
|
34928
|
-
"default": "\"
|
|
34929
|
-
"fieldName": "
|
|
34927
|
+
"default": "\"\"",
|
|
34928
|
+
"fieldName": "icon"
|
|
34930
34929
|
},
|
|
34931
34930
|
{
|
|
34932
|
-
"name": "
|
|
34931
|
+
"name": "assets-url",
|
|
34933
34932
|
"type": {
|
|
34934
|
-
"text": "string
|
|
34933
|
+
"text": "string"
|
|
34935
34934
|
},
|
|
34936
|
-
"
|
|
34935
|
+
"default": "\"\"",
|
|
34936
|
+
"fieldName": "iconBaseURL"
|
|
34937
34937
|
}
|
|
34938
34938
|
],
|
|
34939
34939
|
"superclass": {
|
|
34940
34940
|
"name": "LitElement",
|
|
34941
34941
|
"package": "lit"
|
|
34942
34942
|
},
|
|
34943
|
-
"tagName": "coras-
|
|
34943
|
+
"tagName": "coras-icon-list-item",
|
|
34944
34944
|
"customElement": true
|
|
34945
34945
|
}
|
|
34946
34946
|
],
|
|
34947
34947
|
"exports": [
|
|
34948
34948
|
{
|
|
34949
34949
|
"kind": "js",
|
|
34950
|
-
"name": "
|
|
34950
|
+
"name": "CorasIconListItem",
|
|
34951
34951
|
"declaration": {
|
|
34952
|
-
"name": "
|
|
34953
|
-
"module": "src/components/
|
|
34952
|
+
"name": "CorasIconListItem",
|
|
34953
|
+
"module": "src/components/icon-list/icon-list-item/icon-list-item.component.ts"
|
|
34954
34954
|
}
|
|
34955
34955
|
}
|
|
34956
34956
|
]
|
|
34957
34957
|
},
|
|
34958
34958
|
{
|
|
34959
34959
|
"kind": "javascript-module",
|
|
34960
|
-
"path": "src/components/
|
|
34960
|
+
"path": "src/components/icon-list/icon-list-item/icon-list-item.tests.ts",
|
|
34961
34961
|
"declarations": [],
|
|
34962
34962
|
"exports": []
|
|
34963
34963
|
},
|
|
34964
34964
|
{
|
|
34965
34965
|
"kind": "javascript-module",
|
|
34966
|
-
"path": "src/components/
|
|
34966
|
+
"path": "src/components/icon-list/icon-list-item/icon-list-item.ts",
|
|
34967
34967
|
"declarations": [],
|
|
34968
34968
|
"exports": [
|
|
34969
34969
|
{
|
|
@@ -34971,23 +34971,23 @@
|
|
|
34971
34971
|
"name": "*",
|
|
34972
34972
|
"declaration": {
|
|
34973
34973
|
"name": "*",
|
|
34974
|
-
"package": "\"./
|
|
34974
|
+
"package": "\"./icon-list-item.component.js\""
|
|
34975
34975
|
}
|
|
34976
34976
|
},
|
|
34977
34977
|
{
|
|
34978
34978
|
"kind": "js",
|
|
34979
34979
|
"name": "default",
|
|
34980
34980
|
"declaration": {
|
|
34981
|
-
"name": "
|
|
34982
|
-
"module": "src/components/
|
|
34981
|
+
"name": "CorasIconListItem",
|
|
34982
|
+
"module": "src/components/icon-list/icon-list-item/icon-list-item.ts"
|
|
34983
34983
|
}
|
|
34984
34984
|
},
|
|
34985
34985
|
{
|
|
34986
34986
|
"kind": "custom-element-definition",
|
|
34987
|
-
"name": "coras-
|
|
34987
|
+
"name": "coras-icon-list-item",
|
|
34988
34988
|
"declaration": {
|
|
34989
|
-
"name": "
|
|
34990
|
-
"module": "/src/components/
|
|
34989
|
+
"name": "CorasIconListItem",
|
|
34990
|
+
"module": "/src/components/icon-list/icon-list-item/icon-list-item.component.js"
|
|
34991
34991
|
}
|
|
34992
34992
|
}
|
|
34993
34993
|
]
|
|
@@ -36234,6 +36234,107 @@
|
|
|
36234
36234
|
}
|
|
36235
36235
|
]
|
|
36236
36236
|
},
|
|
36237
|
+
{
|
|
36238
|
+
"kind": "javascript-module",
|
|
36239
|
+
"path": "src/containers/footer/footer.component.ts",
|
|
36240
|
+
"declarations": [
|
|
36241
|
+
{
|
|
36242
|
+
"kind": "class",
|
|
36243
|
+
"description": "",
|
|
36244
|
+
"name": "CorasFooter",
|
|
36245
|
+
"members": [
|
|
36246
|
+
{
|
|
36247
|
+
"kind": "field",
|
|
36248
|
+
"name": "_pageDispatch",
|
|
36249
|
+
"type": {
|
|
36250
|
+
"text": "(params: PageDispatchInput) => void"
|
|
36251
|
+
},
|
|
36252
|
+
"privacy": "private"
|
|
36253
|
+
}
|
|
36254
|
+
],
|
|
36255
|
+
"superclass": {
|
|
36256
|
+
"name": "LitElement",
|
|
36257
|
+
"package": "lit"
|
|
36258
|
+
},
|
|
36259
|
+
"tagName": "coras-footer",
|
|
36260
|
+
"customElement": true
|
|
36261
|
+
}
|
|
36262
|
+
],
|
|
36263
|
+
"exports": [
|
|
36264
|
+
{
|
|
36265
|
+
"kind": "js",
|
|
36266
|
+
"name": "CorasFooter",
|
|
36267
|
+
"declaration": {
|
|
36268
|
+
"name": "CorasFooter",
|
|
36269
|
+
"module": "src/containers/footer/footer.component.ts"
|
|
36270
|
+
}
|
|
36271
|
+
}
|
|
36272
|
+
]
|
|
36273
|
+
},
|
|
36274
|
+
{
|
|
36275
|
+
"kind": "javascript-module",
|
|
36276
|
+
"path": "src/containers/footer/footer.tests.ts",
|
|
36277
|
+
"declarations": [
|
|
36278
|
+
{
|
|
36279
|
+
"kind": "class",
|
|
36280
|
+
"description": "",
|
|
36281
|
+
"name": "TestProvider",
|
|
36282
|
+
"members": [
|
|
36283
|
+
{
|
|
36284
|
+
"kind": "field",
|
|
36285
|
+
"name": "_pageDispatch"
|
|
36286
|
+
}
|
|
36287
|
+
],
|
|
36288
|
+
"superclass": {
|
|
36289
|
+
"name": "LitElement",
|
|
36290
|
+
"package": "lit"
|
|
36291
|
+
},
|
|
36292
|
+
"tagName": "test-provider",
|
|
36293
|
+
"customElement": true
|
|
36294
|
+
}
|
|
36295
|
+
],
|
|
36296
|
+
"exports": [
|
|
36297
|
+
{
|
|
36298
|
+
"kind": "custom-element-definition",
|
|
36299
|
+
"name": "test-provider",
|
|
36300
|
+
"declaration": {
|
|
36301
|
+
"name": "TestProvider",
|
|
36302
|
+
"module": "src/containers/footer/footer.tests.ts"
|
|
36303
|
+
}
|
|
36304
|
+
}
|
|
36305
|
+
]
|
|
36306
|
+
},
|
|
36307
|
+
{
|
|
36308
|
+
"kind": "javascript-module",
|
|
36309
|
+
"path": "src/containers/footer/footer.ts",
|
|
36310
|
+
"declarations": [],
|
|
36311
|
+
"exports": [
|
|
36312
|
+
{
|
|
36313
|
+
"kind": "js",
|
|
36314
|
+
"name": "*",
|
|
36315
|
+
"declaration": {
|
|
36316
|
+
"name": "*",
|
|
36317
|
+
"package": "\"./footer.component.js\""
|
|
36318
|
+
}
|
|
36319
|
+
},
|
|
36320
|
+
{
|
|
36321
|
+
"kind": "js",
|
|
36322
|
+
"name": "default",
|
|
36323
|
+
"declaration": {
|
|
36324
|
+
"name": "CorasFooter",
|
|
36325
|
+
"module": "src/containers/footer/footer.ts"
|
|
36326
|
+
}
|
|
36327
|
+
},
|
|
36328
|
+
{
|
|
36329
|
+
"kind": "custom-element-definition",
|
|
36330
|
+
"name": "coras-footer",
|
|
36331
|
+
"declaration": {
|
|
36332
|
+
"name": "CorasFooter",
|
|
36333
|
+
"module": "/src/containers/footer/footer.component.js"
|
|
36334
|
+
}
|
|
36335
|
+
}
|
|
36336
|
+
]
|
|
36337
|
+
},
|
|
36237
36338
|
{
|
|
36238
36339
|
"kind": "javascript-module",
|
|
36239
36340
|
"path": "src/containers/basket/basket.component.ts",
|
|
@@ -36444,107 +36545,6 @@
|
|
|
36444
36545
|
}
|
|
36445
36546
|
]
|
|
36446
36547
|
},
|
|
36447
|
-
{
|
|
36448
|
-
"kind": "javascript-module",
|
|
36449
|
-
"path": "src/containers/footer/footer.component.ts",
|
|
36450
|
-
"declarations": [
|
|
36451
|
-
{
|
|
36452
|
-
"kind": "class",
|
|
36453
|
-
"description": "",
|
|
36454
|
-
"name": "CorasFooter",
|
|
36455
|
-
"members": [
|
|
36456
|
-
{
|
|
36457
|
-
"kind": "field",
|
|
36458
|
-
"name": "_pageDispatch",
|
|
36459
|
-
"type": {
|
|
36460
|
-
"text": "(params: PageDispatchInput) => void"
|
|
36461
|
-
},
|
|
36462
|
-
"privacy": "private"
|
|
36463
|
-
}
|
|
36464
|
-
],
|
|
36465
|
-
"superclass": {
|
|
36466
|
-
"name": "LitElement",
|
|
36467
|
-
"package": "lit"
|
|
36468
|
-
},
|
|
36469
|
-
"tagName": "coras-footer",
|
|
36470
|
-
"customElement": true
|
|
36471
|
-
}
|
|
36472
|
-
],
|
|
36473
|
-
"exports": [
|
|
36474
|
-
{
|
|
36475
|
-
"kind": "js",
|
|
36476
|
-
"name": "CorasFooter",
|
|
36477
|
-
"declaration": {
|
|
36478
|
-
"name": "CorasFooter",
|
|
36479
|
-
"module": "src/containers/footer/footer.component.ts"
|
|
36480
|
-
}
|
|
36481
|
-
}
|
|
36482
|
-
]
|
|
36483
|
-
},
|
|
36484
|
-
{
|
|
36485
|
-
"kind": "javascript-module",
|
|
36486
|
-
"path": "src/containers/footer/footer.tests.ts",
|
|
36487
|
-
"declarations": [
|
|
36488
|
-
{
|
|
36489
|
-
"kind": "class",
|
|
36490
|
-
"description": "",
|
|
36491
|
-
"name": "TestProvider",
|
|
36492
|
-
"members": [
|
|
36493
|
-
{
|
|
36494
|
-
"kind": "field",
|
|
36495
|
-
"name": "_pageDispatch"
|
|
36496
|
-
}
|
|
36497
|
-
],
|
|
36498
|
-
"superclass": {
|
|
36499
|
-
"name": "LitElement",
|
|
36500
|
-
"package": "lit"
|
|
36501
|
-
},
|
|
36502
|
-
"tagName": "test-provider",
|
|
36503
|
-
"customElement": true
|
|
36504
|
-
}
|
|
36505
|
-
],
|
|
36506
|
-
"exports": [
|
|
36507
|
-
{
|
|
36508
|
-
"kind": "custom-element-definition",
|
|
36509
|
-
"name": "test-provider",
|
|
36510
|
-
"declaration": {
|
|
36511
|
-
"name": "TestProvider",
|
|
36512
|
-
"module": "src/containers/footer/footer.tests.ts"
|
|
36513
|
-
}
|
|
36514
|
-
}
|
|
36515
|
-
]
|
|
36516
|
-
},
|
|
36517
|
-
{
|
|
36518
|
-
"kind": "javascript-module",
|
|
36519
|
-
"path": "src/containers/footer/footer.ts",
|
|
36520
|
-
"declarations": [],
|
|
36521
|
-
"exports": [
|
|
36522
|
-
{
|
|
36523
|
-
"kind": "js",
|
|
36524
|
-
"name": "*",
|
|
36525
|
-
"declaration": {
|
|
36526
|
-
"name": "*",
|
|
36527
|
-
"package": "\"./footer.component.js\""
|
|
36528
|
-
}
|
|
36529
|
-
},
|
|
36530
|
-
{
|
|
36531
|
-
"kind": "js",
|
|
36532
|
-
"name": "default",
|
|
36533
|
-
"declaration": {
|
|
36534
|
-
"name": "CorasFooter",
|
|
36535
|
-
"module": "src/containers/footer/footer.ts"
|
|
36536
|
-
}
|
|
36537
|
-
},
|
|
36538
|
-
{
|
|
36539
|
-
"kind": "custom-element-definition",
|
|
36540
|
-
"name": "coras-footer",
|
|
36541
|
-
"declaration": {
|
|
36542
|
-
"name": "CorasFooter",
|
|
36543
|
-
"module": "/src/containers/footer/footer.component.js"
|
|
36544
|
-
}
|
|
36545
|
-
}
|
|
36546
|
-
]
|
|
36547
|
-
},
|
|
36548
36548
|
{
|
|
36549
36549
|
"kind": "javascript-module",
|
|
36550
36550
|
"path": "src/containers/navbar/navbar.component.ts",
|