@designbasekorea/figma-ui 0.1.7 → 0.1.8

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.js CHANGED
@@ -6,7 +6,7 @@ var ui = require('@designbasekorea/ui');
6
6
 
7
7
  function r(e){var t,f,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=" "),n+=f);}else for(f in e)e[f]&&(n&&(n+=" "),n+=f);return n}function clsx(){for(var e,t,f=0,n="",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=" "),n+=t);return n}
8
8
 
9
- const DonationBadge$1 = ({ donationUrl = 'https://buymeacoffee.com/designbase', text = 'Buy me a coffee', iconType = 'heart', size = 'm', className, onClick, }) => {
9
+ const DonationBadge = ({ donationUrl = 'https://buymeacoffee.com/designbase', text = 'Buy me a coffee', iconType = 'heart', size = 'm', className, onClick, }) => {
10
10
  const handleClick = () => {
11
11
  if (onClick) {
12
12
  onClick();
@@ -21,11 +21,9 @@ const DonationBadge$1 = ({ donationUrl = 'https://buymeacoffee.com/designbase',
21
21
  React.createElement(Icon, { className: "designbase-figma-donation-badge__icon" }),
22
22
  React.createElement("span", { className: "designbase-figma-donation-badge__text" }, text)));
23
23
  };
24
- DonationBadge$1.displayName = 'DonationBadge';
24
+ DonationBadge.displayName = 'DonationBadge';
25
25
 
26
- DonationBadge;
27
-
28
- const LogoDropdown$1 = ({ logoSrc, logoAlt = 'DesignBase', logoType = 'designbase', logoSize = 'xs', links, position = 'top-left', className, t = (key) => key, }) => {
26
+ const LogoDropdown = ({ logoSrc, logoAlt = 'DesignBase', logoType = 'designbase', logoSize = 'xs', links, position = 'top-left', className, t = (key) => key, }) => {
29
27
  const [isOpen, setIsOpen] = React.useState(false);
30
28
  const toggleDropdown = () => setIsOpen(!isOpen);
31
29
  const handleLinkClick = (url) => {
@@ -52,9 +50,9 @@ const LogoDropdown$1 = ({ logoSrc, logoAlt = 'DesignBase', logoType = 'designbas
52
50
  React.createElement("span", { className: "designbase-figma-logo-dropdown__text" }, t(link.name)),
53
51
  React.createElement(icons.ExternalLinkIcon, { size: 16, className: "designbase-figma-logo-dropdown__arrow" })))))))));
54
52
  };
55
- LogoDropdown$1.displayName = 'LogoDropdown';
53
+ LogoDropdown.displayName = 'LogoDropdown';
56
54
 
57
- const PaymentBadge$1 = ({ isActive, onClick, isLoading = false, text, t = (key) => key, className, }) => {
55
+ const PaymentBadge = ({ isActive, onClick, isLoading = false, text, t = (key) => key, className, }) => {
58
56
  const getBadgeText = () => {
59
57
  if (text)
60
58
  return text;
@@ -67,13 +65,13 @@ const PaymentBadge$1 = ({ isActive, onClick, isLoading = false, text, t = (key)
67
65
  };
68
66
  return (React.createElement("div", { className: `designbase-figma-payment-badge ${className || ''} ${isActive ? 'active' : 'free'}`, onClick: onClick, style: { cursor: onClick ? 'pointer' : 'default' } }, isLoading ? (React.createElement(ui.Spinner, { size: "s" })) : (React.createElement(ui.Badge, { variant: getBadgeVariant(), size: "s", className: "designbase-figma-payment-badge__badge" }, getBadgeText()))));
69
67
  };
70
- PaymentBadge$1.displayName = 'PaymentBadge';
68
+ PaymentBadge.displayName = 'PaymentBadge';
71
69
 
72
70
  const DEFAULT_LANGUAGES = [
73
71
  { code: 'ko', label: 'KO' },
74
72
  { code: 'en', label: 'EN' },
75
73
  ];
76
- const LanguageSelector$1 = ({ currentLanguage = 'ko', languages = DEFAULT_LANGUAGES, onLanguageChange, size = 's', className, }) => {
74
+ const LanguageSelector = ({ currentLanguage = 'ko', languages = DEFAULT_LANGUAGES, onLanguageChange, size = 's', className, }) => {
77
75
  const handleLanguageChange = (languageCode) => {
78
76
  if (onLanguageChange) {
79
77
  onLanguageChange(languageCode);
@@ -84,9 +82,9 @@ const LanguageSelector$1 = ({ currentLanguage = 'ko', languages = DEFAULT_LANGUA
84
82
  'designbase-figma-language-selector__button--active': currentLanguage === language.code,
85
83
  }), onClick: () => handleLanguageChange(language.code), "aria-label": `${language.label} 언어 선택`, "aria-pressed": currentLanguage === language.code }, language.label)))));
86
84
  };
