forstok-ui-lib 8.5.22 → 8.5.23
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.d.ts +1 -1
- package/dist/index.js +180 -180
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +194 -194
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/images/icons/layers.svg +6 -0
- package/src/components/button/styles.ts +13 -0
- package/src/components/icon/styles.ts +2 -0
- package/src/components/icon/typed.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -531,7 +531,7 @@ type TLabel = HTMLAttributes<HTMLSpanElement> & {
|
|
|
531
531
|
};
|
|
532
532
|
declare const LabelComponent: ({ children, $mode, $position, ...props }: TLabel) => react_jsx_runtime.JSX.Element;
|
|
533
533
|
|
|
534
|
-
type IconName = "search" | "check" | "check-grey" | "arrow-left-blue" | "edit" | "arrow" | "discount" | "cash" | "credit" | "debit" | "bank" | "qris" | "wallet" | "delivery" | "success" | "email" | "print" | "warning" | "alert" | "barcode" | "arrow-upload" | "trash" | "arrow-left" | "arrow-left-double" | "arrow-right" | "arrow-right-double" | "arrow-down" | "calendar" | "question" | "sortby" | "NotificationDownload" | "NotificationUpload" | "bar" | "close" | "person" | "person-red" | "cart" | "back" | "time" | "dot" | "dashboard-left-nav" | "dashboard-active-left-nav" | "chat-left-nav" | "chat-active-left-nav" | "ai-left-nav" | "ai-active-left-nav" | "reporting-left-nav" | "reporting-active-left-nav" | "activity-log-left-nav" | "activity-log-active-left-nav" | "integration-left-nav" | "integration-active-left-nav" | "setting-left-nav" | "setting-active-left-nav" | "customer-left-nav" | "customer-active-left-nav" | "marketing-left-nav" | "marketing-active-left-nav" | "product-left-nav" | "product-active-left-nav" | "inventory-left-nav" | "inventory-active-left-nav" | "order-left-nav" | "order-active-left-nav" | "price-left-nav" | "price-active-left-nav" | "invoice-left-nav" | "invoice-active-left-nav" | "warning-chat" | "check-chat" | "check-chat-blue" | "phone" | "location" | "agent" | "report" | "gender" | "birthday" | "attach" | "smile" | "voucher-left-nav" | "voucher-active-left-nav" | "analytic-left-nav" | "analytic-active-left-nav" | "label-left-nav" | "label-active-left-nav" | "questions" | "faq" | "api" | "gift" | "document" | "video" | "image" | "emoji" | "price" | "thumb" | "clipboard" | "reload" | "arrow-down-grey" | "cross" | "link-green" | "info" | "headphone";
|
|
534
|
+
type IconName = "search" | "check" | "check-grey" | "arrow-left-blue" | "edit" | "arrow" | "discount" | "cash" | "credit" | "debit" | "bank" | "qris" | "wallet" | "delivery" | "success" | "email" | "print" | "warning" | "alert" | "barcode" | "arrow-upload" | "trash" | "arrow-left" | "arrow-left-double" | "arrow-right" | "arrow-right-double" | "arrow-down" | "calendar" | "question" | "sortby" | "NotificationDownload" | "NotificationUpload" | "bar" | "close" | "person" | "person-red" | "cart" | "back" | "time" | "dot" | "dashboard-left-nav" | "dashboard-active-left-nav" | "chat-left-nav" | "chat-active-left-nav" | "ai-left-nav" | "ai-active-left-nav" | "reporting-left-nav" | "reporting-active-left-nav" | "activity-log-left-nav" | "activity-log-active-left-nav" | "integration-left-nav" | "integration-active-left-nav" | "setting-left-nav" | "setting-active-left-nav" | "customer-left-nav" | "customer-active-left-nav" | "marketing-left-nav" | "marketing-active-left-nav" | "product-left-nav" | "product-active-left-nav" | "inventory-left-nav" | "inventory-active-left-nav" | "order-left-nav" | "order-active-left-nav" | "price-left-nav" | "price-active-left-nav" | "invoice-left-nav" | "invoice-active-left-nav" | "warning-chat" | "check-chat" | "check-chat-blue" | "phone" | "location" | "agent" | "manage" | "report" | "gender" | "birthday" | "attach" | "smile" | "voucher-left-nav" | "voucher-active-left-nav" | "analytic-left-nav" | "analytic-active-left-nav" | "label-left-nav" | "label-active-left-nav" | "questions" | "faq" | "api" | "gift" | "document" | "video" | "image" | "emoji" | "price" | "thumb" | "clipboard" | "reload" | "arrow-down-grey" | "cross" | "link-green" | "info" | "headphone";
|
|
535
535
|
type IconMode = "filter" | "disabled";
|
|
536
536
|
|
|
537
537
|
type TIcon = HTMLAttributes<HTMLElement> & {
|