@nmorph/nmorph-ui-kit 0.0.1 → 0.0.4
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/index.es.js +3908 -3926
- package/dist/style.css +1 -1
- package/dist/styles/base/_animation.scss +8 -0
- package/dist/styles/base/_basic.scss +43 -0
- package/dist/styles/base/_colors.scss +23 -22
- package/dist/styles/base/_common-mixins.scss +12 -5
- package/dist/styles/base/_dimensions.scss +18 -8
- package/dist/styles/base/_histoire.scss +1 -1
- package/dist/styles/base/_theme-mixin.scss +16 -14
- package/dist/styles/base/_typography.scss +29 -132
- package/dist/styles/base/style.scss +3 -7
- package/dist/styles/main.scss +1 -2
- package/dist/types/components/inputs/checkbox/nmorph-checkbox/NmorphCheckbox.vue.d.ts +7 -4
- package/dist/types/components/inputs/checkbox/nmorph-checkbox-group/NmorphCheckboxGroup.vue.d.ts +9 -27
- package/dist/types/components/inputs/checkbox/types.d.ts +6 -3
- package/dist/types/components/inputs/nmorph-autocomplete/NmorphAutocomplete.vue.d.ts +72 -0
- package/dist/types/components/inputs/nmorph-autocomplete/types.d.ts +5 -0
- package/dist/types/components/inputs/nmorph-clear-button/NmorphClearButton.vue.d.ts +7 -0
- package/dist/types/components/inputs/nmorph-date-picker/NmorphDatePicker.vue.d.ts +70 -0
- package/dist/types/components/inputs/nmorph-date-picker/components/nmorph-date-picker-content/NmorphDatePickerContent.vue.d.ts +40 -0
- package/dist/types/components/inputs/nmorph-date-picker/components/nmorph-date-picker-header/NmorphDatePickerHeader.vue.d.ts +43 -0
- package/dist/types/components/inputs/nmorph-date-picker/components/nmorph-year-month-picker/NmorphYearMonthPicker.vue.d.ts +38 -0
- package/dist/types/components/inputs/nmorph-date-picker/components/types.d.ts +7 -0
- package/dist/types/components/inputs/nmorph-file-upload/NmorphFileUpload.vue.d.ts +19 -8
- package/dist/types/components/inputs/nmorph-file-upload/types.d.ts +32 -28
- package/dist/types/components/inputs/nmorph-number-input/NmorphNumberInput.vue.d.ts +13 -28
- package/dist/types/components/inputs/nmorph-select/NmorphSelect.vue.d.ts +26 -15
- package/dist/types/components/inputs/{nmorph-select-option → nmorph-select/components/nmorph-select-option}/NmorphSelectOption.vue.d.ts +5 -5
- package/dist/types/components/inputs/nmorph-select/types.d.ts +4 -0
- package/dist/types/components/inputs/nmorph-slider/NmorphSlider.vue.d.ts +5 -5
- package/dist/types/components/inputs/nmorph-switch/NmorphSwitch.vue.d.ts +8 -6
- package/dist/types/components/inputs/nmorph-text-input/NmorphTextInput.vue.d.ts +15 -29
- package/dist/types/components/inputs/nmorph-time-picker/NmorphTimePicker.vue.d.ts +65 -0
- package/dist/types/components/inputs/nmorph-time-picker/components/NmorphTimeRoller.vue.d.ts +46 -0
- package/dist/types/components/inputs/nmorph-time-picker/types.d.ts +3 -0
- package/dist/types/components/inputs/nmorph-time-picker/utils.d.ts +3 -0
- package/dist/types/components/inputs/radio/nmorph-radio/NmorphRadio.vue.d.ts +48 -0
- package/dist/types/components/inputs/radio/nmorph-radio-group/NmorphRadioGroup.vue.d.ts +12 -25
- package/dist/types/components/inputs/radio/types.d.ts +5 -2
- package/dist/types/components/nmorph-alert/NmorphAlert.vue.d.ts +67 -0
- package/dist/types/components/nmorph-alert/types.d.ts +6 -0
- package/dist/types/components/nmorph-avatar/NmorphAvatar.vue.d.ts +62 -0
- package/dist/types/components/nmorph-avatar/type.d.ts +1 -0
- package/dist/types/components/nmorph-backtop/NmorphBacktop.vue.d.ts +48 -0
- package/dist/types/components/nmorph-badge/NmorphBadge.vue.d.ts +60 -0
- package/dist/types/components/nmorph-breadcrumb/NmorphBreadcrumb.vue.d.ts +36 -0
- package/dist/types/components/nmorph-breadcrumb/components/nmorph-breadcrumb-item/NmorphBreadcrumbItem.vue.d.ts +40 -0
- package/dist/types/components/nmorph-breadcrumb/types.d.ts +13 -0
- package/dist/types/components/nmorph-button/NmorphButton.vue.d.ts +15 -22
- package/dist/types/components/nmorph-calendar/NmorphCalendar.vue.d.ts +75 -0
- package/dist/types/components/nmorph-calendar/components/nmorph-calendar-header/NmorphCalendarHeader.vue.d.ts +42 -0
- package/dist/types/components/nmorph-calendar/locale.d.ts +1 -0
- package/dist/types/components/nmorph-calendar/types.d.ts +12 -0
- package/dist/types/components/nmorph-calendar/utils.d.ts +9 -0
- package/dist/types/components/nmorph-card/NmorphCard.vue.d.ts +7 -7
- package/dist/types/components/nmorph-carousel/NmorphCarousel.vue.d.ts +39 -2
- package/dist/types/components/nmorph-carousel/components/nmorph-carousel-item/NmorphCarouselItem.vue.d.ts +30 -0
- package/dist/types/components/nmorph-carousel/types.d.ts +5 -0
- package/dist/types/components/nmorph-collapse/NmorphCollapse.vue.d.ts +42 -0
- package/dist/types/components/nmorph-collapse/components/nmorph-collapse-item/NmorphCollapseItem.vue.d.ts +55 -0
- package/dist/types/components/nmorph-collapse/types.d.ts +9 -0
- package/dist/types/components/nmorph-dialog/NmorphDialog.vue.d.ts +47 -0
- package/dist/types/components/{inputs/common/NmorphValidationIcon.vue.d.ts → nmorph-divider/NmorphDivider.vue.d.ts} +8 -8
- package/dist/types/components/nmorph-divider/types.d.ts +1 -0
- package/dist/types/components/nmorph-dropdown/NmorphDropdown.vue.d.ts +55 -0
- package/dist/types/components/nmorph-form/NmorphForm.vue.d.ts +56 -0
- package/dist/types/components/nmorph-form/components/nmorph-form-item/NmorphFormItem.vue.d.ts +58 -0
- package/dist/types/components/nmorph-form/components/nmorph-form-item/components/index.d.ts +3 -0
- package/dist/types/components/nmorph-form/components/nmorph-form-item/components/nmorph-error-box/NmorphErrorBox.vue.d.ts +38 -0
- package/dist/types/components/nmorph-form/components/nmorph-form-item/components/nmorph-validation-icon/NmorphValidationIcon.vue.d.ts +30 -0
- package/dist/types/components/nmorph-form/types.d.ts +7 -0
- package/dist/types/components/nmorph-icon/NmorphIcon.vue.d.ts +17 -17
- package/dist/types/components/nmorph-icon/NmorphIconsMap.d.ts +2 -4
- package/dist/types/components/nmorph-icon/types.d.ts +3 -3
- package/dist/types/components/nmorph-image/NmorphImage.vue.d.ts +10 -12
- package/dist/types/components/nmorph-image-preview/NmorphImagePreview.vue.d.ts +3 -3
- package/dist/types/components/nmorph-image-preview/types.d.ts +5 -0
- package/dist/types/components/nmorph-link/NmorphLink.vue.d.ts +13 -18
- package/dist/types/components/nmorph-link/types.d.ts +6 -0
- package/dist/types/components/nmorph-overlay/NmorphOverlay.vue.d.ts +5 -4
- package/dist/types/components/nmorph-pagination/NmorphPagination.vue.d.ts +56 -0
- package/dist/types/components/nmorph-progress/NmorphProgress.vue.d.ts +66 -0
- package/dist/types/components/nmorph-progress/types.d.ts +6 -0
- package/dist/types/components/nmorph-scroll/NmorphScroll.vue.d.ts +63 -0
- package/dist/types/components/nmorph-scroll/types.d.ts +7 -0
- package/dist/types/components/nmorph-skeleton/NmorphSkeleton.vue.d.ts +45 -0
- package/dist/types/components/{nmorph-error-box/NmorphErrorBox.vue.d.ts → nmorph-skeleton/components/NmorphSkeletonItem.vue.d.ts} +8 -12
- package/dist/types/components/nmorph-skeleton/types.d.ts +1 -0
- package/dist/types/components/nmorph-sort-button/NmorphSortButton.vue.d.ts +28 -0
- package/dist/types/components/nmorph-table/NmorphTable.vue.d.ts +59 -0
- package/dist/types/components/nmorph-table/components/nmorph-table-cell/NmorphTableCell.vue.d.ts +30 -0
- package/dist/types/components/nmorph-table/components/nmorph-table-column/NmorphTableColumn.vue.d.ts +48 -0
- package/dist/types/components/nmorph-table/types.d.ts +21 -0
- package/dist/types/components/nmorph-tabs/NmorphTabs.vue.d.ts +47 -0
- package/dist/types/components/nmorph-tabs/components/nmorph-tab-pane/NmorphTabPane.vue.d.ts +40 -0
- package/dist/types/components/nmorph-tabs/type.d.ts +11 -0
- package/dist/types/components/nmorph-tabs/utils.d.ts +3 -0
- package/dist/types/components/nmorph-tag/NmorphTag.vue.d.ts +8 -8
- package/dist/types/components/nmorph-tooltip/NmorphTooltip.vue.d.ts +8 -26
- package/dist/types/components.d.ts +32 -3
- package/dist/types/histoire.setup.d.ts +0 -2
- package/dist/types/hooks/index.d.ts +4 -0
- package/dist/types/hooks/useEventManager.d.ts +1 -0
- package/dist/types/hooks/useFieldValidation.d.ts +53 -0
- package/dist/types/hooks/useFormValidation.d.ts +10 -0
- package/dist/types/hooks/usePlacement.d.ts +17 -0
- package/dist/types/types/common.d.ts +77 -0
- package/dist/types/utils/create-modifiers.d.ts +4 -1
- package/dist/types/utils/deep-clone.d.ts +1 -0
- package/dist/types/utils/generateUUID.d.ts +1 -0
- package/dist/types/utils/index.d.ts +3 -0
- package/dist/types/utils/is-string-html.d.ts +1 -0
- package/package.json +5 -24
- package/dist/fonts/Inter-Bold.woff +0 -0
- package/dist/fonts/Inter-Bold.woff2 +0 -0
- package/dist/fonts/Inter-Regular.woff +0 -0
- package/dist/fonts/Inter-Regular.woff2 +0 -0
- package/dist/fonts/Inter-SemiBold.woff +0 -0
- package/dist/fonts/Inter-SemiBold.woff2 +0 -0
- package/dist/styles/base/_transition.scss +0 -6
- package/dist/styles/packages/style.scss +0 -0
- package/dist/types/components/inputs/nmorph-select-option/types/index.d.ts +0 -1
- package/dist/types/hooks/useValidation.d.ts +0 -55
- package/dist/types/types/common.enums.d.ts +0 -46
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.