@ship-ui/core 0.13.2
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/LICENSE +21 -0
- package/README.md +3 -0
- package/assets/fonts/InterTight-VariableFont_wght.woff2 +0 -0
- package/bin/ship-fg-node +40 -0
- package/bin/ship-fg.ts +40 -0
- package/bin/src/ship-fg-node.js +344 -0
- package/bin/src/ship-fg.ts +368 -0
- package/bin/src/utilities.js +53 -0
- package/bin/src/utilities.ts +98 -0
- package/bin/tsconfig.app.json +15 -0
- package/fesm2022/ship-ui-core.mjs +5373 -0
- package/fesm2022/ship-ui-core.mjs.map +1 -0
- package/index.d.ts +758 -0
- package/package.json +52 -0
- package/styles/components/ship-alert-container.component.scss +49 -0
- package/styles/components/ship-alert.component.scss +273 -0
- package/styles/components/ship-button-group.component.scss +63 -0
- package/styles/components/ship-button.component.scss +330 -0
- package/styles/components/ship-card.component.scss +54 -0
- package/styles/components/ship-checkbox.component.scss +245 -0
- package/styles/components/ship-chip.component.scss +290 -0
- package/styles/components/ship-color-picker.component.scss +78 -0
- package/styles/components/ship-datepicker.component.scss +274 -0
- package/styles/components/ship-dialog.component.scss +119 -0
- package/styles/components/ship-divider.component.scss +27 -0
- package/styles/components/ship-file-upload.component.scss +47 -0
- package/styles/components/ship-form-field.component.scss +334 -0
- package/styles/components/ship-icon.component.scss +54 -0
- package/styles/components/ship-list.component.scss +148 -0
- package/styles/components/ship-menu.component.scss +217 -0
- package/styles/components/ship-popover.component.scss +66 -0
- package/styles/components/ship-progress-bar.component.scss +173 -0
- package/styles/components/ship-radio.component.scss +182 -0
- package/styles/components/ship-range-slider.component.scss +412 -0
- package/styles/components/ship-select.component.scss +139 -0
- package/styles/components/ship-sidenav.component.scss +192 -0
- package/styles/components/ship-sortable.component.scss +54 -0
- package/styles/components/ship-spinner.component.scss +53 -0
- package/styles/components/ship-stepper.component.scss +138 -0
- package/styles/components/ship-table.component.scss +402 -0
- package/styles/components/ship-tabs.component.scss +86 -0
- package/styles/components/ship-toggle-card.component.scss +71 -0
- package/styles/components/ship-toggle.component.scss +238 -0
- package/styles/components/ship-tooltip.component.scss +175 -0
- package/styles/components/ship-virtual-scroll.component.scss +12 -0
- package/styles/components/sparkle-checkbox.component.scss +245 -0
- package/styles/components/sparkle-select.component.scss +139 -0
- package/styles/core/apexcharts/apexcharts.scss +58 -0
- package/styles/core/core/layout.scss +74 -0
- package/styles/core/core/loader.scss +63 -0
- package/styles/core/core/palette-variables.scss +352 -0
- package/styles/core/core/typography.scss +103 -0
- package/styles/core/core/variables.scss +188 -0
- package/styles/core/core.scss +4 -0
- package/styles/core/fonts/_inter-tight.scss +11 -0
- package/styles/core/helpers/fn/color-mix.scss +7 -0
- package/styles/core/helpers/fn/dp.scss +14 -0
- package/styles/core/helpers/fn/p2r.scss +23 -0
- package/styles/core/helpers/mixins/border-gradient.scss +61 -0
- package/styles/core/helpers/mixins/breakpoint.scss +217 -0
- package/styles/core/helpers/mixins/ellipsis.scss +7 -0
- package/styles/core/helpers/mixins/overflow-scrolling.scss +18 -0
- package/styles/core/helpers/mixins/wrapper.scss +16 -0
- package/styles/core/polyfill/light-dark.scss +3 -0
- package/styles/helpers.scss +13 -0
- package/styles/index.scss +146 -0
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
$useInterTight: true !default;
|
|
2
|
+
$useApexcharts: true !default;
|
|
3
|
+
|
|
4
|
+
@use './core/fonts/inter-tight' with (
|
|
5
|
+
$useInterTight: $useInterTight
|
|
6
|
+
);
|
|
7
|
+
|
|
8
|
+
@use './core/apexcharts/apexcharts' with (
|
|
9
|
+
$useApexcharts: $useApexcharts
|
|
10
|
+
);
|
|
11
|
+
|
|
12
|
+
@use './core/core';
|
|
13
|
+
|
|
14
|
+
$shipBaseTypes: ('base', 'simple', 'raised', 'outlined', 'flat');
|
|
15
|
+
$shipFormFieldShadow: false !default;
|
|
16
|
+
$shipButtonShadow: false !default;
|
|
17
|
+
$shipChipShadow: false !default;
|
|
18
|
+
|
|
19
|
+
$shipAlert: true !default;
|
|
20
|
+
$shipToggle: true !default;
|
|
21
|
+
$shipButton: true !default;
|
|
22
|
+
$shipProgressBar: true !default;
|
|
23
|
+
$shipCheckbox: true !default;
|
|
24
|
+
$shipDatepicker: true !default;
|
|
25
|
+
$shipIcon: true !default;
|
|
26
|
+
$shipMenu: true !default;
|
|
27
|
+
$shipDivider: true !default;
|
|
28
|
+
$shipDialog: true !default;
|
|
29
|
+
$shipPopover: true !default;
|
|
30
|
+
$shipChip: true !default;
|
|
31
|
+
$shipFormField: true !default;
|
|
32
|
+
$shipColorPicker: true !default;
|
|
33
|
+
$shipSidenav: true !default;
|
|
34
|
+
$shipList: true !default;
|
|
35
|
+
$shipRadio: true !default;
|
|
36
|
+
$shipButtonGroup: true !default;
|
|
37
|
+
$shipRangeSlider: true !default;
|
|
38
|
+
$shTooltip: true !default;
|
|
39
|
+
$shipVirtualScroll: false !default;
|
|
40
|
+
$shipSelect: true !default;
|
|
41
|
+
$shipCard: true !default;
|
|
42
|
+
$shipStepper: true !default;
|
|
43
|
+
$shipSortable: true !default;
|
|
44
|
+
$shipSpinner: true !default;
|
|
45
|
+
$shipToggleCard: true !default;
|
|
46
|
+
$shipTable: true !default;
|
|
47
|
+
$shipTabs: true !default;
|
|
48
|
+
$shipFileUpload: true !default;
|
|
49
|
+
|
|
50
|
+
@use './components/ship-alert-container.component.scss' with (
|
|
51
|
+
$shipAlert: $shipAlert
|
|
52
|
+
);
|
|
53
|
+
@use './components/ship-alert.component.scss' with (
|
|
54
|
+
$shipAlert: $shipAlert
|
|
55
|
+
);
|
|
56
|
+
@use './components/ship-toggle.component.scss' with (
|
|
57
|
+
$shipToggle: $shipToggle
|
|
58
|
+
);
|
|
59
|
+
@use './components/ship-button.component.scss' with (
|
|
60
|
+
$shipButton: $shipButton,
|
|
61
|
+
$shipButtonShadow: $shipButtonShadow
|
|
62
|
+
);
|
|
63
|
+
@use './components/ship-progress-bar.component.scss' with (
|
|
64
|
+
$shipProgressBar: $shipProgressBar
|
|
65
|
+
);
|
|
66
|
+
@use './components/ship-checkbox.component.scss' with (
|
|
67
|
+
$shipCheckbox: $shipCheckbox
|
|
68
|
+
);
|
|
69
|
+
@use './components/ship-datepicker.component.scss' with (
|
|
70
|
+
$shipDatepicker: $shipDatepicker
|
|
71
|
+
);
|
|
72
|
+
@use './components/ship-icon.component.scss' with (
|
|
73
|
+
$shipIcon: $shipIcon
|
|
74
|
+
);
|
|
75
|
+
@use './components/ship-menu.component.scss' with (
|
|
76
|
+
$shipMenu: $shipMenu
|
|
77
|
+
);
|
|
78
|
+
@use './components/ship-divider.component.scss' with (
|
|
79
|
+
$shipDivider: $shipDivider
|
|
80
|
+
);
|
|
81
|
+
@use './components/ship-dialog.component.scss' with (
|
|
82
|
+
$shipDialog: $shipDialog
|
|
83
|
+
);
|
|
84
|
+
@use './components/ship-popover.component.scss' with (
|
|
85
|
+
$shipPopover: $shipPopover
|
|
86
|
+
);
|
|
87
|
+
@use './components/ship-chip.component.scss' with (
|
|
88
|
+
$shipChip: $shipChip,
|
|
89
|
+
$shipChipShadow: $shipChipShadow
|
|
90
|
+
);
|
|
91
|
+
@use './components/ship-form-field.component.scss' with (
|
|
92
|
+
$shipFormField: $shipFormField,
|
|
93
|
+
$shipDatepicker: $shipDatepicker,
|
|
94
|
+
$shipFormFieldShadow: $shipFormFieldShadow
|
|
95
|
+
);
|
|
96
|
+
@use './components/ship-color-picker.component.scss' with (
|
|
97
|
+
$shipColorPicker: $shipColorPicker
|
|
98
|
+
);
|
|
99
|
+
@use './components/ship-sidenav.component.scss' with (
|
|
100
|
+
$shipSidenav: $shipSidenav
|
|
101
|
+
);
|
|
102
|
+
@use './components/ship-list.component.scss' with (
|
|
103
|
+
$shipList: $shipList
|
|
104
|
+
);
|
|
105
|
+
@use './components/ship-radio.component.scss' with (
|
|
106
|
+
$shipRadio: $shipRadio
|
|
107
|
+
);
|
|
108
|
+
@use './components/ship-button-group.component.scss' with (
|
|
109
|
+
$shipButtonGroup: $shipButtonGroup
|
|
110
|
+
);
|
|
111
|
+
@use './components/ship-range-slider.component.scss' with (
|
|
112
|
+
$shipRangeSlider: $shipRangeSlider
|
|
113
|
+
);
|
|
114
|
+
@use './components/ship-tooltip.component.scss' with (
|
|
115
|
+
$shTooltip: $shTooltip
|
|
116
|
+
);
|
|
117
|
+
@use './components/ship-virtual-scroll.component.scss' with (
|
|
118
|
+
$shipVirtualScroll: $shipVirtualScroll
|
|
119
|
+
);
|
|
120
|
+
@use './components/ship-select.component.scss' with (
|
|
121
|
+
$shipSelect: $shipSelect
|
|
122
|
+
);
|
|
123
|
+
@use './components/ship-card.component.scss' with (
|
|
124
|
+
$shipCard: $shipCard
|
|
125
|
+
);
|
|
126
|
+
@use './components/ship-stepper.component.scss' with (
|
|
127
|
+
$shipStepper: $shipStepper
|
|
128
|
+
);
|
|
129
|
+
@use './components/ship-spinner.component.scss' with (
|
|
130
|
+
$shipSpinner: $shipSpinner
|
|
131
|
+
);
|
|
132
|
+
@use './components/ship-sortable.component.scss' with (
|
|
133
|
+
$shipSortable: $shipSortable
|
|
134
|
+
);
|
|
135
|
+
@use './components/ship-toggle-card.component.scss' with (
|
|
136
|
+
$shipToggleCard: $shipToggleCard
|
|
137
|
+
);
|
|
138
|
+
@use './components/ship-table.component.scss' with (
|
|
139
|
+
$shipTable: $shipTable
|
|
140
|
+
);
|
|
141
|
+
@use './components/ship-tabs.component.scss' with (
|
|
142
|
+
$shipTabs: $shipTabs
|
|
143
|
+
);
|
|
144
|
+
@use './components/ship-file-upload.component.scss' with (
|
|
145
|
+
$shipFileUpload: $shipFileUpload
|
|
146
|
+
);
|