sanity-plugin-iconify 1.1.1 → 2.0.0
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/LICENSE +1 -1
- package/README.md +14 -6
- package/dist/index.cjs +278 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +222 -0
- package/dist/index.d.ts +14 -1
- package/dist/index.js +216 -399
- package/dist/index.js.map +1 -1
- package/package.json +53 -56
- package/src/combobox/iconify-combobox.styles.tsx +3 -3
- package/src/combobox/iconify-combobox.tsx +5 -4
- package/src/combobox/search-input.tsx +7 -4
- package/src/combobox/search-result.tsx +7 -7
- package/src/combobox/unset-button.tsx +1 -1
- package/src/iconify-input.tsx +12 -10
- package/src/iconify-plugin.tsx +3 -2
- package/src/iconify-preview.tsx +4 -3
- package/src/lib/api.ts +2 -2
- package/src/lib/query-client.tsx +1 -1
- package/src/lib/types.ts +1 -1
- package/src/lib/use-pretty-icon-name.ts +2 -1
- package/dist/index.esm.js +0 -459
- package/dist/index.esm.js.map +0 -1
- package/src/lib/{generate-types.ts → generate-types.js} +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseSchemaDefinition } from 'sanity';
|
|
2
|
-
import { IconifyInfo } from '@iconify/types';
|
|
2
|
+
import type { IconifyInfo } from '@iconify/types';
|
|
3
3
|
import { Plugin as Plugin_2 } from 'sanity';
|
|
4
4
|
|
|
5
5
|
export { BaseSchemaDefinition };
|
|
@@ -42,6 +42,7 @@ export declare type IconPrefix =
|
|
|
42
42
|
| 'ph'
|
|
43
43
|
| 'solar'
|
|
44
44
|
| 'tabler'
|
|
45
|
+
| 'hugeicons'
|
|
45
46
|
| 'mingcute'
|
|
46
47
|
| 'ri'
|
|
47
48
|
| 'bi'
|
|
@@ -59,9 +60,11 @@ export declare type IconPrefix =
|
|
|
59
60
|
| 'majesticons'
|
|
60
61
|
| 'ant-design'
|
|
61
62
|
| 'gg'
|
|
63
|
+
| 'gravity-ui'
|
|
62
64
|
| 'octicon'
|
|
63
65
|
| 'memory'
|
|
64
66
|
| 'cil'
|
|
67
|
+
| 'flowbite'
|
|
65
68
|
| 'mynaui'
|
|
66
69
|
| 'basil'
|
|
67
70
|
| 'pixelarticons'
|
|
@@ -76,6 +79,7 @@ export declare type IconPrefix =
|
|
|
76
79
|
| 'mdi-light'
|
|
77
80
|
| 'fe'
|
|
78
81
|
| 'eos-icons'
|
|
82
|
+
| 'bitcoin-icons'
|
|
79
83
|
| 'charm'
|
|
80
84
|
| 'prime'
|
|
81
85
|
| 'humbleicons'
|
|
@@ -88,6 +92,10 @@ export declare type IconPrefix =
|
|
|
88
92
|
| 'mi'
|
|
89
93
|
| 'quill'
|
|
90
94
|
| 'gala'
|
|
95
|
+
| 'lets-icons'
|
|
96
|
+
| 'f7'
|
|
97
|
+
| 'mage'
|
|
98
|
+
| 'marketeq'
|
|
91
99
|
| 'fluent'
|
|
92
100
|
| 'icon-park-outline'
|
|
93
101
|
| 'icon-park-solid'
|
|
@@ -109,6 +117,7 @@ export declare type IconPrefix =
|
|
|
109
117
|
| 'fa6-regular'
|
|
110
118
|
| 'ooui'
|
|
111
119
|
| 'nimbus'
|
|
120
|
+
| 'oui'
|
|
112
121
|
| 'formkit'
|
|
113
122
|
| 'line-md'
|
|
114
123
|
| 'meteocons'
|
|
@@ -132,12 +141,16 @@ export declare type IconPrefix =
|
|
|
132
141
|
| 'fa6-brands'
|
|
133
142
|
| 'nonicons'
|
|
134
143
|
| 'arcticons'
|
|
144
|
+
| 'cbi'
|
|
135
145
|
| 'file-icons'
|
|
136
146
|
| 'devicon'
|
|
137
147
|
| 'devicon-plain'
|
|
138
148
|
| 'skill-icons'
|
|
149
|
+
| 'unjs'
|
|
139
150
|
| 'brandico'
|
|
140
151
|
| 'entypo-social'
|
|
152
|
+
| 'token'
|
|
153
|
+
| 'token-branded'
|
|
141
154
|
| 'cryptocurrency'
|
|
142
155
|
| 'cryptocurrency-color'
|
|
143
156
|
| 'flag'
|