@asdp/ferryui 0.1.22-dev.10161 → 0.1.22-dev.10162

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.mts CHANGED
@@ -3132,7 +3132,6 @@ interface CardVehicleOwnerFormLabels {
3132
3132
  cargoListTitle: string;
3133
3133
  cargoItemTitle: string;
3134
3134
  commodityLabel: string;
3135
- commodityHelperTextPrefix: string;
3136
3135
  hereLinkText: string;
3137
3136
  cargoTypeLabel: string;
3138
3137
  cargoTypeHelperText: string;
@@ -3141,7 +3140,6 @@ interface CardVehicleOwnerFormLabels {
3141
3140
  industryTypeLabel: string;
3142
3141
  industryTypeHelperText: string;
3143
3142
  cargoCategoryLabel: string;
3144
- cargoCategoryHelperTextPrefix: string;
3145
3143
  deleteCargoButton: string;
3146
3144
  addCargoButton: string;
3147
3145
  cargoTypeOptions: {
package/dist/index.d.ts CHANGED
@@ -3132,7 +3132,6 @@ interface CardVehicleOwnerFormLabels {
3132
3132
  cargoListTitle: string;
3133
3133
  cargoItemTitle: string;
3134
3134
  commodityLabel: string;
3135
- commodityHelperTextPrefix: string;
3136
3135
  hereLinkText: string;
3137
3136
  cargoTypeLabel: string;
3138
3137
  cargoTypeHelperText: string;
@@ -3141,7 +3140,6 @@ interface CardVehicleOwnerFormLabels {
3141
3140
  industryTypeLabel: string;
3142
3141
  industryTypeHelperText: string;
3143
3142
  cargoCategoryLabel: string;
3144
- cargoCategoryHelperTextPrefix: string;
3145
3143
  deleteCargoButton: string;
3146
3144
  addCargoButton: string;
3147
3145
  cargoTypeOptions: {
package/dist/index.js CHANGED
@@ -12392,7 +12392,6 @@ var DEFAULT_LABELS26 = {
12392
12392
  cargoListTitle: "Daftar Muatan",
12393
12393
  cargoItemTitle: "Muatan {index}",
12394
12394
  commodityLabel: "Data Komoditas",
12395
- commodityHelperTextPrefix: "Pahami definisi, jenis dan contoh komoditas",
12396
12395
  hereLinkText: "disini",
12397
12396
  cargoTypeLabel: "Data Jenis Muatan",
12398
12397
  cargoTypeHelperText: 'Apabila jenis muatan belum tersedia dapat memilih "Lainnya" dan silakan isi jenis muatannya.',
@@ -12401,7 +12400,6 @@ var DEFAULT_LABELS26 = {
12401
12400
  industryTypeLabel: "Data Jenis Industri",
12402
12401
  industryTypeHelperText: 'Apabila jenis industri belum tersedia dapat memilih "Lainnya" dan silakan isi jenis industrinya.',
12403
12402
  cargoCategoryLabel: "Kategori Muatan",
12404
- cargoCategoryHelperTextPrefix: "Pahami definisi, jenis dan contoh kategori muatan",
12405
12403
  deleteCargoButton: "Hapus Muatan",
12406
12404
  addCargoButton: "Tambah Muatan",
12407
12405
  cargoTypeOptions: {
@@ -12444,7 +12442,6 @@ var DEFAULT_LABELS26 = {
12444
12442
  cargoListTitle: "Cargo List",
12445
12443
  cargoItemTitle: "Cargo {index}",
12446
12444
  commodityLabel: "Commodity Data",
12447
- commodityHelperTextPrefix: "Understand definition, types and examples of commodities",
12448
12445
  hereLinkText: "here",
12449
12446
  cargoTypeLabel: "Cargo Type Data",
12450
12447
  cargoTypeHelperText: 'If the cargo type is not available, select "Other" and enter the cargo type.',
@@ -12453,7 +12450,6 @@ var DEFAULT_LABELS26 = {
12453
12450
  industryTypeLabel: "Industry Type Data",
12454
12451
  industryTypeHelperText: 'If the industry type is not available, select "Other" and enter the industry type.',
12455
12452
  cargoCategoryLabel: "Cargo Category",
12456
- cargoCategoryHelperTextPrefix: "Understand definition, types and examples of cargo categories",
12457
12453
  deleteCargoButton: "Delete Cargo",
12458
12454
  addCargoButton: "Add Cargo",
12459
12455
  cargoTypeOptions: {
@@ -13106,20 +13102,6 @@ var CardVehicleOwnerForm = ({
13106
13102
  type: "select",
13107
13103
  size: "large"
13108
13104
  }
13109
- ),
13110
- /* @__PURE__ */ jsxRuntime.jsxs(
13111
- reactComponents.Caption1,
13112
- {
13113
- style: {
13114
- color: reactComponents.tokens.colorNeutralForeground3,
13115
- marginTop: "0.25rem"
13116
- },
13117
- children: [
13118
- mergedLabels.commodityHelperTextPrefix,
13119
- " ",
13120
- /* @__PURE__ */ jsxRuntime.jsx("a", { href: "#", className: styles.link, children: mergedLabels.hereLinkText })
13121
- ]
13122
- }
13123
13105
  )
13124
13106
  ] }),
13125
13107
  /* @__PURE__ */ jsxRuntime.jsxs(reactGridSystem.Col, { md: 3, children: [
@@ -13297,9 +13279,14 @@ var CardVehicleOwnerForm = ({
13297
13279
  fontFamily: reactComponents.tokens.fontFamilyBase
13298
13280
  },
13299
13281
  onKeyDown: (e) => {
13300
- if (["e", "E", "+", "-", ".", ","].includes(
13301
- e.key
13302
- )) {
13282
+ if ([
13283
+ "e",
13284
+ "E",
13285
+ "+",
13286
+ "-",
13287
+ ".",
13288
+ ","
13289
+ ].includes(e.key)) {
13303
13290
  e.preventDefault();
13304
13291
  }
13305
13292
  },
@@ -13502,20 +13489,6 @@ var CardVehicleOwnerForm = ({
13502
13489
  size: "large",
13503
13490
  type: "select"
13504
13491
  }
13505
- ),
13506
- /* @__PURE__ */ jsxRuntime.jsxs(
13507
- reactComponents.Caption1,
13508
- {
13509
- style: {
13510
- color: reactComponents.tokens.colorNeutralForeground3,
13511
- marginTop: "0.25rem"
13512
- },
13513
- children: [
13514
- mergedLabels.cargoCategoryHelperTextPrefix,
13515
- " ",
13516
- /* @__PURE__ */ jsxRuntime.jsx("a", { href: "#", className: styles.link, children: mergedLabels.hereLinkText })
13517
- ]
13518
- }
13519
13492
  )
13520
13493
  ] })
13521
13494
  ] }),