@vue-ui-kit/ant 2.2.2 → 2.3.1
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/README.md +1 -1
- package/dist/cjs/index.js +3 -3
- package/dist/declarations/antProxy.d.ts +1 -0
- package/dist/es/index.js +236 -232
- package/dist/packages/utils/config.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/style.scss +55 -28
- package/package.json +1 -1
- package/src/declarations/antProxy.ts +1 -0
- package/src/packages/components/PGrid.vue +4 -0
- package/src/packages/styles/index.scss +55 -23
- package/src/packages/utils/config.ts +3 -0
- package/src/packages/styles/variables.scss +0 -4
|
@@ -189,6 +189,7 @@ export interface SelectConfig<D extends Recordable = Recordable> {
|
|
|
189
189
|
export type PGridProps<D extends Recordable = Recordable, F extends Recordable = Recordable> = {
|
|
190
190
|
selectConfig?: SelectConfig<D>;
|
|
191
191
|
rowKey?: string;
|
|
192
|
+
striped?: boolean;
|
|
192
193
|
manualFetch?: boolean;
|
|
193
194
|
align?: 'left' | 'right' | 'center';
|
|
194
195
|
formConfig?: PFormProps<F>;
|