@rokkit/themes 1.0.0-next.52 → 1.0.0-next.54

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rokkit/themes",
3
- "version": "1.0.0-next.52",
3
+ "version": "1.0.0-next.54",
4
4
  "description": "Themes for use with rokkit components.",
5
5
  "author": "Jerry Thomas <me@jerrythomas.name>",
6
6
  "license": "MIT",
@@ -20,8 +20,8 @@
20
20
  "typescript": "^5.2.2",
21
21
  "vite": "^4.4.9",
22
22
  "vitest": "~0.34.6",
23
- "@rokkit/core": "1.0.0-next.52",
24
- "shared-config": "1.0.0-next.52"
23
+ "@rokkit/core": "1.0.0-next.54",
24
+ "shared-config": "1.0.0-next.54"
25
25
  },
26
26
  "files": [
27
27
  "src"
@@ -92,7 +92,7 @@ input-field textarea,
92
92
  input-field select,
93
93
  input-field > field > :not(icon) {
94
94
  @apply px-3;
95
- @apply flex-grow outline-none min-h-10 leading-loose;
95
+ @apply flex-grow outline-none min-h-9 leading-loose;
96
96
  @apply bg-skin-subtle text-skin-800;
97
97
  }
98
98
  input-field > label {
@@ -30,18 +30,24 @@ drop-down {
30
30
  @apply overflow-visible cursor-pointer;
31
31
  }
32
32
 
33
+ input-field field {
34
+ @apply gap-1px;
35
+ }
36
+ input-field field icon {
37
+ @apply w-9 h-9 bg-skin-subtle text-skin-800;
38
+ }
39
+
33
40
  input-field > field > input-select {
34
41
  @apply px-0;
35
42
  }
36
43
 
37
44
  input-select selected-item > icon,
38
45
  drop-down > button > span > icon {
39
- @apply w-10 h-full;
46
+ @apply w-9 h-full;
40
47
  }
41
-
42
48
  input-select > selected-item,
43
49
  drop-down > button > span {
44
50
  /* @apply bg-skin-base pl-3; */
45
- @apply pl-3 min-h-10 gap-2 items-center normal-case;
51
+ @apply pl-3 min-h-9 gap-2 items-center normal-case;
46
52
  @apply rounded text-skin-800;
47
53
  }
@@ -86,7 +86,7 @@
86
86
 
87
87
  /* Styles for 'rating' class */
88
88
  .rokkit rating {
89
- @apply text-skin-600 text-xl h-10 justify-center rounded focus:outline focus:outline-secondary;
89
+ @apply text-skin-600 text-xl h-9 justify-center rounded focus:outline focus:outline-secondary;
90
90
  }
91
91
  .rokkit rating > icon {
92
92
  @apply w-8;
package/src/base/test.py DELETED
@@ -1,7 +0,0 @@
1
- # write a function to generate a fibonaci sequence of n numbers
2
-
3
- def fib(n):
4
- a, b = 0, 1
5
- for i in range(n):
6
- print(a)
7
- a, b = b, a+b