@mirai/core 0.3.392 → 0.3.393
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/build/components/Booking/Booking.module.css +10 -2
- package/build/components/Booking/__tests__/__snapshots__/Booking.test.js.snap +5 -35
- package/build/components/Booking/partials/Booking.Information.js +1 -1
- package/build/components/Booking/partials/Booking.Information.js.map +1 -1
- package/build/components/Booking/partials/Booking.Menu.js +3 -3
- package/build/components/Booking/partials/Booking.Menu.js.map +1 -1
- package/build/components/Booking/partials/Booking.Modal.js +1 -1
- package/build/components/Booking/partials/Booking.Modal.js.map +1 -1
- package/build/components/BookingQuery/__tests__/__snapshots__/BookingQuery.test.js.snap +12 -84
- package/build/components/ButtonFinder/__tests__/__snapshots__/ButtonFinder.test.js.snap +10 -70
- package/build/components/Checkout/__tests__/__snapshots__/Checkout.test.js.snap +8 -56
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Confirmation.test.js.snap +12 -84
- package/build/components/Deals/__tests__/__snapshots__/Deals.test.js.snap +8 -56
- package/build/components/Finder/__tests__/__snapshots__/Finder.test.js.snap +28 -196
- package/build/components/Finder/components/Places/__tests__/__snapshots__/Places.test.js.snap +28 -4
- package/build/components/Session/__tests__/__snapshots__/Session.test.js.snap +1 -7
- package/build/components/__shared__/BookingSummary/_tests__/__snapshots__/BookingSummary.test.js.snap +8 -56
- package/build/components/__shared__/BookingTable/BookingTable.Row.js +1 -5
- package/build/components/__shared__/BookingTable/BookingTable.Row.js.map +1 -1
- package/build/components/__shared__/BookingTerms/BookingTerms.js +1 -1
- package/build/components/__shared__/BookingTerms/BookingTerms.js.map +1 -1
- package/build/components/__shared__/FieldOccupation/__tests__/__snapshots__/FieldOccupation.test.js.snap +18 -126
- package/build/components/__shared__/Footer/Footer.module.css +0 -1
- package/build/components/__shared__/Footer/__tests__/__snapshots__/Footer.test.js.snap +4 -28
- package/build/components/__shared__/Occupation/__tests__/__snapshots__/Occupation.test.js.snap +31 -217
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BookingTerms.js","names":["_dataSources","require","_locale","_ui","_propTypes","_interopRequireDefault","_react","_interopRequireWildcard","_BookingTermsL10n","style","_components","_parseHtml","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","obj","_extends","assign","bind","target","arguments","length","source","key","apply","BookingTerms","_ref","dataSource","cancelationPolicy","otherConditions","paymentsConditions","hotel","privacyPolicy","small","tracking","others","translate","useLocale","track","useMetrics","modal","setModal","useState","fieldProps","inline","createElement","Fragment","View","className","styles","box","Field","label","L10N","LABEL_PAYMENT_TERMS","value","parseHtml","LABEL_CANCELLATION_POLICY","summary","detail","Action","underline","onPress","noPrint","ACTION_MORE_INFO","LABEL_PRIVACY_POLICY","LABEL_PRIVACY_POLICY_DESCRIPTION","link","href","concat","linkPrivacy","LABEL_OTHERS_TERMS","Modal","title","visible","onClose","Text","exports","displayName","propTypes","PropTypes","shape","string","details","payment","bool"],"sources":["../../../../src/components/__shared__/BookingTerms/BookingTerms.jsx"],"sourcesContent":["import { useMetrics } from '@mirai/data-sources';\nimport { useLocale } from '@mirai/locale';\nimport { Action, Modal, styles, Text, View } from '@mirai/ui';\nimport PropTypes from 'prop-types';\nimport React, { useState } from 'react';\n\nimport { L10N } from './BookingTerms.l10n.js';\nimport * as style from './BookingTerms.module.css';\nimport { Field } from '../../Booking/components';\nimport { parseHtml } from '../../helpers/parseHtml';\n\nconst BookingTerms = ({\n dataSource: { cancelationPolicy, otherConditions, paymentsConditions, hotel: { privacyPolicy } = {} } = {},\n small,\n tracking,\n ...others\n}) => {\n const { translate } = useLocale();\n const { track } = useMetrics();\n\n const [modal, setModal] = useState(false);\n\n const fieldProps = { inline: false, small };\n\n return (\n <>\n <View {...others} className={styles(style.box, style.others, others.className)}>\n {paymentsConditions && (\n <Field\n {...fieldProps}\n label={translate(L10N.LABEL_PAYMENT_TERMS)}\n value={parseHtml(paymentsConditions, { small })}\n />\n )}\n\n {cancelationPolicy && (\n <Field {...fieldProps} label={translate(L10N.LABEL_CANCELLATION_POLICY)} value={cancelationPolicy.summary}>\n {cancelationPolicy?.detail && (\n <Action small={small} underline onPress={() => setModal(true)} className={style.noPrint}>\n {translate(L10N.ACTION_MORE_INFO)}\n </Action>\n )}\n </Field>\n )}\n\n {privacyPolicy && (\n <Field\n {...fieldProps}\n label={translate(L10N.LABEL_PRIVACY_POLICY)}\n value={translate(L10N.LABEL_PRIVACY_POLICY_DESCRIPTION, {\n link: (\n <Action\n href={privacyPolicy}\n target=\"_blank\"\n small={small}\n underline\n onPress={() => track(`${tracking}:ACTION:PRIVACY_MORE_INFO`)}\n className={styles(style.linkPrivacy, style.noPrint)}\n >\n {translate(L10N.ACTION_MORE_INFO)}\n </Action>\n ),\n })}\n />\n )}\n {otherConditions && (\n <Field\n {...fieldProps}\n label={translate(L10N.LABEL_OTHERS_TERMS)}\n value={parseHtml(otherConditions, { small })}\n />\n )}\n </View>\n\n {cancelationPolicy?.detail && (\n <Modal title={translate(L10N.LABEL_CANCELLATION_POLICY)} visible={modal} onClose={() => setModal(false)}>\n <Text className={style.modal}>{cancelationPolicy.detail}</Text>\n </Modal>\n )}\n </>\n );\n};\n\nBookingTerms.displayName = 'Mirai:Core:BookingTerms';\n\nBookingTerms.propTypes = {\n dataSource: PropTypes.shape({\n cancelationPolicy: PropTypes.shape({\n summary: PropTypes.string,\n details: PropTypes.string,\n }),\n payment: PropTypes.
|
|
1
|
+
{"version":3,"file":"BookingTerms.js","names":["_dataSources","require","_locale","_ui","_propTypes","_interopRequireDefault","_react","_interopRequireWildcard","_BookingTermsL10n","style","_components","_parseHtml","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","obj","_extends","assign","bind","target","arguments","length","source","key","apply","BookingTerms","_ref","dataSource","cancelationPolicy","otherConditions","paymentsConditions","hotel","privacyPolicy","small","tracking","others","translate","useLocale","track","useMetrics","modal","setModal","useState","fieldProps","inline","createElement","Fragment","View","className","styles","box","Field","label","L10N","LABEL_PAYMENT_TERMS","value","parseHtml","LABEL_CANCELLATION_POLICY","summary","detail","Action","underline","onPress","noPrint","ACTION_MORE_INFO","LABEL_PRIVACY_POLICY","LABEL_PRIVACY_POLICY_DESCRIPTION","link","href","concat","linkPrivacy","LABEL_OTHERS_TERMS","Modal","title","visible","onClose","Text","exports","displayName","propTypes","PropTypes","shape","string","details","payment","bool"],"sources":["../../../../src/components/__shared__/BookingTerms/BookingTerms.jsx"],"sourcesContent":["import { useMetrics } from '@mirai/data-sources';\nimport { useLocale } from '@mirai/locale';\nimport { Action, Modal, styles, Text, View } from '@mirai/ui';\nimport PropTypes from 'prop-types';\nimport React, { useState } from 'react';\n\nimport { L10N } from './BookingTerms.l10n.js';\nimport * as style from './BookingTerms.module.css';\nimport { Field } from '../../Booking/components';\nimport { parseHtml } from '../../helpers/parseHtml';\n\nconst BookingTerms = ({\n dataSource: { cancelationPolicy, otherConditions, paymentsConditions, hotel: { privacyPolicy } = {} } = {},\n small,\n tracking,\n ...others\n}) => {\n const { translate } = useLocale();\n const { track } = useMetrics();\n\n const [modal, setModal] = useState(false);\n\n const fieldProps = { inline: false, small };\n\n return (\n <>\n <View {...others} className={styles(style.box, style.others, others.className)}>\n {paymentsConditions && (\n <Field\n {...fieldProps}\n label={translate(L10N.LABEL_PAYMENT_TERMS)}\n value={parseHtml(paymentsConditions, { small })}\n />\n )}\n\n {cancelationPolicy && (\n <Field {...fieldProps} label={translate(L10N.LABEL_CANCELLATION_POLICY)} value={cancelationPolicy.summary}>\n {cancelationPolicy?.detail && (\n <Action small={small} underline onPress={() => setModal(true)} className={style.noPrint}>\n {translate(L10N.ACTION_MORE_INFO)}\n </Action>\n )}\n </Field>\n )}\n\n {privacyPolicy && (\n <Field\n {...fieldProps}\n label={translate(L10N.LABEL_PRIVACY_POLICY)}\n value={translate(L10N.LABEL_PRIVACY_POLICY_DESCRIPTION, {\n link: (\n <Action\n href={privacyPolicy}\n target=\"_blank\"\n small={small}\n underline\n onPress={() => track(`${tracking}:ACTION:PRIVACY_MORE_INFO`)}\n className={styles(style.linkPrivacy, style.noPrint)}\n >\n {translate(L10N.ACTION_MORE_INFO)}\n </Action>\n ),\n })}\n />\n )}\n {otherConditions && (\n <Field\n {...fieldProps}\n label={translate(L10N.LABEL_OTHERS_TERMS)}\n value={parseHtml(otherConditions, { small })}\n />\n )}\n </View>\n\n {cancelationPolicy?.detail && (\n <Modal title={translate(L10N.LABEL_CANCELLATION_POLICY)} visible={modal} onClose={() => setModal(false)}>\n <Text className={style.modal}>{cancelationPolicy.detail}</Text>\n </Modal>\n )}\n </>\n );\n};\n\nBookingTerms.displayName = 'Mirai:Core:BookingTerms';\n\nBookingTerms.propTypes = {\n dataSource: PropTypes.shape({\n cancelationPolicy: PropTypes.shape({\n summary: PropTypes.string,\n details: PropTypes.string,\n }),\n payment: PropTypes.PropTypes.shape({}),\n paymentsConditions: PropTypes.string,\n }),\n small: PropTypes.bool,\n tracking: PropTypes.string,\n};\n\nexport { BookingTerms };\n"],"mappings":"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"}
|
|
@@ -65,13 +65,7 @@ exports[`component:<FieldOccupation> inherit:className 1`] = `
|
|
|
65
65
|
<ui-text
|
|
66
66
|
class="text action"
|
|
67
67
|
>
|
|
68
|
-
finder.label.
|
|
69
|
-
<ui-text
|
|
70
|
-
style="text-decoration: underline;"
|
|
71
|
-
>
|
|
72
|
-
type
|
|
73
|
-
</ui-text>
|
|
74
|
-
count.room
|
|
68
|
+
finder.label.place_type_count.room
|
|
75
69
|
</ui-text>
|
|
76
70
|
</ui-view>
|
|
77
71
|
<ui-input-number
|
|
@@ -167,13 +161,7 @@ exports[`component:<FieldOccupation> inherit:className 1`] = `
|
|
|
167
161
|
<ui-text
|
|
168
162
|
class="text small text hint hint"
|
|
169
163
|
>
|
|
170
|
-
common.label.
|
|
171
|
-
<ui-text
|
|
172
|
-
style="text-decoration: underline;"
|
|
173
|
-
>
|
|
174
|
-
up
|
|
175
|
-
</ui-text>
|
|
176
|
-
to
|
|
164
|
+
common.label.age_up_to
|
|
177
165
|
</ui-text>
|
|
178
166
|
</ui-view>
|
|
179
167
|
<ui-button
|
|
@@ -276,13 +264,7 @@ exports[`component:<FieldOccupation> prop:compacted 1`] = `
|
|
|
276
264
|
<ui-text
|
|
277
265
|
class="text action"
|
|
278
266
|
>
|
|
279
|
-
finder.label.
|
|
280
|
-
<ui-text
|
|
281
|
-
style="text-decoration: underline;"
|
|
282
|
-
>
|
|
283
|
-
type
|
|
284
|
-
</ui-text>
|
|
285
|
-
count.room
|
|
267
|
+
finder.label.place_type_count.room
|
|
286
268
|
</ui-text>
|
|
287
269
|
</ui-view>
|
|
288
270
|
<ui-input-number
|
|
@@ -378,13 +360,7 @@ exports[`component:<FieldOccupation> prop:compacted 1`] = `
|
|
|
378
360
|
<ui-text
|
|
379
361
|
class="text small text hint hint"
|
|
380
362
|
>
|
|
381
|
-
common.label.
|
|
382
|
-
<ui-text
|
|
383
|
-
style="text-decoration: underline;"
|
|
384
|
-
>
|
|
385
|
-
up
|
|
386
|
-
</ui-text>
|
|
387
|
-
to
|
|
363
|
+
common.label.age_up_to
|
|
388
364
|
</ui-text>
|
|
389
365
|
</ui-view>
|
|
390
366
|
<ui-button
|
|
@@ -535,13 +511,7 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
535
511
|
<ui-text
|
|
536
512
|
class="text action"
|
|
537
513
|
>
|
|
538
|
-
finder.label.
|
|
539
|
-
<ui-text
|
|
540
|
-
style="text-decoration: underline;"
|
|
541
|
-
>
|
|
542
|
-
type
|
|
543
|
-
</ui-text>
|
|
544
|
-
count.room
|
|
514
|
+
finder.label.place_type_count.room
|
|
545
515
|
</ui-text>
|
|
546
516
|
</ui-view>
|
|
547
517
|
<ui-input-number
|
|
@@ -637,13 +607,7 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
637
607
|
<ui-text
|
|
638
608
|
class="text small text hint hint"
|
|
639
609
|
>
|
|
640
|
-
common.label.
|
|
641
|
-
<ui-text
|
|
642
|
-
style="text-decoration: underline;"
|
|
643
|
-
>
|
|
644
|
-
up
|
|
645
|
-
</ui-text>
|
|
646
|
-
to
|
|
610
|
+
common.label.age_up_to
|
|
647
611
|
</ui-text>
|
|
648
612
|
</ui-view>
|
|
649
613
|
<ui-button
|
|
@@ -716,13 +680,7 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
716
680
|
<ui-text
|
|
717
681
|
class="text action"
|
|
718
682
|
>
|
|
719
|
-
finder.label.
|
|
720
|
-
<ui-text
|
|
721
|
-
style="text-decoration: underline;"
|
|
722
|
-
>
|
|
723
|
-
type
|
|
724
|
-
</ui-text>
|
|
725
|
-
count.room
|
|
683
|
+
finder.label.place_type_count.room
|
|
726
684
|
</ui-text>
|
|
727
685
|
</ui-view>
|
|
728
686
|
<ui-input-number
|
|
@@ -818,13 +776,7 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
818
776
|
<ui-text
|
|
819
777
|
class="text small text hint hint"
|
|
820
778
|
>
|
|
821
|
-
common.label.
|
|
822
|
-
<ui-text
|
|
823
|
-
style="text-decoration: underline;"
|
|
824
|
-
>
|
|
825
|
-
up
|
|
826
|
-
</ui-text>
|
|
827
|
-
to
|
|
779
|
+
common.label.age_up_to
|
|
828
780
|
</ui-text>
|
|
829
781
|
</ui-view>
|
|
830
782
|
<ui-button
|
|
@@ -981,13 +933,7 @@ exports[`component:<FieldOccupation> prop:value 1`] = `
|
|
|
981
933
|
<ui-text
|
|
982
934
|
class="text action"
|
|
983
935
|
>
|
|
984
|
-
finder.label.
|
|
985
|
-
<ui-text
|
|
986
|
-
style="text-decoration: underline;"
|
|
987
|
-
>
|
|
988
|
-
type
|
|
989
|
-
</ui-text>
|
|
990
|
-
count.room
|
|
936
|
+
finder.label.place_type_count.room
|
|
991
937
|
</ui-text>
|
|
992
938
|
</ui-view>
|
|
993
939
|
<ui-input-number
|
|
@@ -1083,13 +1029,7 @@ exports[`component:<FieldOccupation> prop:value 1`] = `
|
|
|
1083
1029
|
<ui-text
|
|
1084
1030
|
class="text small text hint hint"
|
|
1085
1031
|
>
|
|
1086
|
-
common.label.
|
|
1087
|
-
<ui-text
|
|
1088
|
-
style="text-decoration: underline;"
|
|
1089
|
-
>
|
|
1090
|
-
up
|
|
1091
|
-
</ui-text>
|
|
1092
|
-
to
|
|
1032
|
+
common.label.age_up_to
|
|
1093
1033
|
</ui-text>
|
|
1094
1034
|
</ui-view>
|
|
1095
1035
|
<ui-button
|
|
@@ -1382,13 +1322,7 @@ exports[`component:<FieldOccupation> prop:visible 1`] = `
|
|
|
1382
1322
|
<ui-text
|
|
1383
1323
|
class="text action"
|
|
1384
1324
|
>
|
|
1385
|
-
finder.label.
|
|
1386
|
-
<ui-text
|
|
1387
|
-
style="text-decoration: underline;"
|
|
1388
|
-
>
|
|
1389
|
-
type
|
|
1390
|
-
</ui-text>
|
|
1391
|
-
count.room
|
|
1325
|
+
finder.label.place_type_count.room
|
|
1392
1326
|
</ui-text>
|
|
1393
1327
|
</ui-view>
|
|
1394
1328
|
<ui-input-number
|
|
@@ -1484,13 +1418,7 @@ exports[`component:<FieldOccupation> prop:visible 1`] = `
|
|
|
1484
1418
|
<ui-text
|
|
1485
1419
|
class="text small text hint hint"
|
|
1486
1420
|
>
|
|
1487
|
-
common.label.
|
|
1488
|
-
<ui-text
|
|
1489
|
-
style="text-decoration: underline;"
|
|
1490
|
-
>
|
|
1491
|
-
up
|
|
1492
|
-
</ui-text>
|
|
1493
|
-
to
|
|
1421
|
+
common.label.age_up_to
|
|
1494
1422
|
</ui-text>
|
|
1495
1423
|
</ui-view>
|
|
1496
1424
|
<ui-button
|
|
@@ -1652,13 +1580,7 @@ exports[`component:<FieldOccupation> prop:warning 1`] = `
|
|
|
1652
1580
|
<ui-text
|
|
1653
1581
|
class="text action"
|
|
1654
1582
|
>
|
|
1655
|
-
finder.label.
|
|
1656
|
-
<ui-text
|
|
1657
|
-
style="text-decoration: underline;"
|
|
1658
|
-
>
|
|
1659
|
-
type
|
|
1660
|
-
</ui-text>
|
|
1661
|
-
count.room
|
|
1583
|
+
finder.label.place_type_count.room
|
|
1662
1584
|
</ui-text>
|
|
1663
1585
|
</ui-view>
|
|
1664
1586
|
<ui-input-number
|
|
@@ -1754,13 +1676,7 @@ exports[`component:<FieldOccupation> prop:warning 1`] = `
|
|
|
1754
1676
|
<ui-text
|
|
1755
1677
|
class="text small text hint hint"
|
|
1756
1678
|
>
|
|
1757
|
-
common.label.
|
|
1758
|
-
<ui-text
|
|
1759
|
-
style="text-decoration: underline;"
|
|
1760
|
-
>
|
|
1761
|
-
up
|
|
1762
|
-
</ui-text>
|
|
1763
|
-
to
|
|
1679
|
+
common.label.age_up_to
|
|
1764
1680
|
</ui-text>
|
|
1765
1681
|
</ui-view>
|
|
1766
1682
|
<ui-button
|
|
@@ -1905,13 +1821,7 @@ exports[`component:<FieldOccupation> renders 1`] = `
|
|
|
1905
1821
|
<ui-text
|
|
1906
1822
|
class="text action"
|
|
1907
1823
|
>
|
|
1908
|
-
finder.label.
|
|
1909
|
-
<ui-text
|
|
1910
|
-
style="text-decoration: underline;"
|
|
1911
|
-
>
|
|
1912
|
-
type
|
|
1913
|
-
</ui-text>
|
|
1914
|
-
count.room
|
|
1824
|
+
finder.label.place_type_count.room
|
|
1915
1825
|
</ui-text>
|
|
1916
1826
|
</ui-view>
|
|
1917
1827
|
<ui-input-number
|
|
@@ -2007,13 +1917,7 @@ exports[`component:<FieldOccupation> renders 1`] = `
|
|
|
2007
1917
|
<ui-text
|
|
2008
1918
|
class="text small text hint hint"
|
|
2009
1919
|
>
|
|
2010
|
-
common.label.
|
|
2011
|
-
<ui-text
|
|
2012
|
-
style="text-decoration: underline;"
|
|
2013
|
-
>
|
|
2014
|
-
up
|
|
2015
|
-
</ui-text>
|
|
2016
|
-
to
|
|
1920
|
+
common.label.age_up_to
|
|
2017
1921
|
</ui-text>
|
|
2018
1922
|
</ui-view>
|
|
2019
1923
|
<ui-button
|
|
@@ -2160,13 +2064,7 @@ exports[`component:<FieldOccupation> testID 1`] = `
|
|
|
2160
2064
|
<ui-text
|
|
2161
2065
|
class="text action"
|
|
2162
2066
|
>
|
|
2163
|
-
finder.label.
|
|
2164
|
-
<ui-text
|
|
2165
|
-
style="text-decoration: underline;"
|
|
2166
|
-
>
|
|
2167
|
-
type
|
|
2168
|
-
</ui-text>
|
|
2169
|
-
count.room
|
|
2067
|
+
finder.label.place_type_count.room
|
|
2170
2068
|
</ui-text>
|
|
2171
2069
|
</ui-view>
|
|
2172
2070
|
<ui-input-number
|
|
@@ -2262,13 +2160,7 @@ exports[`component:<FieldOccupation> testID 1`] = `
|
|
|
2262
2160
|
<ui-text
|
|
2263
2161
|
class="text small text hint hint"
|
|
2264
2162
|
>
|
|
2265
|
-
common.label.
|
|
2266
|
-
<ui-text
|
|
2267
|
-
style="text-decoration: underline;"
|
|
2268
|
-
>
|
|
2269
|
-
up
|
|
2270
|
-
</ui-text>
|
|
2271
|
-
to
|
|
2163
|
+
common.label.age_up_to
|
|
2272
2164
|
</ui-text>
|
|
2273
2165
|
</ui-view>
|
|
2274
2166
|
<ui-button
|
|
@@ -24,13 +24,7 @@ exports[`component:<Footer> inherit:className 1`] = `
|
|
|
24
24
|
<ui-text
|
|
25
25
|
class="text light small"
|
|
26
26
|
>
|
|
27
|
-
common.label.
|
|
28
|
-
<ui-text
|
|
29
|
-
style="text-decoration: underline;"
|
|
30
|
-
>
|
|
31
|
-
rights
|
|
32
|
-
</ui-text>
|
|
33
|
-
reserved
|
|
27
|
+
common.label.all_rights_reserved
|
|
34
28
|
</ui-text>
|
|
35
29
|
</ui-view>
|
|
36
30
|
<a
|
|
@@ -74,13 +68,7 @@ exports[`component:<Footer> prop:logo 1`] = `
|
|
|
74
68
|
<ui-text
|
|
75
69
|
class="text light small"
|
|
76
70
|
>
|
|
77
|
-
common.label.
|
|
78
|
-
<ui-text
|
|
79
|
-
style="text-decoration: underline;"
|
|
80
|
-
>
|
|
81
|
-
rights
|
|
82
|
-
</ui-text>
|
|
83
|
-
reserved
|
|
71
|
+
common.label.all_rights_reserved
|
|
84
72
|
</ui-text>
|
|
85
73
|
</ui-view>
|
|
86
74
|
<a
|
|
@@ -124,13 +112,7 @@ exports[`component:<Footer> renders 1`] = `
|
|
|
124
112
|
<ui-text
|
|
125
113
|
class="text light small"
|
|
126
114
|
>
|
|
127
|
-
common.label.
|
|
128
|
-
<ui-text
|
|
129
|
-
style="text-decoration: underline;"
|
|
130
|
-
>
|
|
131
|
-
rights
|
|
132
|
-
</ui-text>
|
|
133
|
-
reserved
|
|
115
|
+
common.label.all_rights_reserved
|
|
134
116
|
</ui-text>
|
|
135
117
|
</ui-view>
|
|
136
118
|
<a
|
|
@@ -175,13 +157,7 @@ exports[`component:<Footer> testID 1`] = `
|
|
|
175
157
|
<ui-text
|
|
176
158
|
class="text light small"
|
|
177
159
|
>
|
|
178
|
-
common.label.
|
|
179
|
-
<ui-text
|
|
180
|
-
style="text-decoration: underline;"
|
|
181
|
-
>
|
|
182
|
-
rights
|
|
183
|
-
</ui-text>
|
|
184
|
-
reserved
|
|
160
|
+
common.label.all_rights_reserved
|
|
185
161
|
</ui-text>
|
|
186
162
|
</ui-view>
|
|
187
163
|
<a
|