87
- LanguageSelector$1.displayName = 'LanguageSelector';
85
+ LanguageSelector.displayName = 'LanguageSelector';
88
86
 
89
- const Footer$1 = ({ logoSrc, logoAlt = 'DesignBase', logoType = 'designbase', logoSize = 'xs', logoLinks = [], onLicensePageClick, paymentStatus = 'FREE', usageCount = 0, isLoading = false, showPaymentStatus = true, maxDailyUsage = 20, showDonation = false, donationUrl = 'https://buymeacoffee.com/designbase', donationText = 'Buy me a coffee', showLanguageSelector = false, currentLanguage = 'ko', languages, onLanguageChange, className, t = (key) => key, children, }) => {
87
+ const Footer = ({ logoSrc, logoAlt = 'DesignBase', logoType = 'designbase', logoSize = 'xs', logoLinks = [], onLicensePageClick, paymentStatus = 'FREE', usageCount = 0, isLoading = false, showPaymentStatus = true, maxDailyUsage = 20, showDonation = false, donationUrl = 'https://buymeacoffee.com/designbase', donationText = 'Buy me a coffee', showLanguageSelector = false, currentLanguage = 'ko', languages, onLanguageChange, className, t = (key) => key, children, }) => {
90
88
  const isActive = paymentStatus === 'PAID';
91
89
  const hasChildren = React.Children.count(children) > 0;
92
90
  const classes = clsx('designbase-figma-footer', {
@@ -95,8 +93,8 @@ const Footer$1 = ({ logoSrc, logoAlt = 'DesignBase', logoType = 'designbase', lo
95
93
  return (React.createElement("footer", { className: classes },
96
94
  React.createElement("div", { className: "designbase-figma-footer__wrap" },
97
95
  React.createElement("div", { className: "designbase-figma-footer__left" },
98
- React.createElement(LogoDropdown$1, { logoSrc: logoSrc, logoAlt: logoAlt, logoType: logoType, logoSize: logoSize, links: logoLinks, position: "top-left", t: t }),
99
- showLanguageSelector && (React.createElement(LanguageSelector$1, { currentLanguage: currentLanguage, languages: languages, onLanguageChange: onLanguageChange, size: "s" }))),
96
+ React.createElement(LogoDropdown, { logoSrc: logoSrc, logoAlt: logoAlt, logoType: logoType, logoSize: logoSize, links: logoLinks, position: "top-left", t: t }),
97
+ showLanguageSelector && (React.createElement(LanguageSelector, { currentLanguage: currentLanguage, languages: languages, onLanguageChange: onLanguageChange, size: "s" }))),
100
98
  showPaymentStatus && (React.createElement("div", { className: "designbase-figma-footer__payment-states" },
101
99
  !isLoading && (React.createElement("div", { className: "designbase-figma-footer__usage-info" }, isActive ? (React.createElement("span", { className: "designbase-figma-footer__unlimited-usage" }, t('unlimitedUsage'))) : (React.createElement(React.Fragment, null,
102
100
  React.createElement("span", { className: "designbase-figma-footer__usage-count" }, usageCount),
@@ -106,16 +104,14 @@ const Footer$1 = ({ logoSrc, logoAlt = 'DesignBase', logoType = 'designbase', lo
106
104
  " ",
107
105
  t('perDay')),
108
106
  React.createElement("span", { className: "designbase-figma-footer__reset-info" }, t('resetsDaily')))))),
109
- React.createElement(PaymentBadge$1, { isActive: isActive, onClick: onLicensePageClick, isLoading: isLoading, t: t }))),
107
+ React.createElement(PaymentBadge, { isActive: isActive, onClick: onLicensePageClick, isLoading: isLoading, t: t }))),
110
108
  showDonation && (React.createElement("div", { className: "designbase-figma-footer__donation" },
111
- React.createElement(DonationBadge$1, { donationUrl: donationUrl, text: donationText, iconType: "heart", size: "s" })))),
109
+ React.createElement(DonationBadge, { donationUrl: donationUrl, text: donationText, iconType: "heart", size: "s" })))),
112
110
  children));
113
111
  };
