@selectwin/kit 0.1.64 → 0.1.66

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.
@@ -7,6 +7,13 @@ export interface SelectPreviewFrameProps {
7
7
  /** Preenche a altura do pai em vez de medir `height` — para o palco de um
8
8
  * `SelectBuilderWorkspace`, onde a coluna já tem altura e o palco é quem sobra. */
9
9
  fill?: boolean;
10
+ /**
11
+ * Recarregar é do PAI. Sem isto o frame só troca o próprio cache-buster, o que basta para
12
+ * um `src` estável — mas não para um `src` que EXPIRA (um link assinado de minutos):
13
+ * recarregar com o mesmo link só repete o 403. Com `onReload`, o frame não mexe no
14
+ * cache-buster: quem recarrega é o `src` novo que o pai devolve.
15
+ */
16
+ onReload?: () => void;
10
17
  initialDevice?: Device;
11
18
  showDeviceToggle?: boolean;
12
19
  emptyLabel?: string;