@indigina/ui-kit 1.1.65 → 1.1.67
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/assets/icons/bookings-draft.svg +3 -0
- package/assets/icons/containers-to-deliver.svg +3 -0
- package/assets/icons/deliveries-require-amendments.svg +3 -0
- package/assets/icons/deliveries-require-cancellation.svg +3 -0
- package/assets/icons/deliveries-require-confirmation.svg +3 -0
- package/assets/icons/deliveries-require-pod-customs.svg +3 -0
- package/assets/icons/deliveries-to-book.svg +3 -0
- package/assets/icons/deliveries-to-reschedule.svg +3 -0
- package/assets/icons/design.svg +5 -0
- package/assets/icons/sales-channels.svg +14 -0
- package/assets/icons/shipments-cancellation-requests.svg +3 -0
- package/assets/icons/shipments-draft.svg +3 -0
- package/assets/icons/shipments-for-re-auth.svg +3 -0
- package/assets/icons/shipments-in-transit.svg +3 -0
- package/assets/icons/shipments-pending-documents.svg +3 -0
- package/assets/icons/shipments-pending-instructions.svg +3 -0
- package/assets/icons/shipments-ready-to-ship.svg +3 -0
- package/assets/icons/shipments-to-approve.svg +3 -0
- package/esm2022/lib/components/kit-breadcrumbs/kit-breadcrumbs.component.mjs +2 -2
- package/esm2022/lib/components/kit-card/kit-card.component.mjs +3 -3
- package/esm2022/lib/components/kit-svg-icon/kit-svg-icon.const.mjs +19 -1
- package/esm2022/lib/components/kit-svg-sprite/kit-svg-sprite.component.mjs +3 -3
- package/fesm2022/indigina-ui-kit.mjs +24 -6
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +19 -1
- package/package.json +1 -1
|
@@ -98,7 +98,25 @@ export declare enum KitSvgIcon {
|
|
|
98
98
|
FOUR_SQUARE = "four-square",
|
|
99
99
|
APP_ARROW_CIRCLE = "app-arrow-circle",
|
|
100
100
|
LOGISTICS = "logistics",
|
|
101
|
-
PRINTING = "printing"
|
|
101
|
+
PRINTING = "printing",
|
|
102
|
+
SALES_CHANNELS = "sales-channels",
|
|
103
|
+
DESIGN = "design",
|
|
104
|
+
SHIPMENTS_TO_APPROVE = "shipments-to-approve",
|
|
105
|
+
SHIPMENTS_IN_TRANSIT = "shipments-in-transit",
|
|
106
|
+
CONTAINERS_TO_DELIVER = "containers-to-deliver",
|
|
107
|
+
SHIPMENTS_DRAFT = "shipments-draft",
|
|
108
|
+
SHIPMENTS_CANCELLATION_REQUESTS = "shipments-cancellation-requests",
|
|
109
|
+
SHIPMENTS_FOR_RE_AUTH = "shipments-for-re-auth",
|
|
110
|
+
SHIPMENTS_READY_TO_SHIP = "shipments-ready-to-ship",
|
|
111
|
+
BOOKINGS_DRAFT = "bookings-draft",
|
|
112
|
+
SHIPMENTS_PENDING_INSTRUCTIONS = "shipments-pending-instructions",
|
|
113
|
+
SHIPMENTS_PENDING_DOCUMENTS = "shipments-pending-documents",
|
|
114
|
+
DELIVERIES_TO_BOOK = "deliveries-to-book",
|
|
115
|
+
DELIVERIES_REQUIRE_CONFIRMATION = "deliveries-require-confirmation",
|
|
116
|
+
DELIVERIES_TO_RESCHEDULE = "deliveries-to-reschedule",
|
|
117
|
+
DELIVERIES_REQUIRE_AMENDMENTS = "deliveries-require-amendments",
|
|
118
|
+
DELIVERIES_REQUIRE_CANCELLATION = "deliveries-require-cancellation",
|
|
119
|
+
DELIVERIES_REQUIRE_POD_CUSTOMS = "deliveries-require-pod-customs"
|
|
102
120
|
}
|
|
103
121
|
export declare enum KitSvgIconType {
|
|
104
122
|
FILL = "fill",
|