114
- Footer$1.displayName = 'Footer';
115
-
116
- Footer;
112
+ Footer.displayName = 'Footer';
117
113
 
118
- const FormWithSubmit$1 = ({ onLicenseSubmit, disabled = false, isSubmitting = false, value = '', onValueChange, label = 'License Key', placeholder = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', submitText = 'Submit', submittingText = 'Verifying...', className, }) => {
114
+ const FormWithSubmit = ({ onLicenseSubmit, disabled = false, isSubmitting = false, value = '', onValueChange, label = 'License Key', placeholder = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', submitText = 'Submit', submittingText = 'Verifying...', className, }) => {
119
115
  const [inputValue, setInputValue] = React.useState(value);
120
116
  React.useEffect(() => {
121
117
  setInputValue(value);
@@ -135,11 +131,9 @@ const FormWithSubmit$1 = ({ onLicenseSubmit, disabled = false, isSubmitting = fa
135
131
  React.createElement(ui.Input, { value: inputValue, onChange: handleChange, placeholder: placeholder, disabled: disabled || isSubmitting, size: "m" })),
136
132
  React.createElement(ui.Button, { type: "submit", variant: "primary", size: "m", loading: isSubmitting, disabled: !inputValue.trim() || isSubmitting || disabled, fullWidth: true }, isSubmitting ? submittingText : submitText)));
137
133
  };
138
- FormWithSubmit$1.displayName = 'FormWithSubmit';
134
+ FormWithSubmit.displayName = 'FormWithSubmit';
139
135
 
140
- FormWithSubmit;
141
-
142
- const InteractionFeedback$1 = ({ status = 'default', message, statusMessage, leftContent, rightContent, visible = true, className, fixed = true, }) => {
136
+ const InteractionFeedback = ({ status = 'default', message, statusMessage, leftContent, rightContent, visible = true, className, fixed = true, }) => {
143
137
  const wrapperClasses = clsx('designbase-figma-interaction-wrapper', {
144
138
  'designbase-figma-interaction-wrapper--fixed': fixed,
145
139
  });
@@ -156,15 +150,9 @@ const InteractionFeedback$1 = ({ status = 'default', message, statusMessage, lef
156
150
  statusMessage && (React.createElement("span", { className: "designbase-figma-interaction__status-text" }, statusMessage))))),
157
151
  rightContent && (React.createElement("div", { className: "designbase-figma-interaction__right" }, rightContent))))));
158
152
  };
159
- InteractionFeedback$1.displayName = 'InteractionFeedback';
160
-
161
- InteractionFeedback;
153
+ InteractionFeedback.displayName = 'InteractionFeedback';
162
154
 
163
- LanguageSelector;
164
-
165
- LogoDropdown;
166
-
167
- const PaymentStatusSection$1 = ({ status, usageCount, activationLimit, activationUsage, licenseKey, onDeactivate, isDeactivating = false, showDetails = false, className, }) => {
155
+ const PaymentStatusSection = ({ status, usageCount, activationLimit, activationUsage, licenseKey, onDeactivate, isDeactivating = false, showDetails = false, className, }) => {
168
156
  const remainingActivations = activationLimit - activationUsage;
169
157
  return (React.createElement("div", { className: `designbase-figma-payment-status ${className || ''}` },
170
158
  React.createElement("div", { className: "designbase-figma-payment-status__license-key" },
@@ -183,7 +171,7 @@ const PaymentStatusSection$1 = ({ status, usageCount, activationLimit, activatio
183
171
  activationLimit)),
184
172
  React.createElement(ui.Button, { onClick: onDeactivate, variant: "tertiary", size: "s", disabled: isDeactivating }, isDeactivating ? '비활성화중...' : '라이선스 비활성화')))));
185
173
  };
186
- PaymentStatusSection$1.displayName = 'PaymentStatusSection';
174
+ PaymentStatusSection.displayName = 'PaymentStatusSection';
187
175
 
