@hoardodile/ui 0.1.5 → 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/badge.d.ts +1 -1
- 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
|
@@ -139,6 +139,7 @@ import '@solar-icons/react/bold/user-plus';
|
|
|
139
139
|
import '@solar-icons/react/bold/users-group-rounded';
|
|
140
140
|
import '@solar-icons/react/bold/users-group-two-rounded';
|
|
141
141
|
import '@solar-icons/react/bold/video-frame';
|
|
142
|
+
import '@solar-icons/react/bold/video-frame-play-horizontal';
|
|
142
143
|
import '@solar-icons/react/bold/widget-2';
|
|
143
144
|
import '@solar-icons/react/bold/widget-5';
|
|
144
145
|
import '@solar-icons/react/bold/window-frame';
|
|
@@ -281,6 +282,7 @@ import '@solar-icons/react/bold-duotone/user-plus';
|
|
|
281
282
|
import '@solar-icons/react/bold-duotone/users-group-rounded';
|
|
282
283
|
import '@solar-icons/react/bold-duotone/users-group-two-rounded';
|
|
283
284
|
import '@solar-icons/react/bold-duotone/video-frame';
|
|
285
|
+
import '@solar-icons/react/bold-duotone/video-frame-play-horizontal';
|
|
284
286
|
import '@solar-icons/react/bold-duotone/widget-2';
|
|
285
287
|
import '@solar-icons/react/bold-duotone/widget-5';
|
|
286
288
|
import '@solar-icons/react/bold-duotone/window-frame';
|
|
@@ -422,6 +424,7 @@ import '@solar-icons/react/linear/user-plus';
|
|
|
422
424
|
import '@solar-icons/react/linear/users-group-rounded';
|
|
423
425
|
import '@solar-icons/react/linear/users-group-two-rounded';
|
|
424
426
|
import '@solar-icons/react/linear/video-frame';
|
|
427
|
+
import '@solar-icons/react/linear/video-frame-play-horizontal';
|
|
425
428
|
import '@solar-icons/react/linear/widget-2';
|
|
426
429
|
import '@solar-icons/react/linear/widget-5';
|
|
427
430
|
import '@solar-icons/react/linear/window-frame';
|