amotify 0.2.153 → 0.2.154

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.
@@ -24,7 +24,7 @@ import {
24
24
  ListItem,
25
25
  Accordion,
26
26
  Row,
27
- Txt,
27
+ Literal,
28
28
  PageViewController,
29
29
  SwipeView,
30
30
  TabBar,
@@ -60,7 +60,7 @@ const Basic = {
60
60
  Fonts: () => {
61
61
  return <Card padding={ 1 }>
62
62
  <Column>
63
- <Txt.SubTitle>Fonts</Txt.SubTitle>
63
+ <Literal.SubTitle>Fonts</Literal.SubTitle>
64
64
  <Box overflow={ 'auto' }>
65
65
  <Column>
66
66
  <Row.Left
@@ -116,28 +116,28 @@ const Basic = {
116
116
  </Column>
117
117
  <Column ssCardBox padding={ 1.5 }>
118
118
  <Box>[size:Paragraph]</Box>
119
- <Txt.Paragraph>
120
- <Txt.Description>
119
+ <Literal.Paragraph>
120
+ <Literal.Description>
121
121
  { `This article discusses performance best practices for fonts.
122
122
  There are a variety of ways in which web fonts impact performance`}
123
- </Txt.Description>
124
- </Txt.Paragraph>
123
+ </Literal.Description>
124
+ </Literal.Paragraph>
125
125
  </Column>
126
126
  <Column ssCardBox padding={ 1.5 }>
127
127
  <Box>[size:Normal]</Box>
128
- <Txt>
128
+ <Literal>
129
129
  効率的で持続可能な財政への転換を図り、この財政構造を各般の構造改革とともに推進することで、民間需要主導の持続的経済成長の実現を目指します。
130
130
  少子・高齢化、国際化など経済社会の構造変化に対応できる21世紀のあるべき税制をきずきます。
131
131
  財政投融資は、行財政改革の趣旨を踏まえ、民間ではできない分野・事業などに重点化を行い、真に政策的に必要な資金需要には的確に対応します。
132
132
  金融庁と協力し、金融のセーフティネットを整備し、金融危機に素早く対応するなど、金融システムの安定の確保を目指します。
133
133
  国際的な協力等に積極的に取り組むことにより、国際通貨システムの安定・国際貿易の秩序ある発展を目指します。
134
- </Txt>
134
+ </Literal>
135
135
  </Column>
136
136
  <Column ssCardBox padding={ 1.5 }>
137
137
  <Box>[size:Mini]</Box>
138
- <Txt.Supplement>
138
+ <Literal.Supplement>
139
139
  Copyright © Ministry of Finance Japan. All Rights Reserved.
140
- </Txt.Supplement>
140
+ </Literal.Supplement>
141
141
  </Column>
142
142
  </Column>
143
143
  </Box>
@@ -146,9 +146,9 @@ There are a variety of ways in which web fonts impact performance`}
146
146
  },
147
147
  Box: () => {
148
148
  return <Box ssCardBox>
149
- <Txt.SubTitle borderBottom padding={ 1 }>
149
+ <Literal.SubTitle borderBottom padding={ 1 }>
150
150
  Box
151
- </Txt.SubTitle>
151
+ </Literal.SubTitle>
152
152
  <Box padding={ 1 } overflow={ 'auto' }>
153
153
  <Table.Normal
154
154
  ssCardBox={ false }
@@ -160,27 +160,27 @@ There are a variety of ways in which web fonts impact performance`}
160
160
  rows={ [
161
161
  [
162
162
  {
163
- children: <Txt.Description>
163
+ children: <Literal.Description>
164
164
  { `<Box>
165
165
  helloWorld!!
166
166
  </Box>`}
167
- </Txt.Description>
167
+ </Literal.Description>
168
168
  },{
169
169
  children: <Box> helloWorld!! </Box>
170
170
  }
171
171
  ],[
172
172
  {
173
- children: <Txt.Description>
173
+ children: <Literal.Description>
174
174
  { `<Box
175
175
  children={ 'helloWorld!!' }
176
176
  />`}
177
- </Txt.Description>
177
+ </Literal.Description>
178
178
  },{
179
179
  children: <Box children={ 'helloWorld!!' } />
180
180
  },
181
181
  ],[
182
182
  {
183
- children: <Txt.Description>
183
+ children: <Literal.Description>
184
184
  { `<Box
185
185
  fontColor={ '4.thin' }
186
186
  padding={ 1 }
@@ -191,7 +191,7 @@ border={ 'normal' }
191
191
  children={ 'styleBox' }
192
192
  />
193
193
  `}
194
- </Txt.Description>
194
+ </Literal.Description>
195
195
  },{
196
196
  children: <Box
197
197
  fontColor={ '4.thin' }
@@ -211,9 +211,9 @@ children={ 'styleBox' }
211
211
  },
212
212
  Flex: () => {
213
213
  return <Box ssCardBox>
214
- <Txt.SubTitle borderBottom padding={ 1 }>
214
+ <Literal.SubTitle borderBottom padding={ 1 }>
215
215
  Flex
216
- </Txt.SubTitle>
216
+ </Literal.SubTitle>
217
217
  <Box padding={ 1 } overflow={ 'auto' }>
218
218
  <Table.Normal
219
219
  ssCardBox={ false }
@@ -225,7 +225,7 @@ children={ 'styleBox' }
225
225
  rows={ [
226
226
  [
227
227
  {
228
- children: <Txt.Description>
228
+ children: <Literal.Description>
229
229
  {
230
230
  `<Flex flexType='row' gap={ 1 }>
231
231
  <Box children={ 'FlexBox1' } />
@@ -234,7 +234,7 @@ children={ 'styleBox' }
234
234
  <Box flexSizing={ 'auto' } children={ 'FlexBox3' } />
235
235
  </Flex>`
236
236
  }
237
- </Txt.Description>
237
+ </Literal.Description>
238
238
  },{
239
239
  children: <Flex
240
240
  gap={ 1 }
@@ -249,7 +249,7 @@ children={ 'styleBox' }
249
249
  },
250
250
  ],[
251
251
  {
252
- children: <Txt.Description textAlign='left'>
252
+ children: <Literal.Description textAlign='left'>
253
253
  { `<Flex
254
254
  flexType='col'
255
255
  flexChilds={ 'auto' }
@@ -258,7 +258,7 @@ flexChilds={ 'auto' }
258
258
  <Box />
259
259
  ...
260
260
  </Flex>`}
261
- </Txt.Description>
261
+ </Literal.Description>
262
262
  },{
263
263
  children: <>
264
264
  <Flex gap={ 1 } flexCenter>
@@ -282,7 +282,7 @@ flexChilds={ 'auto' }
282
282
  },
283
283
  ],[
284
284
  {
285
- children: <Txt.Description>
285
+ children: <Literal.Description>
286
286
  {
287
287
  `<Flex gap={ 1 }>
288
288
  <Box flexGrid={ 2 } ... />
@@ -290,7 +290,7 @@ flexChilds={ 'auto' }
290
290
  <Box flexGrid={ 4 } ... />
291
291
  </Flex>`
292
292
  }
293
- </Txt.Description>
293
+ </Literal.Description>
294
294
  },{
295
295
  children: <Flex gap={ 1 } fontColor='white'>
296
296
  <Card.Plain flexCenter padding={ 1 } backgroundColor='posi' flexGrid={ 2 }>Box1</Card.Plain>
@@ -306,9 +306,9 @@ flexChilds={ 'auto' }
306
306
  },
307
307
  Grid: () => {
308
308
  return <Box ssCardBox>
309
- <Txt.SubTitle borderBottom padding={ 1 }>
309
+ <Literal.SubTitle borderBottom padding={ 1 }>
310
310
  Grid
311
- </Txt.SubTitle>
311
+ </Literal.SubTitle>
312
312
  <Box style={ { padding: 1,overflow: 'auto' } }>
313
313
  <Table.Normal
314
314
  ssCardBox={ false }
@@ -321,7 +321,7 @@ flexChilds={ 'auto' }
321
321
  rows={ [
322
322
  [
323
323
  {
324
- children: <Txt.Description>
324
+ children: <Literal.Description>
325
325
  {
326
326
  `<Grid gridCols={ 3 } gap={ 1 }>
327
327
  <Box children={ 'GridBox1' } />
@@ -332,7 +332,7 @@ flexChilds={ 'auto' }
332
332
  <Box children={ 'GridBox6' } />
333
333
  </Grid>`
334
334
  }
335
- </Txt.Description>
335
+ </Literal.Description>
336
336
  },{
337
337
  children: <Grid gridCols={ 3 } gap={ 1 }>
338
338
  <Card.Plain padding={ 1 } backgroundColor='layer.1'>GridBox1</Card.Plain>
@@ -351,9 +351,9 @@ flexChilds={ 'auto' }
351
351
  },
352
352
  Others: () => {
353
353
  return <Box ssCardBox>
354
- <Txt.SubTitle borderBottom padding={ 1 }>
354
+ <Literal.SubTitle borderBottom padding={ 1 }>
355
355
  Others
356
- </Txt.SubTitle>
356
+ </Literal.SubTitle>
357
357
  <Box padding={ 1 } overflow={ 'auto' }>
358
358
  <Table.Normal
359
359
  ssCardBox={ false }
@@ -366,7 +366,7 @@ flexChilds={ 'auto' }
366
366
  [
367
367
  {
368
368
  children: <>
369
- <Txt.Description>
369
+ <Literal.Description>
370
370
  {
371
371
  `
372
372
  <Button.Label
@@ -384,7 +384,7 @@ children={
384
384
  }
385
385
  />`
386
386
  }
387
- </Txt.Description>
387
+ </Literal.Description>
388
388
  </>
389
389
  },{
390
390
  children: <Column>
@@ -404,7 +404,7 @@ children={
404
404
  }
405
405
  ],[
406
406
  {
407
- children: <Txt.Description>
407
+ children: <Literal.Description>
408
408
  {
409
409
  `
410
410
  <Img
@@ -415,7 +415,7 @@ alt='noImage'
415
415
  />
416
416
  `
417
417
  }
418
- </Txt.Description>
418
+ </Literal.Description>
419
419
  },{
420
420
  children: <Row.Center>
421
421
  <Column
@@ -434,12 +434,12 @@ alt='noImage'
434
434
  } }
435
435
  />
436
436
  </Box>
437
- <Txt
437
+ <Literal
438
438
  padding={ 1 }
439
439
  borderTop
440
440
  >
441
441
  Image
442
- </Txt>
442
+ </Literal>
443
443
  </Column>
444
444
  </Row.Center>
445
445
  }
@@ -462,9 +462,9 @@ const Logos = {
462
462
  },
463
463
  Mingoo: () => {
464
464
  return <Card>
465
- <Txt.SubTitle borderBottom padding={ 1 }>
465
+ <Literal.SubTitle borderBottom padding={ 1 }>
466
466
  Mingoo
467
- </Txt.SubTitle>
467
+ </Literal.SubTitle>
468
468
  <Box padding={ 1 } overflow={ 'auto' }>
469
469
  <Row.Center
470
470
  gap={ 2 }
@@ -482,7 +482,7 @@ const Logos = {
482
482
  },
483
483
  Google: () => {
484
484
  return <Card>
485
- <Txt.SubTitle borderBottom padding={ 1 }>Google</Txt.SubTitle>
485
+ <Literal.SubTitle borderBottom padding={ 1 }>Google</Literal.SubTitle>
486
486
  <Box padding={ 1 } overflow={ 'auto' }>
487
487
  <Row.Center flexType='col' gap={ 2 } padding={ 2 }>
488
488
  <Logo.Brands.Google size='S' />
@@ -496,7 +496,7 @@ const Logos = {
496
496
  },
497
497
  Facebook: () => {
498
498
  return <Card>
499
- <Txt.SubTitle borderBottom padding={ 1 }>Facebook</Txt.SubTitle>
499
+ <Literal.SubTitle borderBottom padding={ 1 }>Facebook</Literal.SubTitle>
500
500
  <Box padding={ 1 } overflow={ 'auto' }>
501
501
  <Row.Center flexType='col' gap={ 2 } padding={ 2 }>
502
502
  <Logo.Brands.Facebook size='S' />
@@ -510,7 +510,7 @@ const Logos = {
510
510
  },
511
511
  Line: () => {
512
512
  return <Card>
513
- <Txt.SubTitle borderBottom padding={ 1 }>LINE</Txt.SubTitle>
513
+ <Literal.SubTitle borderBottom padding={ 1 }>LINE</Literal.SubTitle>
514
514
  <Box padding={ 1 } overflow={ 'auto' }>
515
515
  <Row.Center flexType='col' gap={ 2 } padding={ 2 }>
516
516
  <Logo.Brands.LINE size='S' />
@@ -524,7 +524,7 @@ const Logos = {
524
524
  },
525
525
  Twitter: () => {
526
526
  return <Card>
527
- <Txt.SubTitle borderBottom padding={ 1 }>Twitter</Txt.SubTitle>
527
+ <Literal.SubTitle borderBottom padding={ 1 }>Twitter</Literal.SubTitle>
528
528
  <Box padding={ 1 } overflow={ 'auto' }>
529
529
  <Row.Center flexType='col' gap={ 2 } padding={ 2 }>
530
530
  <Logo.Brands.Twitter size='S' />
@@ -548,17 +548,17 @@ const Effections = {
548
548
  },
549
549
  Ripple: () => {
550
550
  return <Box ssCardBox>
551
- <Txt.SubTitle borderBottom padding={ 1 }>
551
+ <Literal.SubTitle borderBottom padding={ 1 }>
552
552
  Ripple
553
- </Txt.SubTitle>
553
+ </Literal.SubTitle>
554
554
  <Column padding={ 2 }>
555
- <Txt.Description>
555
+ <Literal.Description>
556
556
  {
557
557
  `<Element
558
558
  ssEffectsOnActive={ 'ripple.( cloud | theme | nega | posi | warn )' }
559
559
  />`
560
560
  }
561
- </Txt.Description>
561
+ </Literal.Description>
562
562
  <Row.Center>
563
563
  <Box
564
564
  ssCardBox
@@ -582,17 +582,17 @@ const Effections = {
582
582
  },
583
583
  Variables: () => {
584
584
  return <Box ssCardBox>
585
- <Txt.SubTitle borderBottom padding={ 1 }>
585
+ <Literal.SubTitle borderBottom padding={ 1 }>
586
586
  Effects
587
- </Txt.SubTitle>
587
+ </Literal.SubTitle>
588
588
  <Column padding={ 2 }>
589
- <Txt.Description>
589
+ <Literal.Description>
590
590
  {
591
591
  `<Button
592
592
  ssEffectsOnActive={ 'shrink' }
593
593
  />`
594
594
  }
595
- </Txt.Description>
595
+ </Literal.Description>
596
596
  <Row.Left>
597
597
  <Button
598
598
  onClick={ () => {
@@ -641,9 +641,9 @@ const Effections = {
641
641
  },
642
642
  Tooltips: () => {
643
643
  return <Box ssCardBox>
644
- <Txt.SubTitle borderBottom padding={ 1 }>
644
+ <Literal.SubTitle borderBottom padding={ 1 }>
645
645
  Tooltips
646
- </Txt.SubTitle>
646
+ </Literal.SubTitle>
647
647
  <Column padding={ 2 }>
648
648
  <Button
649
649
  onContextMenu={ event => {
@@ -717,9 +717,9 @@ const Effections = {
717
717
  },
718
718
  Snackbar: () => {
719
719
  return <Box ssCardBox>
720
- <Txt.SubTitle borderBottom padding={ 1 }>
720
+ <Literal.SubTitle borderBottom padding={ 1 }>
721
721
  Snackbars
722
- </Txt.SubTitle>
722
+ </Literal.SubTitle>
723
723
  <Row.Center padding={ 2 }>
724
724
  <Button
725
725
  onClick={ () => {
@@ -765,11 +765,11 @@ const Effections = {
765
765
  src={ Logo.Images.defaultIcon( 'user' ) }
766
766
  ssSphere={ 4 }
767
767
  />
768
- <Txt.Description>
768
+ <Literal.Description>
769
769
  { `Some Text
770
770
  Some Text
771
771
  Some Text`}
772
- </Txt.Description>
772
+ </Literal.Description>
773
773
  </Row.Left>
774
774
  <Row.Separate>
775
775
  <Button.Sub.S
@@ -805,9 +805,9 @@ const Buttons = {
805
805
  },
806
806
  Tone: () => {
807
807
  return <Box ssCardBox>
808
- <Txt.SubTitle borderBottom padding={ 1 }>
808
+ <Literal.SubTitle borderBottom padding={ 1 }>
809
809
  Tone
810
- </Txt.SubTitle>
810
+ </Literal.SubTitle>
811
811
  <Box padding={ 1 } overflow={ 'auto' }>
812
812
  <Grid gridCols={ 2 } gap={ 2 }>
813
813
  <Box>
@@ -1017,9 +1017,9 @@ const Buttons = {
1017
1017
  Types: () => {
1018
1018
  return <Flex gap={ 2 } flexChilds='auto'>
1019
1019
  <Box ssCardBox>
1020
- <Txt.ThirdTitle borderBottom padding={ 1 }>
1020
+ <Literal.ThirdTitle borderBottom padding={ 1 }>
1021
1021
  ・Button
1022
- </Txt.ThirdTitle>
1022
+ </Literal.ThirdTitle>
1023
1023
  <Box padding={ 1 } overflow={ 'auto' }>
1024
1024
  <List
1025
1025
  items={ [
@@ -1041,9 +1041,9 @@ const Buttons = {
1041
1041
  </Box>
1042
1042
  </Box>
1043
1043
  <Box ssCardBox>
1044
- <Txt.ThirdTitle borderBottom padding={ 1 }>
1044
+ <Literal.ThirdTitle borderBottom padding={ 1 }>
1045
1045
  ・Label
1046
- </Txt.ThirdTitle>
1046
+ </Literal.ThirdTitle>
1047
1047
  <Box padding={ 1 } overflow={ 'auto' }>
1048
1048
  <List
1049
1049
  ListChildCallback={ ( { children } ) => {
@@ -1078,9 +1078,9 @@ const Buttons = {
1078
1078
  </Box>
1079
1079
  </Box>
1080
1080
  <Box ssCardBox>
1081
- <Txt.ThirdTitle borderBottom padding={ 1 }>
1081
+ <Literal.ThirdTitle borderBottom padding={ 1 }>
1082
1082
  ・Anchor
1083
- </Txt.ThirdTitle>
1083
+ </Literal.ThirdTitle>
1084
1084
  <Box padding={ 1 } overflow={ 'auto' }>
1085
1085
  <List
1086
1086
  ListChildCallback={ ( { children } ) => {
@@ -1121,9 +1121,9 @@ const Buttons = {
1121
1121
  </Box>
1122
1122
  </Box>
1123
1123
  <Box ssCardBox>
1124
- <Txt.ThirdTitle borderBottom padding={ 1 }>
1124
+ <Literal.ThirdTitle borderBottom padding={ 1 }>
1125
1125
  ・Sizes
1126
- </Txt.ThirdTitle>
1126
+ </Literal.ThirdTitle>
1127
1127
  <Column padding={ 2 } gap={ 2 }>
1128
1128
  <Row.Left>
1129
1129
  <Button.Prime.XS>size="XS"</Button.Prime.XS>
@@ -1155,9 +1155,9 @@ const Shadows = {
1155
1155
  }
1156
1156
  return <Column gap={ 4 }>
1157
1157
  <Column>
1158
- <Txt.Paragraph>
1158
+ <Literal.Paragraph>
1159
1159
  Shadows
1160
- </Txt.Paragraph>
1160
+ </Literal.Paragraph>
1161
1161
  <Grid gap={ 2 } gridCols={ 4 }>
1162
1162
  <Cell boxShadow='0.min'>0.min</Cell>
1163
1163
  <Cell boxShadow='0.normal'>0.normal</Cell>
@@ -1191,9 +1191,9 @@ const Shadows = {
1191
1191
  </Grid>
1192
1192
  </Column>
1193
1193
  <Column>
1194
- <Txt.Paragraph>
1194
+ <Literal.Paragraph>
1195
1195
  Inset Shadows
1196
- </Txt.Paragraph>
1196
+ </Literal.Paragraph>
1197
1197
  <Grid gap={ 2 } gridCols={ 4 }>
1198
1198
  <Cell boxShadow='0.min.inset'>0.min.inset</Cell>
1199
1199
  <Cell boxShadow='0.normal.inset'>0.normal.inset</Cell>
@@ -1223,9 +1223,9 @@ const Inputs = () => {
1223
1223
  const InputComps = {
1224
1224
  Basic: () => {
1225
1225
  return <Box ssCardBox>
1226
- <Txt.Paragraph borderBottom padding={ 1 }>
1226
+ <Literal.Paragraph borderBottom padding={ 1 }>
1227
1227
  TextInput
1228
- </Txt.Paragraph>
1228
+ </Literal.Paragraph>
1229
1229
  <Column
1230
1230
  padding={ 1 }
1231
1231
  gap={ 2 }
@@ -1233,14 +1233,14 @@ const Inputs = () => {
1233
1233
  <Row.Separate
1234
1234
  marginBottom={ 2 }
1235
1235
  >
1236
- <Txt.Description>
1236
+ <Literal.Description>
1237
1237
  {
1238
1238
  `<Input.Text
1239
1239
  required
1240
1240
  value={ 'hello React!!' }
1241
1241
  />`
1242
1242
  }
1243
- </Txt.Description>
1243
+ </Literal.Description>
1244
1244
  <Input.TextField
1245
1245
  tone='cloud'
1246
1246
  name='textfield'
@@ -1392,9 +1392,9 @@ text5`}
1392
1392
  },
1393
1393
  Time: () => ( <>
1394
1394
  <Box ssCardBox>
1395
- <Txt.Paragraph borderBottom padding={ 1 }>
1395
+ <Literal.Paragraph borderBottom padding={ 1 }>
1396
1396
  Time Input
1397
- </Txt.Paragraph>
1397
+ </Literal.Paragraph>
1398
1398
  <Box
1399
1399
  padding={ 1 }
1400
1400
  >
@@ -1463,9 +1463,9 @@ text5`}
1463
1463
  </> ),
1464
1464
  List: () => ( <>
1465
1465
  <Box ssCardBox>
1466
- <Txt.Paragraph borderBottom padding={ 1 }>
1466
+ <Literal.Paragraph borderBottom padding={ 1 }>
1467
1467
  Radio & Checkbox Input
1468
- </Txt.Paragraph>
1468
+ </Literal.Paragraph>
1469
1469
  <Box padding={ 1 }>
1470
1470
  <Column>
1471
1471
  <Flex gap={ 2 } flexChilds='auto'>
@@ -1566,9 +1566,9 @@ text5`}
1566
1566
  </Box>
1567
1567
  </Flex>
1568
1568
  <Column>
1569
- <Txt.Paragraph>
1569
+ <Literal.Paragraph>
1570
1570
  Tones
1571
- </Txt.Paragraph>
1571
+ </Literal.Paragraph>
1572
1572
  <Column>
1573
1573
  <Box>
1574
1574
  Plain
@@ -1675,9 +1675,9 @@ text5`}
1675
1675
  </> ),
1676
1676
  Select: () => ( <>
1677
1677
  <Box ssCardBox>
1678
- <Txt.Paragraph borderBottom padding={ 1 }>
1678
+ <Literal.Paragraph borderBottom padding={ 1 }>
1679
1679
  Select,Autocomplete Input
1680
- </Txt.Paragraph>
1680
+ </Literal.Paragraph>
1681
1681
  <Column
1682
1682
  padding={ 2 }
1683
1683
  gap={ 1.5 }
@@ -1754,9 +1754,9 @@ text5`}
1754
1754
  </> ),
1755
1755
  Segmented: () => {
1756
1756
  return <Box ssCardBox>
1757
- <Txt.ThirdTitle borderBottom padding={ 1 }>
1757
+ <Literal.ThirdTitle borderBottom padding={ 1 }>
1758
1758
  Segmented
1759
- </Txt.ThirdTitle>
1759
+ </Literal.ThirdTitle>
1760
1760
  <Column padding={ 2 } gap={ 2 }>
1761
1761
  <Row.Left>
1762
1762
  <Input.Segmented
@@ -1843,9 +1843,9 @@ text5`}
1843
1843
  },
1844
1844
  Variables: () => ( <>
1845
1845
  <Box ssCardBox>
1846
- <Txt.Paragraph borderBottom padding={ 1 }>
1846
+ <Literal.Paragraph borderBottom padding={ 1 }>
1847
1847
  Variables
1848
- </Txt.Paragraph>
1848
+ </Literal.Paragraph>
1849
1849
  <Box padding={ 1 }>
1850
1850
  <Column>
1851
1851
  <Column gap={ 2 }>
@@ -1961,11 +1961,11 @@ const Styling = () => {
1961
1961
 
1962
1962
  return <>
1963
1963
  <Box ssCardBox>
1964
- <Txt.SubTitle borderBottom padding={ 1 }>
1964
+ <Literal.SubTitle borderBottom padding={ 1 }>
1965
1965
  CardBox
1966
- </Txt.SubTitle>
1966
+ </Literal.SubTitle>
1967
1967
  <Box padding={ 1 } overflow={ 'auto' }>
1968
- <Txt.Description>
1968
+ <Literal.Description>
1969
1969
  {
1970
1970
  `<Box styles={{ssCardBox:true}}>
1971
1971
  <Box>
@@ -1980,13 +1980,13 @@ const Styling = () => {
1980
1980
  </Box>
1981
1981
  </Box>`
1982
1982
  }
1983
- </Txt.Description>
1983
+ </Literal.Description>
1984
1984
  </Box>
1985
1985
  <Box padding={ 2 }>
1986
1986
  <Box ssCardBox>
1987
- <Txt.SubTitle borderBottom padding={ 1 }>
1987
+ <Literal.SubTitle borderBottom padding={ 1 }>
1988
1988
  Header
1989
- </Txt.SubTitle>
1989
+ </Literal.SubTitle>
1990
1990
  <Box padding={ 1 } overflow={ 'auto' }>
1991
1991
  Body
1992
1992
  </Box>
@@ -1997,11 +1997,11 @@ const Styling = () => {
1997
1997
  </Box>
1998
1998
  </Box>
1999
1999
  <Box ssCardBox>
2000
- <Txt.SubTitle borderBottom padding={ 1 }>
2000
+ <Literal.SubTitle borderBottom padding={ 1 }>
2001
2001
  List
2002
- </Txt.SubTitle>
2002
+ </Literal.SubTitle>
2003
2003
  <Box padding={ 1 } overflow={ 'auto' }>
2004
- <Txt.Description>
2004
+ <Literal.Description>
2005
2005
  {
2006
2006
  `<List
2007
2007
  options={ [
@@ -2012,7 +2012,7 @@ const Styling = () => {
2012
2012
  ] }
2013
2013
  />`
2014
2014
  }
2015
- </Txt.Description>
2015
+ </Literal.Description>
2016
2016
  </Box>
2017
2017
  <Box padding={ 2 } overflow={ 'auto' }>
2018
2018
  <List
@@ -2058,11 +2058,11 @@ const Styling = () => {
2058
2058
  </Box>
2059
2059
  </Box>
2060
2060
  <Box ssCardBox>
2061
- <Txt.SubTitle borderBottom padding={ 1 }>
2061
+ <Literal.SubTitle borderBottom padding={ 1 }>
2062
2062
  Sheet
2063
- </Txt.SubTitle>
2063
+ </Literal.SubTitle>
2064
2064
  <Box padding={ 1 } overflow={ 'auto' }>
2065
- <Txt.Description>
2065
+ <Literal.Description>
2066
2066
  {
2067
2067
  `Sheet.open( {
2068
2068
  sheetID: 'sheetID',
@@ -2071,7 +2071,7 @@ const Styling = () => {
2071
2071
  footer: ReactElement | React.FC< { modalClose } >
2072
2072
  } )`
2073
2073
  }
2074
- </Txt.Description>
2074
+ </Literal.Description>
2075
2075
  </Box>
2076
2076
  <Column padding={ 2 }>
2077
2077
  <Button.Border
@@ -2625,7 +2625,7 @@ const UserConfig = () => {
2625
2625
  } }
2626
2626
  >
2627
2627
  <Row.Left>
2628
- <Txt.Paragraph>Roundness</Txt.Paragraph>
2628
+ <Literal.Paragraph>Roundness</Literal.Paragraph>
2629
2629
  <Input.Slider
2630
2630
  min={ 0 }
2631
2631
  max={ 5 }
@@ -2642,7 +2642,7 @@ const UserConfig = () => {
2642
2642
  />
2643
2643
  </Row.Left>
2644
2644
  <Row.Left>
2645
- <Txt.Paragraph>Dark</Txt.Paragraph>
2645
+ <Literal.Paragraph>Dark</Literal.Paragraph>
2646
2646
  <Input.Segmented.Cloud
2647
2647
  cellStyles={ {
2648
2648
  flexCenter: true,
@@ -2672,7 +2672,7 @@ const UserConfig = () => {
2672
2672
  />
2673
2673
  </Row.Left>
2674
2674
  <Row.Left>
2675
- <Txt.Paragraph>Color</Txt.Paragraph>
2675
+ <Literal.Paragraph>Color</Literal.Paragraph>
2676
2676
  <Row.Left gap={ '1/6' }>
2677
2677
  { Object.entries( ThemeColors ).map( ( [ key,themeColor ] ) => {
2678
2678
  let isSelected = key === val_theme
@@ -2713,7 +2713,7 @@ const UserConfig = () => {
2713
2713
  } }
2714
2714
  />
2715
2715
  </Box>
2716
- <Txt.Supplement
2716
+ <Literal.Supplement
2717
2717
  display='none'
2718
2718
  ssTextEllipsis
2719
2719
  freeCSS={ {
@@ -2721,7 +2721,7 @@ const UserConfig = () => {
2721
2721
  } }
2722
2722
  >
2723
2723
  { isSelected && <FAI.Check /> } { key.toCapital() }
2724
- </Txt.Supplement>
2724
+ </Literal.Supplement>
2725
2725
  </Column>
2726
2726
  </Button.Clear>
2727
2727
  } ) }