@ship-ui/core 0.16.0 → 0.16.1
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/fesm2022/ship-ui-core.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +1 -1
- package/styles/index.scss +33 -33
- /package/styles/components/{ship-alert-container.component.scss → ship-alert-container.scss} +0 -0
- /package/styles/components/{ship-alert.component.scss → ship-alert.scss} +0 -0
- /package/styles/components/{ship-blueprint.component.scss → ship-blueprint.scss} +0 -0
- /package/styles/components/{ship-button-group.component.scss → ship-button-group.scss} +0 -0
- /package/styles/components/{ship-button.component.scss → ship-button.scss} +0 -0
- /package/styles/components/{ship-card.component.scss → ship-card.scss} +0 -0
- /package/styles/components/{ship-checkbox.component.scss → ship-checkbox.scss} +0 -0
- /package/styles/components/{ship-chip.component.scss → ship-chip.scss} +0 -0
- /package/styles/components/{ship-color-picker.component.scss → ship-color-picker.scss} +0 -0
- /package/styles/components/{ship-datepicker.component.scss → ship-datepicker.scss} +0 -0
- /package/styles/components/{ship-dialog.component.scss → ship-dialog.scss} +0 -0
- /package/styles/components/{ship-divider.component.scss → ship-divider.scss} +0 -0
- /package/styles/components/{ship-event-card.component.scss → ship-event-card.scss} +0 -0
- /package/styles/components/{ship-file-upload.component.scss → ship-file-upload.scss} +0 -0
- /package/styles/components/{ship-form-field.component.scss → ship-form-field.scss} +0 -0
- /package/styles/components/{ship-icon.component.scss → ship-icon.scss} +0 -0
- /package/styles/components/{ship-list.component.scss → ship-list.scss} +0 -0
- /package/styles/components/{ship-menu.component.scss → ship-menu.scss} +0 -0
- /package/styles/components/{ship-popover.component.scss → ship-popover.scss} +0 -0
- /package/styles/components/{ship-progress-bar.component.scss → ship-progress-bar.scss} +0 -0
- /package/styles/components/{ship-radio.component.scss → ship-radio.scss} +0 -0
- /package/styles/components/{ship-range-slider.component.scss → ship-range-slider.scss} +0 -0
- /package/styles/components/{ship-select.component.scss → ship-select.scss} +0 -0
- /package/styles/components/{ship-sidenav.component.scss → ship-sidenav.scss} +0 -0
- /package/styles/components/{ship-sortable.component.scss → ship-sortable.scss} +0 -0
- /package/styles/components/{ship-spinner.component.scss → ship-spinner.scss} +0 -0
- /package/styles/components/{ship-stepper.component.scss → ship-stepper.scss} +0 -0
- /package/styles/components/{ship-table.component.scss → ship-table.scss} +0 -0
- /package/styles/components/{ship-tabs.component.scss → ship-tabs.scss} +0 -0
- /package/styles/components/{ship-toggle-card.component.scss → ship-toggle-card.scss} +0 -0
- /package/styles/components/{ship-toggle.component.scss → ship-toggle.scss} +0 -0
- /package/styles/components/{ship-tooltip.component.scss → ship-tooltip.scss} +0 -0
- /package/styles/components/{ship-virtual-scroll.component.scss → ship-virtual-scroll.scss} +0 -0
package/index.d.ts
CHANGED
|
@@ -844,11 +844,11 @@ declare class ShipTooltip implements OnDestroy {
|
|
|
844
844
|
declare const SHIP_CONFIG: InjectionToken<ShipConfig>;
|
|
845
845
|
interface ShipConfig {
|
|
846
846
|
alertVariant?: '' | 'simple' | 'outlined' | 'flat' | 'raised';
|
|
847
|
-
cardType?: 'type-b';
|
|
847
|
+
cardType?: '' | 'type-b' | 'type-c';
|
|
848
848
|
dialogType?: 'type-b';
|
|
849
849
|
tableType?: 'type-b';
|
|
850
850
|
sidenavType?: 'overlay' | 'simple';
|
|
851
851
|
}
|
|
852
852
|
|
|
853
853
|
export { GridSortable, SHIP_CONFIG, ShipAlert, ShipAlertContainer, ShipAlertModule, ShipAlertService, ShipBlueprint, ShipButton, ShipButtonGroup, ShipCard, ShipCheckbox, ShipChip, ShipColorPicker, ShipDatepicker, ShipDatepickerInput, ShipDaterangeInput, ShipDialog, ShipDialogService, ShipDivider, ShipEventCard, ShipFileDragDrop, ShipFileUpload, ShipFormField, ShipIcon, ShipInputMask, ShipList, ShipMenu, ShipPopover, ShipPreventWheel, ShipProgressBar, ShipRadio, ShipRangeSlider, ShipResize, ShipSelect, ShipSidenav, ShipSort, ShipSortable, ShipSpinner, ShipStepper, ShipStickyColumns, ShipTable, ShipTabs, ShipToggle, ShipToggleCard, ShipTooltip, ShipTooltipWrapper, ShipVirtualScroll, TEST_NODES, moveIndex, watchHostClass };
|
|
854
|
-
export type { AfterDropResponse, BlueprintNode, Coordinates, ShipAlertItem, ShipAlertItemInternal, ShipAlertType, ShipDialogOptions, ShipDialogReturn, ShipDialogServiceOptions, ShipPopoverOptions, ShipProgressBarMode, ShipSidenavType };
|
|
854
|
+
export type { AfterDropResponse, BlueprintNode, Coordinates, ShipAlertItem, ShipAlertItemInternal, ShipAlertType, ShipConfig, ShipDialogOptions, ShipDialogReturn, ShipDialogServiceOptions, ShipPopoverOptions, ShipProgressBarMode, ShipSidenavType };
|
package/package.json
CHANGED
package/styles/index.scss
CHANGED
|
@@ -50,109 +50,109 @@ $shipTable: true !default;
|
|
|
50
50
|
$shipTabs: true !default;
|
|
51
51
|
$shipFileUpload: true !default;
|
|
52
52
|
|
|
53
|
-
@use './components/ship-alert-container.
|
|
53
|
+
@use './components/ship-alert-container.scss' with (
|
|
54
54
|
$shipAlert: $shipAlert
|
|
55
55
|
);
|
|
56
|
-
@use './components/ship-alert.
|
|
56
|
+
@use './components/ship-alert.scss' with (
|
|
57
57
|
$shipAlert: $shipAlert
|
|
58
58
|
);
|
|
59
|
-
@use './components/ship-blueprint.
|
|
59
|
+
@use './components/ship-blueprint.scss' with (
|
|
60
60
|
$shipBlueprint: $shipBlueprint
|
|
61
61
|
);
|
|
62
|
-
@use './components/ship-toggle.
|
|
62
|
+
@use './components/ship-toggle.scss' with (
|
|
63
63
|
$shipToggle: $shipToggle
|
|
64
64
|
);
|
|
65
|
-
@use './components/ship-button.
|
|
65
|
+
@use './components/ship-button.scss' with (
|
|
66
66
|
$shipButton: $shipButton,
|
|
67
67
|
$shipButtonShadow: $shipButtonShadow
|
|
68
68
|
);
|
|
69
|
-
@use './components/ship-progress-bar.
|
|
69
|
+
@use './components/ship-progress-bar.scss' with (
|
|
70
70
|
$shipProgressBar: $shipProgressBar
|
|
71
71
|
);
|
|
72
|
-
@use './components/ship-checkbox.
|
|
72
|
+
@use './components/ship-checkbox.scss' with (
|
|
73
73
|
$shipCheckbox: $shipCheckbox
|
|
74
74
|
);
|
|
75
|
-
@use './components/ship-datepicker.
|
|
75
|
+
@use './components/ship-datepicker.scss' with (
|
|
76
76
|
$shipDatepicker: $shipDatepicker
|
|
77
77
|
);
|
|
78
|
-
@use './components/ship-event-card.
|
|
78
|
+
@use './components/ship-event-card.scss' with (
|
|
79
79
|
$shipEventCard: $shipEventCard
|
|
80
80
|
);
|
|
81
|
-
@use './components/ship-icon.
|
|
81
|
+
@use './components/ship-icon.scss' with (
|
|
82
82
|
$shipIcon: $shipIcon
|
|
83
83
|
);
|
|
84
|
-
@use './components/ship-menu.
|
|
84
|
+
@use './components/ship-menu.scss' with (
|
|
85
85
|
$shipMenu: $shipMenu
|
|
86
86
|
);
|
|
87
|
-
@use './components/ship-divider.
|
|
87
|
+
@use './components/ship-divider.scss' with (
|
|
88
88
|
$shipDivider: $shipDivider
|
|
89
89
|
);
|
|
90
|
-
@use './components/ship-dialog.
|
|
90
|
+
@use './components/ship-dialog.scss' with (
|
|
91
91
|
$shipDialog: $shipDialog
|
|
92
92
|
);
|
|
93
|
-
@use './components/ship-popover.
|
|
93
|
+
@use './components/ship-popover.scss' with (
|
|
94
94
|
$shipPopover: $shipPopover
|
|
95
95
|
);
|
|
96
|
-
@use './components/ship-chip.
|
|
96
|
+
@use './components/ship-chip.scss' with (
|
|
97
97
|
$shipChip: $shipChip,
|
|
98
98
|
$shipChipShadow: $shipChipShadow
|
|
99
99
|
);
|
|
100
|
-
@use './components/ship-form-field.
|
|
100
|
+
@use './components/ship-form-field.scss' with (
|
|
101
101
|
$shipFormField: $shipFormField,
|
|
102
102
|
$shipDatepicker: $shipDatepicker,
|
|
103
103
|
$shipFormFieldShadow: $shipFormFieldShadow
|
|
104
104
|
);
|
|
105
|
-
@use './components/ship-color-picker.
|
|
105
|
+
@use './components/ship-color-picker.scss' with (
|
|
106
106
|
$shipColorPicker: $shipColorPicker
|
|
107
107
|
);
|
|
108
|
-
@use './components/ship-sidenav.
|
|
108
|
+
@use './components/ship-sidenav.scss' with (
|
|
109
109
|
$shipSidenav: $shipSidenav
|
|
110
110
|
);
|
|
111
|
-
@use './components/ship-list.
|
|
111
|
+
@use './components/ship-list.scss' with (
|
|
112
112
|
$shipList: $shipList
|
|
113
113
|
);
|
|
114
|
-
@use './components/ship-radio.
|
|
114
|
+
@use './components/ship-radio.scss' with (
|
|
115
115
|
$shipRadio: $shipRadio
|
|
116
116
|
);
|
|
117
|
-
@use './components/ship-button-group.
|
|
117
|
+
@use './components/ship-button-group.scss' with (
|
|
118
118
|
$shipButtonGroup: $shipButtonGroup
|
|
119
119
|
);
|
|
120
|
-
@use './components/ship-range-slider.
|
|
120
|
+
@use './components/ship-range-slider.scss' with (
|
|
121
121
|
$shipRangeSlider: $shipRangeSlider
|
|
122
122
|
);
|
|
123
|
-
@use './components/ship-tooltip.
|
|
123
|
+
@use './components/ship-tooltip.scss' with (
|
|
124
124
|
$shipTooltip: $shipTooltip
|
|
125
125
|
);
|
|
126
|
-
@use './components/ship-virtual-scroll.
|
|
126
|
+
@use './components/ship-virtual-scroll.scss' with (
|
|
127
127
|
$shipVirtualScroll: $shipVirtualScroll
|
|
128
128
|
);
|
|
129
|
-
@use './components/ship-select.
|
|
129
|
+
@use './components/ship-select.scss' with (
|
|
130
130
|
$shipSelect: $shipSelect
|
|
131
131
|
);
|
|
132
|
-
@use './components/ship-card.
|
|
132
|
+
@use './components/ship-card.scss' with (
|
|
133
133
|
$shipCard: $shipCard
|
|
134
134
|
);
|
|
135
135
|
@use './components/ship-sheet.utility.scss' with (
|
|
136
136
|
$shipSheet: $shipSheet
|
|
137
137
|
);
|
|
138
|
-
@use './components/ship-stepper.
|
|
138
|
+
@use './components/ship-stepper.scss' with (
|
|
139
139
|
$shipStepper: $shipStepper
|
|
140
140
|
);
|
|
141
|
-
@use './components/ship-spinner.
|
|
141
|
+
@use './components/ship-spinner.scss' with (
|
|
142
142
|
$shipSpinner: $shipSpinner
|
|
143
143
|
);
|
|
144
|
-
@use './components/ship-sortable.
|
|
144
|
+
@use './components/ship-sortable.scss' with (
|
|
145
145
|
$shipSortable: $shipSortable
|
|
146
146
|
);
|
|
147
|
-
@use './components/ship-toggle-card.
|
|
147
|
+
@use './components/ship-toggle-card.scss' with (
|
|
148
148
|
$shipToggleCard: $shipToggleCard
|
|
149
149
|
);
|
|
150
|
-
@use './components/ship-table.
|
|
150
|
+
@use './components/ship-table.scss' with (
|
|
151
151
|
$shipTable: $shipTable
|
|
152
152
|
);
|
|
153
|
-
@use './components/ship-tabs.
|
|
153
|
+
@use './components/ship-tabs.scss' with (
|
|
154
154
|
$shipTabs: $shipTabs
|
|
155
155
|
);
|
|
156
|
-
@use './components/ship-file-upload.
|
|
156
|
+
@use './components/ship-file-upload.scss' with (
|
|
157
157
|
$shipFileUpload: $shipFileUpload
|
|
158
158
|
);
|
/package/styles/components/{ship-alert-container.component.scss → ship-alert-container.scss}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|