188
176
  const defaultFeatures = [
189
177
  { name: '사용 제한', free: '일일 제한', pro: '무제한' },
@@ -196,7 +184,7 @@ const defaultPricing = {
196
184
  monthly: 2,
197
185
  yearly: 21.6,
198
186
  };
199
- const PricingComparison$1 = ({ features = defaultFeatures, pricing = defaultPricing, t = (key) => key, className, }) => {
187
+ const PricingComparison = ({ features = defaultFeatures, pricing = defaultPricing, t = (key) => key, className, }) => {
200
188
  const [isYearly, setIsYearly] = React.useState(false);
201
189
  const getPrice = () => {
202
190
  const price = isYearly ? pricing.yearly : pricing.monthly;
@@ -245,9 +233,9 @@ const PricingComparison$1 = ({ features = defaultFeatures, pricing = defaultPric
245
233
  ? (feature.pro ? '✓' : '✗')
246
234
  : feature.pro))))))));
247
235
  };
248
- PricingComparison$1.displayName = 'PricingComparison';
236
+ PricingComparison.displayName = 'PricingComparison';
249
237
 
250
- const PageLicense$1 = ({ status: initialStatus, onClose, usageCount: initialUsageCount = 0, onLicenseSubmit, licenseKey: initialLicenseKey = '', setPaymentStatus, setUsageCount, setShowLicensePage, paymentPageUrl, t = (key) => key, className, }) => {
238
+ const PageLicense = ({ status: initialStatus, onClose, usageCount: initialUsageCount = 0, onLicenseSubmit, licenseKey: initialLicenseKey = '', setPaymentStatus, setUsageCount, setShowLicensePage, paymentPageUrl, t = (key) => key, className, }) => {
251
239
  const [isSubmitting, setIsSubmitting] = React.useState(false);
252
240
  const [isDeactivating, setIsDeactivating] = React.useState(false);
253
241
  const [licenseKey, setLicenseKey] = React.useState(initialLicenseKey);
@@ -333,37 +321,29 @@ const PageLicense$1 = ({ status: initialStatus, onClose, usageCount: initialUsag
333
321
  React.createElement("p", { className: "designbase-figma-page-license__description" }, isPaid
334
322
  ? t('allFeaturesAvailable') || '모든 기능을 사용할 수 있습니다.'
335
323
  : t('purchaseForUnlimited') || '라이선스 구매 후 무제한 접근이 가능합니다.')),
336
- React.createElement(PricingComparison$1, { t: t }),
324
+ React.createElement(PricingComparison, { t: t }),
337
325
  isPaid && (React.createElement("div", { className: "designbase-figma-page-license__section" },
338
326
  React.createElement("div", { className: "designbase-figma-page-license__section-header" },
339
327
  React.createElement("h3", null, t('licenseActivated') || '라이선스 활성화됨'),
340
328
  React.createElement(ui.Button, { onClick: () => setShowDetails(!showDetails), variant: "tertiary", size: "s", iconOnly: true },
341
329
  React.createElement(icons.MoreHorizontalIcon, { size: 16 }))),
342
- React.createElement(PaymentStatusSection$1, { status: status, usageCount: usageCount, activationLimit: activationLimit, activationUsage: activationUsage, licenseKey: licenseKey, onDeactivate: handleDeactivateLicense, isDeactivating: isDeactivating, showDetails: showDetails }))),
330
+ React.createElement(PaymentStatusSection, { status: status, usageCount: usageCount, activationLimit: activationLimit, activationUsage: activationUsage, licenseKey: licenseKey, onDeactivate: handleDeactivateLicense, isDeactivating: isDeactivating, showDetails: showDetails }))),
343
331
  React.createElement("div", { className: "designbase-figma-page-license__section" },
344
332
  React.createElement("div", { className: "designbase-figma-page-license__section-header" },
345
333
  React.createElement("h3", null, t('enterLicenseKey') || '라이선스 키 입력'),
346
334
  !isPaid && paymentPageUrl && (React.createElement(ui.Button, { onClick: () => window.open(paymentPageUrl, '_blank'), variant: "primary", size: "s" },
347
335
  React.createElement("span", null, t('purchaseLicense') || '라이선스 구매'),
348
336
  React.createElement(icons.ExternalLinkIcon, { size: 16 })))),
349
- React.createElement(FormWithSubmit$1, { onLicenseSubmit: handleLicenseSubmit, disabled: false, isSubmitting: isSubmitting, value: licenseKey, onValueChange: setLicenseKey, label: t('licenseKey') || 'License Key', submitText: t('submit') || 'Submit', submittingText: t('verifying') || 'Verifying...' }),
337
+ React.createElement(FormWithSubmit, { onLicenseSubmit: handleLicenseSubmit, disabled: false, isSubmitting: isSubmitting, value: licenseKey, onValueChange: setLicenseKey, label: t('licenseKey') || 'License Key', submitText: t('submit') || 'Submit', submittingText: t('verifying') || 'Verifying...' }),
350
338
  React.createElement("p", { className: "designbase-figma-page-license__disclaimer" }, isPaid
351
339
  ? t('licenseActivatedSuccess') || '라이선스가 성공적으로 활성화되었습니다.'
352
340
  : t('enterLicenseFromEmail') || '구독 후 이메일로 받은 라이선스 키를 입력하세요.'))),
