@npm-questionpro/wick-ui-lib 0.5.1 → 0.8.3
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/fonts/icon.css +8 -5
- package/dist/fonts/selection.json +266 -243
- package/dist/fonts/wick-icon.eot +0 -0
- package/dist/fonts/wick-icon.svg +1 -0
- package/dist/fonts/wick-icon.ttf +0 -0
- package/dist/fonts/wick-icon.woff +0 -0
- package/dist/src/base/ui/command.d.ts +80 -0
- package/dist/src/base/ui/dialog.d.ts +16 -15
- package/dist/src/components/calendar/components/datePicker/WuDatePicker.d.ts +6 -1
- package/dist/src/components/calendar/components/dateRangePicker/WuDateRangePicker.d.ts +6 -1
- package/dist/src/components/calendar/ui/_footer.d.ts +2 -0
- package/dist/src/components/calendar/ui/_sidebar.d.ts +3 -2
- package/dist/src/components/calendar/ui/_trigger.d.ts +1 -0
- package/dist/src/components/combobox/WuCombobox.d.ts +21 -0
- package/dist/src/components/combobox/WuCombobox.test.d.ts +1 -0
- package/dist/src/components/combobox/index.d.ts +3 -0
- package/dist/src/components/combobox/types/IWuComboboxOptions.d.ts +17 -0
- package/dist/src/components/combobox/ui/_item.d.ts +15 -0
- package/dist/src/components/combobox/ui/_tags.d.ts +7 -0
- package/dist/src/components/combobox/ui/_trigger.d.ts +15 -0
- package/dist/src/components/combobox/utils/index.d.ts +2 -0
- package/dist/src/components/combobox/utils/renderItems.d.ts +9 -0
- package/dist/src/components/combobox/utils/separateOptions.d.ts +7 -0
- package/dist/src/components/combobox/utils/useResizeContent.d.ts +3 -0
- package/dist/src/components/modal/WuModal.d.ts +28 -18
- package/dist/src/components/navbar/primaryNavbar/WuPrimaryNavbar.d.ts +1 -0
- package/dist/src/components/navbar/secondaryNavbar/WuSecondaryNavbar.d.ts +1 -0
- package/dist/src/components/select/WuSelect.d.ts +19 -12
- package/dist/src/components/select/types/IWuSelectOptions.d.ts +6 -8
- package/dist/src/components/select/ui/_item.d.ts +15 -0
- package/dist/src/components/select/ui/_trigger.d.ts +15 -0
- package/dist/src/components/select/utils/renderItems.d.ts +8 -0
- package/dist/src/components/select/utils/useOptionDestructure.d.ts +3 -0
- package/dist/src/components/select/utils/useResizeContent.d.ts +3 -0
- package/dist/src/components/stepper/WuStepper.d.ts +1 -0
- package/dist/src/components/tooltip/WuTooltip.d.ts +2 -2
- package/dist/src/components/virtualScroll/WuVirtualScroll.d.ts +1 -0
- package/dist/src/docs/Icons.d.ts +3 -1
- package/dist/src/docs/iconClasses.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/wick-ui-lib/es/index.js +7552 -5729
- package/dist/wick-ui-lib/es/index.js.map +1 -1
- package/dist/wick-ui-lib/umd/index.js +16 -13
- package/dist/wick-ui-lib/umd/index.js.map +1 -1
- package/package.json +10 -4
- package/dist/src/components/select/hooks/useOptionDestructure.d.ts +0 -3
- package/dist/src/components/select/ui/WuSelectItem.d.ts +0 -12
- package/dist/src/components/select/ui/WuSelectTrigger.d.ts +0 -13
package/dist/fonts/icon.css
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'wick-icon';
|
|
3
|
-
src: url('./wick-icon.eot?
|
|
3
|
+
src: url('./wick-icon.eot?4i1t6d');
|
|
4
4
|
src:
|
|
5
|
-
url('./wick-icon.eot?
|
|
6
|
-
url('./wick-icon.ttf?
|
|
7
|
-
url('./wick-icon.woff?
|
|
8
|
-
url('./wick-icon.svg?
|
|
5
|
+
url('./wick-icon.eot?4i1t6d#iefix') format('embedded-opentype'),
|
|
6
|
+
url('./wick-icon.ttf?4i1t6d') format('truetype'),
|
|
7
|
+
url('./wick-icon.woff?4i1t6d') format('woff'),
|
|
8
|
+
url('./wick-icon.svg?4i1t6d#wick-icon') format('svg');
|
|
9
9
|
font-weight: normal;
|
|
10
10
|
font-style: normal;
|
|
11
11
|
font-display: block;
|
|
@@ -27,6 +27,9 @@
|
|
|
27
27
|
-moz-osx-font-smoothing: grayscale;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
.wi-refresh:before {
|
|
31
|
+
content: '\e919';
|
|
32
|
+
}
|
|
30
33
|
.wi-lock:before {
|
|
31
34
|
content: '\e900';
|
|
32
35
|
}
|