afrikit-mobile 1.0.43 → 1.0.44

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/global.css CHANGED
@@ -514,6 +514,9 @@ video {
514
514
  .fixed {
515
515
  position: fixed;
516
516
  }
517
+ .absolute {
518
+ position: absolute;
519
+ }
517
520
  .mb-2xl {
518
521
  margin-bottom: 32px;
519
522
  }
@@ -1142,6 +1145,9 @@ video {
1142
1145
  .text-xs {
1143
1146
  font-size: 12px;
1144
1147
  }
1148
+ .uppercase {
1149
+ text-transform: uppercase;
1150
+ }
1145
1151
  .leading-2xl {
1146
1152
  line-height: 1.25;
1147
1153
  }
@@ -1326,6 +1332,9 @@ video {
1326
1332
  .outline {
1327
1333
  outline-style: solid;
1328
1334
  }
1335
+ .filter {
1336
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1337
+ }
1329
1338
  .text-xs-body {
1330
1339
  font-size: 12px;
1331
1340
  line-height: 1.33;
@@ -1741,4 +1750,9 @@ video {
1741
1750
  --tw-text-opacity: 1;
1742
1751
  color: rgb(22 18 12 / var(--tw-text-opacity));
1743
1752
  }
1753
+
1754
+ .dark\:text-light-type-gray-muted {
1755
+ --tw-text-opacity: 1;
1756
+ color: rgb(96 100 108 / var(--tw-text-opacity));
1757
+ }
1744
1758
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "afrikit-mobile",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "style": "dist/global.css",
@@ -67,5 +67,5 @@
67
67
  "publishConfig": {
68
68
  "access": "public"
69
69
  },
70
- "gitHead": "c26c87f28f8802b5ffe7d98713107c56912d29aa"
70
+ "gitHead": "106e2cf4cafe771b71cde9a6a80afbd965f3319a"
71
71
  }
@@ -8,6 +8,7 @@ module.exports = {
8
8
  'molecules/**/*.{js,jsx,ts,tsx}',
9
9
  'organisms/**/*.{js,jsx,ts,tsx}',
10
10
  'templates/**/*.{js,jsx,ts,tsx}',
11
+ 'dist/**/*.{js,jsx,ts,tsx}',
11
12
  '.storybook/**/*.{js,jsx,ts,tsx}',
12
13
  ],
13
14
  presets: [require('nativewind/preset')],