@hoardodile/ui 0.1.6 → 0.1.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/dist/components/breadcrumb.js +3 -0
- package/dist/components/breadcrumb.js.map +1 -1
- package/dist/components/caption-bar.js +3 -0
- package/dist/components/caption-bar.js.map +1 -1
- package/dist/components/color-picker.js +3 -0
- package/dist/components/color-picker.js.map +1 -1
- package/dist/components/combobox.js +3 -0
- package/dist/components/combobox.js.map +1 -1
- package/dist/components/dropdown-menu.js +3 -0
- package/dist/components/dropdown-menu.js.map +1 -1
- package/dist/components/dropdown-select.js +3 -0
- package/dist/components/dropdown-select.js.map +1 -1
- package/dist/components/font-picker.js +3 -0
- package/dist/components/font-picker.js.map +1 -1
- package/dist/components/image-crop-panel.js +3 -0
- package/dist/components/image-crop-panel.js.map +1 -1
- package/dist/components/pagination-bar.js +3 -0
- package/dist/components/pagination-bar.js.map +1 -1
- package/dist/components/pagination.js +3 -0
- package/dist/components/pagination.js.map +1 -1
- package/dist/components/panel-toolbar.js +3 -0
- package/dist/components/panel-toolbar.js.map +1 -1
- package/dist/components/search-field.js +3 -0
- package/dist/components/search-field.js.map +1 -1
- package/dist/components/sidebar.js +3 -0
- package/dist/components/sidebar.js.map +1 -1
- package/dist/components/toast.js +3 -0
- package/dist/components/toast.js.map +1 -1
- package/dist/icons/actions.js +3 -0
- package/dist/icons/actions.js.map +1 -1
- package/dist/icons/registry.d.ts +2 -1
- package/dist/icons/registry.js +9 -1
- package/dist/icons/registry.js.map +1 -1
- package/dist/res-card-template/format.d.ts +21 -0
- package/dist/res-card-template/format.js +23 -0
- package/dist/res-card-template/format.js.map +1 -0
- package/dist/res-card-template/icon.d.ts +38 -0
- package/dist/res-card-template/icon.js +41 -0
- package/dist/res-card-template/icon.js.map +1 -0
- package/dist/res-card-template/index.d.ts +4 -0
- package/dist/res-card-template/index.js +331 -0
- package/dist/res-card-template/index.js.map +1 -0
- package/dist/res-card-template/template.d.ts +48 -0
- package/dist/res-card-template/template.js +333 -0
- package/dist/res-card-template/template.js.map +1 -0
- package/package.json +9 -2
- package/src/icons/registry.ts +8 -0
- package/src/res-card-template/format.test.ts +45 -0
- package/src/res-card-template/format.ts +36 -0
- package/src/res-card-template/icon.test.ts +100 -0
- package/src/res-card-template/icon.ts +86 -0
- package/src/res-card-template/index.ts +22 -0
- package/src/res-card-template/template.test.ts +457 -0
- package/src/res-card-template/template.ts +429 -0
|
@@ -143,6 +143,7 @@ import '@solar-icons/react/bold/user-plus';
|
|
|
143
143
|
import '@solar-icons/react/bold/users-group-rounded';
|
|
144
144
|
import '@solar-icons/react/bold/users-group-two-rounded';
|
|
145
145
|
import '@solar-icons/react/bold/video-frame';
|
|
146
|
+
import '@solar-icons/react/bold/video-frame-play-horizontal';
|
|
146
147
|
import '@solar-icons/react/bold/widget-2';
|
|
147
148
|
import '@solar-icons/react/bold/widget-5';
|
|
148
149
|
import '@solar-icons/react/bold/window-frame';
|
|
@@ -285,6 +286,7 @@ import '@solar-icons/react/bold-duotone/user-plus';
|
|
|
285
286
|
import '@solar-icons/react/bold-duotone/users-group-rounded';
|
|
286
287
|
import '@solar-icons/react/bold-duotone/users-group-two-rounded';
|
|
287
288
|
import '@solar-icons/react/bold-duotone/video-frame';
|
|
289
|
+
import '@solar-icons/react/bold-duotone/video-frame-play-horizontal';
|
|
288
290
|
import '@solar-icons/react/bold-duotone/widget-2';
|
|
289
291
|
import '@solar-icons/react/bold-duotone/widget-5';
|
|
290
292
|
import '@solar-icons/react/bold-duotone/window-frame';
|
|
@@ -426,6 +428,7 @@ import '@solar-icons/react/linear/user-plus';
|
|
|
426
428
|
import '@solar-icons/react/linear/users-group-rounded';
|
|
427
429
|
import '@solar-icons/react/linear/users-group-two-rounded';
|
|
428
430
|
import '@solar-icons/react/linear/video-frame';
|
|
431
|
+
import '@solar-icons/react/linear/video-frame-play-horizontal';
|
|
429
432
|
import '@solar-icons/react/linear/widget-2';
|
|
430
433
|
import '@solar-icons/react/linear/widget-5';
|
|
431
434
|
import '@solar-icons/react/linear/window-frame';
|