353
341
  React.createElement(ui.Button, { className: "designbase-figma-page-license__close", onPress: onClose, variant: "tertiary", size: "s", "aria-label": "Close" },
354
342
  React.createElement(icons.CloseIcon, { size: 20 }))));
355
343
  };
356
- PageLicense$1.displayName = 'PageLicense';
357
-
358
- PageLicense;
344
+ PageLicense.displayName = 'PageLicense';
359
345
 
360
- PaymentBadge;
361
-
362
- PaymentStatusSection;
363
-
364
- PricingComparison;
365
-
366
- const ProgressModal$1 = ({ isOpen, onClose, progress, title = '작업 중', completedMessage = '완료되었습니다', processingMessage = '처리 중...', stopButtonText = '중지', confirmButtonText = '확인', helpText, onStop, onComplete, loadingIcon, completeIcon, className, }) => {
346
+ const ProgressModal = ({ isOpen, onClose, progress, title = '작업 중', completedMessage = '완료되었습니다', processingMessage = '처리 중...', stopButtonText = '중지', confirmButtonText = '확인', helpText, onStop, onComplete, loadingIcon, completeIcon, className, }) => {
367
347
  const [isCompleted, setIsCompleted] = React.useState(false);
368
348
  const { processedNodes, totalNodes } = progress;
369
349
  const progressPercentage = totalNodes > 0 ? (processedNodes / totalNodes) * 100 : 0;
@@ -395,11 +375,9 @@ const ProgressModal$1 = ({ isOpen, onClose, progress, title = '작업 중', comp
395
375
  helpText && !isCompleted && (React.createElement("p", { className: "designbase-figma-progress-modal__help-text" }, helpText)),
396
376
  React.createElement("div", { className: "designbase-figma-progress-modal__actions" }, isCompleted ? (React.createElement(ui.Button, { onPress: onClose, variant: "primary", size: "m", fullWidth: true }, confirmButtonText)) : (React.createElement(ui.Button, { onPress: handleStop, variant: "secondary", size: "m", fullWidth: true }, stopButtonText))))));
397
377
  };
398
- ProgressModal$1.displayName = 'ProgressModal';
399
-
400
- ProgressModal;
378
+ ProgressModal.displayName = 'ProgressModal';
401
379
 
402
- const ResizablePlugin$1 = ({ children, minWidth = 360, maxWidth = 460, minHeight = 440, maxHeight = 700, icon, className, }) => {
380
+ const ResizablePlugin = ({ children, minWidth = 360, maxWidth = 460, minHeight = 440, maxHeight = 700, icon, className, }) => {
403
381
  const [isResizing, setIsResizing] = React.useState(false);
404
382
  const resizeHandleRef = React.useRef(null);
405
383
  React.useEffect(() => {
@@ -437,11 +415,9 @@ const ResizablePlugin$1 = ({ children, minWidth = 360, maxWidth = 460, minHeight
437
415
  setIsResizing(true);
438
416
  }, role: "button", tabIndex: 0, "aria-label": "Resize plugin" }, icon || React.createElement(icons.ExpandIcon, { size: 12 }))));
439
417
  };
440
- ResizablePlugin$1.displayName = 'ResizablePlugin';
418
+ ResizablePlugin.displayName = 'ResizablePlugin';
441
419
 
