@crystallize/design-system 1.24.6 → 1.24.7

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @crystallize/design-system
2
2
 
3
+ ## 1.24.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 3f2da95: Add regenerate secrets and exclude subscription contracts to the tenant copy modal.
8
+
3
9
  ## 1.24.6
4
10
 
5
11
  ### Patch Changes
package/dist/index.css CHANGED
@@ -1068,7 +1068,6 @@
1068
1068
  }
1069
1069
  .c-collapsible-trigger.arrow-right {
1070
1070
  flex-direction: row-reverse;
1071
- justify-content: flex-end;
1072
1071
  }
1073
1072
  .c-collapsible-arrow {
1074
1073
  transition: 0.3s;
@@ -1851,6 +1850,9 @@
1851
1850
  font-size: 0.75rem;
1852
1851
  line-height: 1rem;
1853
1852
  }
1853
+ .c-tag-xxs .c-tag__prepend {
1854
+ margin-left: -0.25rem;
1855
+ }
1854
1856
  .c-tag-xs {
1855
1857
  height: 1.5rem;
1856
1858
  padding-left: 0.5rem;
@@ -1858,6 +1860,9 @@
1858
1860
  font-size: 0.75rem;
1859
1861
  line-height: 1rem;
1860
1862
  }
1863
+ .c-tag-xs .c-tag__prepend {
1864
+ margin-left: -0.25rem;
1865
+ }
1861
1866
  .c-tag-sm {
1862
1867
  height: 2.25rem;
1863
1868
  padding-left: 1rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystallize/design-system",
3
- "version": "1.24.6",
3
+ "version": "1.24.7",
4
4
  "types": "./dist/index.d.ts",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -6,7 +6,7 @@
6
6
  @apply flex gap-2 items-center;
7
7
 
8
8
  &.arrow-right {
9
- @apply flex-row-reverse justify-end;
9
+ @apply flex-row-reverse;
10
10
  }
11
11
  }
12
12
 
package/src/tag/tag.css CHANGED
@@ -36,10 +36,16 @@
36
36
 
37
37
  .c-tag-xxs {
38
38
  @apply h-5 px-2 text-xs;
39
+ .c-tag__prepend {
40
+ @apply -ml-1;
41
+ }
39
42
  }
40
43
 
41
44
  .c-tag-xs {
42
45
  @apply h-6 px-2 text-xs;
46
+ .c-tag__prepend {
47
+ @apply -ml-1;
48
+ }
43
49
  }
44
50
 
45
51
  .c-tag-sm {