442
- ResizablePlugin;
443
-
444
- const SettingsModal$1 = ({ isOpen, onClose, categories: initialCategories, categoryGroups, onSave, onReset, title = '목록 변경', description = '드래그하여 순서를 변경하거나, 토글하여 카테고리를 숨길 수 있습니다.', className, }) => {
420
+ const SettingsModal = ({ isOpen, onClose, categories: initialCategories, categoryGroups, onSave, onReset, title = '목록 변경', description = '드래그하여 순서를 변경하거나, 토글하여 카테고리를 숨길 수 있습니다.', className, }) => {
445
421
  const [tempCategories, setTempCategories] = React.useState(initialCategories);
446
422
  const [draggedIndex, setDraggedIndex] = React.useState(null);
447
423
  React.useEffect(() => {
@@ -553,11 +529,9 @@ const SettingsModal$1 = ({ isOpen, onClose, categories: initialCategories, categ
553
529
  React.createElement(ui.Button, { onPress: handleCancel, variant: "tertiary", size: "s" }, "\uCDE8\uC18C"),
554
530
  React.createElement(ui.Button, { onPress: handleSave, variant: "primary", size: "s" }, "\uC800\uC7A5")))));
555
531
  };
556
- SettingsModal$1.displayName = 'SettingsModal';
557
-
558
- SettingsModal;
532
+ SettingsModal.displayName = 'SettingsModal';
559
533
 
560
- const UpgradeBanner$1 = ({ onClick, isLoading = false, title, description, buttonText, t = (key) => key, className, }) => {
534
+ const UpgradeBanner = ({ onClick, isLoading = false, title, description, buttonText, t = (key) => key, className, }) => {
561
535
  return (React.createElement("div", { className: `designbase-figma-upgrade-banner ${className || ''}` },
562
536
  React.createElement("div", { className: "designbase-figma-upgrade-banner__content" },
563
537
  React.createElement("div", { className: "designbase-figma-upgrade-banner__text-wrap" },
@@ -565,24 +539,22 @@ const UpgradeBanner$1 = ({ onClick, isLoading = false, title, description, butto
565
539
  React.createElement("p", { className: "designbase-figma-upgrade-banner__text" }, description || t('bannerText') || '무제한 기능을 사용하고 더 많은 혜택을 누리세요.')),
566
540
  React.createElement(ui.Button, { onClick: onClick, variant: "primary", size: "m", disabled: isLoading }, buttonText || t('upgradeNow') || '지금 업그레이드'))));
567
541
  };
568
- UpgradeBanner$1.displayName = 'UpgradeBanner';
569
-
570
- UpgradeBanner;
542
+ UpgradeBanner.displayName = 'UpgradeBanner';
571
543
 
572
- exports.DonationBadge = DonationBadge$1;
573
- exports.Footer = Footer$1;
574
- exports.FormWithSubmit = FormWithSubmit$1;
575
- exports.InteractionFeedback = InteractionFeedback$1;
576
- exports.LanguageSelector = LanguageSelector$1;
577
- exports.LogoDropdown = LogoDropdown$1;
578
- exports.PageLicense = PageLicense$1;
579
- exports.PaymentBadge = PaymentBadge$1;
580
- exports.PaymentStatusSection = PaymentStatusSection$1;
581
- exports.PricingComparison = PricingComparison$1;
582
- exports.ProgressModal = ProgressModal$1;
583
- exports.ResizablePlugin = ResizablePlugin$1;
584
- exports.SettingsModal = SettingsModal$1;
585
- exports.UpgradeBanner = UpgradeBanner$1;
544
+ exports.DonationBadge = DonationBadge;
545
+ exports.Footer = Footer;
546
+ exports.FormWithSubmit = FormWithSubmit;
547
+ exports.InteractionFeedback = InteractionFeedback;
548
+ exports.LanguageSelector = LanguageSelector;
549
+ exports.LogoDropdown = LogoDropdown;
550
+ exports.PageLicense = PageLicense;
551
+ exports.PaymentBadge = PaymentBadge;
552
+ exports.PaymentStatusSection = PaymentStatusSection;
553
+ exports.PricingComparison = PricingComparison;
554
+ exports.ProgressModal = ProgressModal;
555
+ exports.ResizablePlugin = ResizablePlugin;
556
+ exports.SettingsModal = SettingsModal;
557
+ exports.UpgradeBanner = UpgradeBanner;
586
558
  Object.keys(ui).forEach(function (k) {
587
559
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
588
560
  enumerable: true,